原创博主的地址:http://blog.youkuaiyun.com/oppo5630/article/details/52162783
解决org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘druidDatasource’ defined in class path resource [config/spring-mybatis.xml]: Invocation of init method failed; nested exception is 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.
1.报错截图
使用的数据库是MySQL,驱动是6.0.5,这是由于数据库和系统时区差异所造成的,在jdbc连接的url后面加上serverTimezone=GMT即可解决问题,如果需要使用gmt+8时区,需要写成GMT%2B8,否则会被解析为空。再一个解决办法就是使用低版本的MySQL jdbc驱动,5.1.40不会存在时区的问题。
解决MySQL时区配置问题
本文解决了在使用MySQL 6.0.5驱动时遇到的因数据库与系统时区不一致导致的错误。通过在JDBC连接URL中指定时区为GMT或GMT+8,或者回退到5.1.40版本的驱动来规避该问题。
275

被折叠的 条评论
为什么被折叠?



