赞
踩
1、geoserver默认不带mysql插件,需要在官网http://geoserver.org/release/stable/下载插件,并放入到
E:\apache-tomcat-9.0.31\webapps\geoserver\WEB-INF\lib文件夹中,由于本人下载的是war包发布在tomcat中。
2、跨域问题: geoserver\WEB-INF\web.xml 中根据自己的服务器类型tomcat还是netty 去掉 cross-origin 注释即可。
3、mysql时区问题:mysql里面设置 set global time_zone = '+8:00'; 但是mysql服务重启将失效,在my.ini配置不起作用,哪位大神有让时区持久化方法的方法?
- Caused by: java.sql.SQLException:
- The server time zone value '?й???????' is unrecognized or represents more than one time zone.
- You must configure either the server or JDBC driver (via the 'serverTimezone' configuration property) to use a more specifc time zone value if you want to utilize time zone support.
4、使用mysql8总是报这个错误,后改为mysql5一次通过!!!
Caused by: java.sql.SQLSyntaxErrorException: FUNCTION test11.asWKB does not exist
5、
mysql5版本不会检查经纬度范围,经度在前、纬度在后
insert into pointssss(name,geom) VALUE('1',ST_GeomFromText('Point(116.525646 39.990011)',4326))
mysql8版本会检查经纬度范围,纬度在前,经度在后
insert into pointssss(name,geom) VALUE('1',ST_GeomFromText('Point(39.990011 116.525646)',4326))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。