作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要能够使用在 JUnit 测试运行时激活的配置文件。
我想知道是否有任何方法可以做类似的事情:
String str = System.getProperty("activated.profile[0]");
${project.profiles[0].id}
但不知何故它不起作用。
最佳答案
当使用 surefire 运行单元测试时,它通常会产生一个新的 JVM 来运行测试,我们必须将信息传递给新的 JVM。这通常可以使用“systemPropertyVariables”标签来完成。
我能够使用快速入门 Java 项目来练习这个,我将它添加到 POM 中:
我声明了以下配置文件
<profiles>
<profile>
<id>special-profile1</id>
</profile>
<profile>
<id>special-profile2</id>
</profile>
</profiles>
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<systemPropertyVariables>
<profileId>${project.activeProfiles[0].id}</profileId>
</systemPropertyVariables>
</configuration>
</plugin>
...
</plugins>
</build>
/**
* Rigourous Test :-)
*/
public void testApp()
{
System.out.println("Profile ID: " + System.getProperty("profileId"));
}
mvn test
),我得到了这个:
mvn -P special-profile2 test
, 我懂了
关于java - 在 maven java 项目运行时获取激活的配置文件名称列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34547962/
我是一名优秀的程序员,十分优秀!