我正在使用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提供。
答案 0 :(得分:3)
您正在使用Maven,因此您可以完全不使用src/main/resources
路径,因为{class}会在类路径的根目录中找到Conference.xml
。这应该有效:
<mappers>
<mapper resource="Conference.xml" />
</mappers>