admin管理员组

文章数量:1559090

报错信息如下

caused by: java.io.ioexception: could not find resource com/igeek/shop/mapper/accounntmapper.xml

然后查看target目录下,发现没有加载此配置文件

原因:默认情况下,maven项目只会加载resources目录下的资源。

解决方法:在pom.xml的build标签中加入如下内容


	
		src/main/java
		
			**/*.xml
			**/*.properties
		
	
	
		src/main/resources
		
			**/*.xml
			**/*.properties
			**/*.ini
		
	

再次编译,target目录下已加载java包中的配置文件


运行程序,正常。

本文标签: