当前位置:   article > 正文

geoserver连接mysql踩坑记录_error decoding wkb

error decoding wkb

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配置不起作用,哪位大神有让时区持久化方法的方法?

  1. Caused by: java.sql.SQLException:
  2. The server time zone value '?й???????' is unrecognized or represents more than one time zone.
  3. 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))

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/329927
推荐阅读
相关标签
  

闽ICP备14008679号