需求
开发时使用的环境与生产环境配置往往不同。为了方便开发,在工程中针对不同的环境添加了多个配置文件,当处于不同环境时启用不同的配置文件。
在多配置文件共同启用的前提下, application.properties 是一定启用的,其他配置文件根据需求启用。
准备配置文件
系统默认的配置文件为 application.properties 。该配置文件通常用于存放不需要变更的配置信息。这里使用默认的 .properties 文件, .yml 文件同理。
额外添加的配置文件必须以 application 开头。创建一个 application-dev.properties 用于生产环境,创建一个 application-test.properties 用于测试环境。
在 application-dev.properties 中添加端口配置:
server.port=9080
在 application-test.properties 中添加端口配置:
server.port=9081
这样两个配置文件就配置好了。注意在 application.properties 中不能有相同配置。
在pom.xml中进行配置
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
...
<dependencies>
...
</dependencies>
<profiles>
<profile>
<id>develop</id>
<properties>
<profileActive>dev</profileActive>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>test</id>
<properties>
<profileActive>test</profileActive>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
其中<profiles>
中添加了2个<profile>
,一个定义了dev,另一个定义了test。为dev添加默认开启的属性:
<activation>
<activeByDefault>true</activeByDefault>
</activation>
在application.properties中设置
在application.properties中添加配置:
spring.profiles.active=@profileActive@
这样即完成了配置。
访问
在未设置server.port
的前提下,端口默认为8080。此时动态加载了application-dev.properties文件,端口设为9080。访问的路径应为:
http://localhost:9080/helloworld