学习Mybatis框架遇到的报错

环境:IDEA、MYSQL5.5、Mybatis、Java


问题:Cause: 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

解决办法:

mysql> SET GLOBAL time_zone = '+8:00';


问题:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

出错原因: db.driver=com.mysql.jdbc.Driver

解决办法:db.driver=com.mysql.cj.jdbc.Driver


问题:Cause: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)

出错原因:少了 "}"


问题:The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,reflectorFactory?,plugins?,environments?,databaseIdProvider?,mappers?)".

出错原因:观察全局配置文件内容,发现<typeAliases>元素在<environments>元素后,这就是问题所在。由问题描述可知,该xml文件的dtd约束了<configuration>根元素中允许包含<properties>、<settings>、<typeAliases>、<typeHandlers>、<objectFactory>、<objectWrapperFactory>、<reflectorFactory>、<plugins>、<environments>、<databaseIdProvider>、<mappers>这些子元素,但是注意!!!这些子元素的顺序不能乱,因为mybatis加载该配置文件时是按照该顺序依次进行解析的。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <!--  配置文件信息  -->
    <properties resource="db.properties"></properties>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="${db.driver}"/>
                <property name="url" value="${db.url}"/>
                <property name="username" value="${db.user}"/>
                <property name="password" value="${db.password}"/>
            </dataSource>

        </environment>
    </environments>
    <typeAliases>
        <typeAlias type="com.test.bean.People" alias="People"/>
    </typeAliases>
    <!-- 映射器 -->
    <mappers>

        <!-- 加载编写的SQL语句的文件  -->
        <mapper resource="PeopleMapper.xml"/>
    </mappers>
</configuration>

解决办法:将<typeAliases>元素的位置调整至<environments>元素前、<properties>元素后

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值