Mybatis(iBatis)XML映射配置

时间:2013-11-01 15:36:08

标签: java spring maven spring-mvc mybatis

我正在使用MyBatis 3.2.2并且在将XML映射器作为资源加载时遇到问题。

<mappers>
    <mapper resource="src/main/resources/Conference.xml" />
</mappers>

异常

nested exception is org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource src/main/resources/Conference.xml

项目由Maven提供。

1 个答案:

答案 0 :(得分:3)

您正在使用Maven,因此您可以完全不使用src/main/resources路径,因为{class}会在类路径的根目录中找到Conference.xml。这应该有效:

<mappers>
    <mapper resource="Conference.xml" />
</mappers>