search

Home  >  Q&A  >  body text

java - mybatis 错误,找不到mapper?

这是mybatis-config.xml:

<?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>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="com.mysql.jdbc.Driver"/>
                <property name="url"
                          value="jdbc:mysql://localhost:3306/jupan_mail?useUnicode=true&amp;characterEncoding=UTF-8&amp;"/>
                <property name="username" value="root"/>
                <property name="password" value="password"/>
            </dataSource>
        </environment>
    </environments>
    <mappers>
        <mapper resource="com/salamander/backcal/mapping/MailChangeMapper.xml"/>
    </mappers>
</configuration>

这是项目结构:

单元测试报错:
Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/salamander/backcal/dao/MailChangeMapper.xml

伊谢尔伦伊谢尔伦2815 days ago1032

reply all(4)I'll reply

  • 迷茫

    迷茫2017-04-18 10:20:19

    Find the solution (the reason is: idea will not compile the xml file in the java directory of src):
    Add node in pom.xml:

    <build>
            <resources>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.xml</include>
                    </includes>
                </resource>
            </resources>
        </build>

    Reference: http://www.cnblogs.com/canger...

    reply
    0
  • 怪我咯

    怪我咯2017-04-18 10:20:19

    will not be in the java文件移至resources directory.

    reply
    0
  • 黄舟

    黄舟2017-04-18 10:20:19

    com/salamander/backcal/dao/MailChangeMapper.xml
    报错的路径是daoThis is included in the package.
    But the configuration you posted is different from the error path.
    Thought-provoking

    reply
    0
  • 迷茫

    迷茫2017-04-18 10:20:19

    Configure a tag similar to <sanner></scanner> and give it a try.

    reply
    0
  • Cancelreply