我必须在某处出错 - 但是当我在下面添加片段并运行junit时,我没有看到类路径更新以包含该目录。例如。我正在做getClass().getResource("..")
并获得NPE。我在标准的spring应用程序中执行相同的流程,没有任何问题,只有在迁移到启动后才会注意到。
运行mvn surefire:test时是否支持测试资源?例如。我有一些我只在junits中使用的存根结果,并且更喜欢在利用而不是另一个文件夹的代码旁边打包。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration> </configuration>
</plugin>
</plugins>
<!-- support for eclipse and maven junit -->
<testResources>
<testResource>
<directory>${project.basedir}/src/test/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
</build>