情景:maven普通java项目中(非web),用mvn test命令编译源文件和测试文件的时候报错。
报错:
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) on project MybatisDay02Demo1: There are test failures.
Please refer to D:\IntelliJ\IJCode\MybatisDay02Demo1\target\surefire-reports for the individual test results.
解决描述:
这个问题我今天遇到两次了,第一次没有记录下来,现在第二次遇到,就记录一下。
第一次,配置文件SqlMapConfig.xml文件没找到,路径有误报错。
第二次,jdbcConfig.properties文件的路径没写对,报错,后来换了种写法正常了。
总结就是:这种报错有可能是配置文件的路径没写好,可以检查一下,或者换一种路径写法试试。