ssm中整合Mybatis可以扫描到放在mapper下面的xml文件的方法

解决方法有两种:

1、把*Mapper.xml文件放到resource文件夹下管理

2、pom配置一下编译xml文件

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

 

ssm中整合Mybatis可以扫描到放在mapper下面的xml文件的方法

上一篇:Android Activity 生命周期中onStart()和onResume()的区别


下一篇:Invalid bound statement (not found): **.mapper.FeedbackMapper.insertFeedback