Tomcatサーバーのデプロイメントのために、プロジェクトを.war
にパッケージ化しようとしています。 application.properties
[〜#〜] or [〜#〜]application-dev.properties
[〜#〜] or [〜#〜]appliation-qa.properties
[〜#〜]または[〜#〜]application-prod.properties
。埋め込みサーブレットを使用してプロジェクトを実行する使用するコマンドラインをコマンドラインで指定できますが、プロジェクトをapplication.properties
としてパッケージ化すると、プロジェクトは常に.war
を使用します。
次のコマンドを使用して、プロジェクトをローカルで実行します。
mvn spring-boot:run
mvn spring-boot:run -Drun.arguments="--spring.profiles.active=dev"
そして、デプロイのために竹を通して私のプロジェクトをパッケージ化するこのコマンド:
mvn package -Dspring.profiles.active=qa
Application.Java
package com.pandera.wilson;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.web.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.core.env.AbstractEnvironment;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import org.Apache.log4j.Logger;
/**
* @author Gaurav Kataria
* @author Austin Nicholas
* @category Application
*/
@SpringBootApplication
@ComponentScan(basePackages = { "com.pandera.wilson" })
@EnableAsync
public class Application extends SpringBootServletInitializer {
static final Logger logger = Logger.getLogger(Application.class);
public static void main(String[] args) throws Exception {
logger.info("Entering Application");
SpringApplication.run(Application.class, args);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Application.class);
}
}
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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>org.springframework</groupId>
<artifactId>wilson</artifactId>
<version>3.0.1</version>
<packaging>war</packaging>
<properties>
<Java.version>1.8</Java.version>
<start-class>com.pandera.wilson.Application</start-class>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.6.RELEASE</version>
</parent>
<build>
<finalName>wilson-services</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-Tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.Apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
<dependency>
<groupId>com.Microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20160212</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.Microsoft.Azure</groupId>
<artifactId>Azure</artifactId>
<version>1.0.0-beta2</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
</project>
編集1:30 PM 7-21-16
以下をpom.xmlに追加し、mvn package -P PROD
でパッケージ化しようとしましたが、/about
を押しても、appliation.properties
ではなくapplication-prod.properties
を使用していることがわかります。
<profiles>
<profile>
<id>QA</id>
<properties>
<spring.profiles.active>qa</spring.profiles.active>
</properties>
</profile>
<profile>
<id>DEV</id>
<properties>
<spring.profiles.active>dev</spring.profiles.active>
</properties>
</profile>
<profile>
<id>PROD</id>
<properties>
<spring.profiles.active>prod</spring.profiles.active>
</properties>
</profile>
</profiles>
ばねのプロファイルは、次の方法で定義できます。
web.xml
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>your target profile here</param-value>
</context-param>
setenv.sh
Tomcatのbinフォルダーの下に、次の内容のsetenv.shファイルを作成します。
Java_OPTS="$Java_OPTS -Dspring.profiles.active=<your target profile here>"
これを試しましたか?
Java -jar -Dspring.profiles.active=qa yourwarfilename.war
パッケージングの場合、このようなプロファイルを作成し、$ mvn package -P QAを介してビルドするときにこのプロファイルを呼び出すことができます。
<profiles>
<profile>
<id>QA</id>
<properties>
<spring.profiles.active>qa</spring.profiles.active>
</properties>
</profile>
</profiles>
使用できます
spring.profiles.active=<Your Active application(dev/test/prod)>
application.propertiesファイルのみ
application-dev.properties
、appliation-qa.properties
、およびapplication-prod.properties
ファイルで行う必要があるその他の構成
それは私のための作品です
これで問題が解決することを願っています。 (最初は私が謝罪をお願いするつもりです。私の英語がとても貧しいので、私はあなたを助けたいです)
今、私のコメント:
私はmavenとspring-bootでコーディングしています。
pom.xmlにそれぞれのプロパティを含むすべてのプロファイルが必要です(私の場合、プロファイルごとにロガーがあり、必要なプロパティを追加します)。
<profile>
<id>test</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<FILE_LOG_LEVEL>INFO</FILE_LOG_LEVEL>
</properties>
</profile>
次に、プロファイルを選択して、「aplication.properties」ファイルで1つの作業を行うようにSpringに指示できます。
spring.profiles.active = "nameOfProfileYouWantToActive"
これを使用すると、mvn clean packageを実行するだけで、デプロイを破棄できます。
事前定義されたプロファイルに従ってプロジェクトをパッケージ化するには、次のようにする必要があります。
application.properties
に追加
POMにこれを追加します。
<build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources>
(あなたがしたのと同じように)あなたのプロフィールを定義してください
コマンドmvn package -P QA
を実行します
生成されたWARのapplication.properties
では、[email protected]@
がspring.profiles.active=QA
に置き換えられます。