我开始在 Maven 中使用配置文件来构建多环境 jar。
我按照官方文档来做到这一点。
首先,验证问题:
我读过你应该总是有一个由Maven项目生成的包,但我只想生成多环境 jars(即:只为每个 jar 更改一个属性文件)。我认为没有必要生成多个项目来执行此操作,对吗?
现在解释:
我有一个应用程序,它可以读取文件并应用一组特定的评论,然后再将一些信息插入数据库。我想测试这个验证是否正常,并且无论它稍后在数据库中是否失败,我都会得到正确的结果。所以在这个应用程序中,我使用了一个动态设置的 DAO。这是:我的应用在运行时从config.properties文件中获取 DAO 类。我创建了一些外观 DAO 来模拟真实的 DAO(例如:DAOApproveAll,它将模拟数据库中的所有事务都正常)。
在单元测试中,我加载config.properties以更改(然后恢复更改)参数daoimplclass的值,该参数是包含该类的值。例如:
Properties prop = Configurator.getProperties("config");
final String DAODEFAULT = prop.getProperty("daoimplclass");
final static String DAOAPPROVEALL = "com.package.dao.DAOAllApproved";
public void testAllAproved() {
try {
Processor processor = Processor.getInstance();
prop.setProperty("daoimplclass", DAOAPPROVEALL);
...
}
finally{prop.setProperty("daoimplclass", DAODEFAULT);}
我做了很多测试(使用不同的 DAO 外观),以验证如果数据库中出现不同的结果会发生什么。
现在,我将config.properties更改为 2 个文件:config-dev.properties和config-prod.properties。并将原来的pom.xml更改为使用如下配置文件:
<profiles>
<profile>
<id>dev</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete file="${project.build.outputDirectory}/config.properties"/>
<copy file="src/main/resources/config-dev.properties"
tofile="${project.build.outputDirectory}/config.properties"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>dev</classifier>
<source>1.6</source>
<target>1.6</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>prod</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete file="${project.build.outputDirectory}/config.properties"/>
<copy file="src/main/resources/config-prod.properties"
tofile="${project.build.outputDirectory}/config.properties"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>prod</classifier>
<source>1.6</source>
<target>1.6</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
现在,当我在 Netbeans 中执行“清理和构建”时,我在执行测试时遇到错误,因为它找不到config.properties。当然,我创建了第三个config.properties(另外两个将与 -dev 和 -prod 一起)它编译但不会生成 2 个 jar,而只会生成一个。
我的正式问题:
- 我在配置文件中做错了什么?
- 我怎样才能允许测试运行正常并且仅用于开发?