1、修改pom.xml辙售,添加resources節(jié)點轻抱,將/src/main/java下的xml文件設(shè)置為資源文件
<build>
<finalName>springWebTest</finalName>
<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>
2、將mapper.xml放到resources文件夾下面旦部,同時修改spring-mybatis.xml文件中 mapper.xml的路徑
<!-- spring和MyBatis完美整合祈搜,不需要mybatis的配置映射文件 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<!-- 自動掃描mapping.xml文件 -->
<property name="mapperLocations" value="classpath:mapper/*Mapper.xml"></property>
</bean>