项目场景:
提示:这里简述项目相关背景:
Sping整合mybati出现错误
问题描述:
. 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. <bean id="myDataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<!--set注入给DruidDataSource提供连接数据库信息 -->
<!-- 使用属性配置文件中的数据,语法 ${key} -->
<property name="url" value="jdbc:mysql://localhost:3306/test" /><!--setUrl()-->
<property name="username" value="root"/>
<property name="password" value="123456" />
<property name="maxActive" value="20" />
</bean>
原因分析:
需要再url 加入时区后缀
解决方案:
<property name="url" value="jdbc:mysql://localhost:3306/test?serverTimezone=UTC" />