赞
踩
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.
经过百度一下才知道是时区错误。原因是因为MySql服务采用的是国际标准时间,与内地相差8个小时,所以需要在连接MySql服务在原来的连接基础上加上
serverTimezone=UTC
即:
spring.datasource.url=jdbc:mysql://localhost:3306/jdbc?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
此处的UTC是全球标准时间。
或者直接使用CTT(中国沿海时间同北京时间),也可以消除8小时的时差。即:
spring.datasource.url=jdbc:mysql://localhost:3306/jdbc?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
这样就可以消除上述错误了!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。