Kind of new to Java and Maven, but I trying to get Maven to handle the database connection properties so I can have the maven build change them between dev/stage/prod environments and I am running into issues with filtering and resources. Not sure what I am doing wrong here either.
Java和Maven的新手,但是我试图让Maven处理数据库连接属性,这样我就可以让maven构建在dev / stage / prod环境之间进行更改,我遇到了过滤和资源问题。不知道我在这里做错了什么。
POM File:
POM文件:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.comapny</groupId>
<artifactId>reporting</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>reporting</name>
<url>http://maven.apache.org</url>
<properties>
<db.jdbcUrl>jdbc:aURL</db.jdbcUrl>
<db.jdbcUn>aUser</db.jdbcUn>
<db.jdbcPw>aPassword</db.jdbcPw>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springframework.version>4.2.3.RELEASE</springframework.version>
<springframework.jdbc.version>4.1.4.RELEASE</springframework.jdbc.version>
<hadoop.version>2.7.1.2.3.4.2-1</hadoop.version>
<hbase.version>1.1.2.2.3.4.2-1</hbase.version>
<phoenix.version>4.4.0.2.3.4.2-1</phoenix.version>
<junit.version>4.12</junit.version>
<mail.version>1.4.3</mail.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.0.RELEASE</version>
</parent>
<repositories>
<repository>
<id>github-releases</id>
<url>http://oss.sonatype.org/content/repositories/github-releases/</url>
</repository>
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
<repository>
<id>hortonworks</id>
<url>http://repo.hortonworks.com/content/repositories/releases/</url>
</repository>
<repository>
<id>twitter4j</id>
<url>http://twitter4j.org/maven2</url>
</repository>
</repositories>
<dependencies>
<!-- <dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId>
<version>1.7.0_05</version> <scope>system</scope> <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
</dependency> -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- <version>1.2.3.RELEASE</version> -->
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
<dependency>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
<version>1.7.0_05</version>
<scope>system</scope>
<systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
</dependency>
<dependency>
<groupId>org.apache.phoenix</groupId>
<artifactId>phoenix-core</artifactId>
<version>${phoenix.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<!-- <exclusion> <artifactId>joda-time</artifactId> <groupId>joda-time</groupId>
</exclusion> -->
</exclusions>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
<!-- Hadoop Dependencies -->
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>6.1.26</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-sslengine</artifactId>
<version>6.1.26</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- HBase Dependcies -->
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>${hbase.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Other -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mailapi</artifactId>
<version>${mail.version}</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>${mail.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
<!-- End of Other -->
<!-- Log4J 2.x 2.4.1 -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.github.omkreddy</groupId>
<artifactId>log4j2-kafka-appender</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>0.9.0.0</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>false</showWarnings>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>db.properties</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<includes>
<include>db.properties</include>
</includes>
</testResource>
</testResources>
</build>
db.properties
db.properties
jdbc.url= ${db.jdbcUrl}
jdbc.username= ${db.jdbcUn}
jdbc.password= ${db.jdbcPw}
Maven version 3.3.8
Maven版本3.3.8
JDK 1.8.0-72
JDK 1.8.0-72
Command Line
命令行
mvn test -P development -X
Error
错误
java.lang.IllegalArgumentException: Could not resolve placeholder 'db.jdbcUrl' in string value "${db.jdbcUrl}"
Any help would be greatly appreciated.
任何帮助将不胜感激。
1 个解决方案
#1
44
First of all, you don't need to use a profile. The resources db.properties
is a test resource so it should be located under src/test/resources
and not under src/main/resources
. Using profiles will complicate your build, you should only resort to them as a last condition.
首先,您不需要使用配置文件。资源db.properties是一个测试资源,因此它应位于src / test / resources下,而不是src / main / resources下。使用配置文件会使您的构建变得复杂,您应该只将它们作为最后一个条件。
The reason you're having this problem is that Spring Boot redefines the token filter to be @
instead of the default ${*}
. From the docs:
您遇到此问题的原因是Spring Boot将令牌过滤器重新定义为@而不是默认的$ {*}。来自文档:
If you are inheriting from the
spring-boot-starter-parent
POM, the default filter token of themaven-resources-plugins
has been changed from${*}
to@
(i.e.@maven.token@
instead of${maven.token}
) to prevent conflicts with Spring-style placeholders. If you have enabled maven filtering for theapplication.properties
directly, you may want to also change the default filter token to use other delimiters.如果您继承了spring-boot-starter-parent POM,则maven-resources-plugins的默认过滤器令牌已从$ {*}更改为@(即@ maven.token @而不是$ {maven.token })以防止与Spring样式占位符冲突。如果您已直接为application.properties启用了maven过滤,则可能还需要更改默认过滤器令牌以使用其他分隔符。
This means that you should have instead:
这意味着您应该改为:
jdbc.url= @db.jdbcUrl@
jdbc.username= @db.jdbcUn@
jdbc.password= @db.jdbcPw@
for the db.properties
file.
对于db.properties文件。
Then you need to remove your <resources>
section and replace it with:
然后,您需要删除
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<includes>
<include>db.properties</include>
</includes>
</testResource>
</testResources>
#1
44
First of all, you don't need to use a profile. The resources db.properties
is a test resource so it should be located under src/test/resources
and not under src/main/resources
. Using profiles will complicate your build, you should only resort to them as a last condition.
首先,您不需要使用配置文件。资源db.properties是一个测试资源,因此它应位于src / test / resources下,而不是src / main / resources下。使用配置文件会使您的构建变得复杂,您应该只将它们作为最后一个条件。
The reason you're having this problem is that Spring Boot redefines the token filter to be @
instead of the default ${*}
. From the docs:
您遇到此问题的原因是Spring Boot将令牌过滤器重新定义为@而不是默认的$ {*}。来自文档:
If you are inheriting from the
spring-boot-starter-parent
POM, the default filter token of themaven-resources-plugins
has been changed from${*}
to@
(i.e.@maven.token@
instead of${maven.token}
) to prevent conflicts with Spring-style placeholders. If you have enabled maven filtering for theapplication.properties
directly, you may want to also change the default filter token to use other delimiters.如果您继承了spring-boot-starter-parent POM,则maven-resources-plugins的默认过滤器令牌已从$ {*}更改为@(即@ maven.token @而不是$ {maven.token })以防止与Spring样式占位符冲突。如果您已直接为application.properties启用了maven过滤,则可能还需要更改默认过滤器令牌以使用其他分隔符。
This means that you should have instead:
这意味着您应该改为:
jdbc.url= @db.jdbcUrl@
jdbc.username= @db.jdbcUn@
jdbc.password= @db.jdbcPw@
for the db.properties
file.
对于db.properties文件。
Then you need to remove your <resources>
section and replace it with:
然后,您需要删除
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<includes>
<include>db.properties</include>
</includes>
</testResource>
</testResources>