這篇文章主要介紹了springboot中多環(huán)境配置的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

NO1.我們在做項(xiàng)目的時(shí)候是不是都會(huì)區(qū)分很多環(huán)境呢?比如開發(fā)環(huán)境、測試環(huán)境、生產(chǎn)環(huán)境等,那么第一步我將先帶大家配置好各個(gè)環(huán)境;
1.首先打開我們項(xiàng)目的pom.xml文件加入以下內(nèi)容:
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>utf8</encoding>
</configuration>
</plugin>
</plugins>
<filters>
<filter>src/main/resources/application-${filter-resource-name}.properties</filter>
</filters>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>filters/*</exclude>
<exclude>filters/*</exclude>
<exclude>application-dev.properties</exclude>
<exclude>application-test.properties</exclude>
<exclude>application-alpha.properties</exclude>
<exclude>application-prod.properties</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>application-${filter-resource-name}.properties</include>
</includes>
</resource>
</resources>
</build>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<filter-resource-name>dev</filter-resource-name>
</properties>
</profile>
<profile>
<id>test</id>
<properties>
<filter-resource-name>test</filter-resource-name>
</properties>
</profile>
<profile>
<id>alpha</id>
<properties>
<filter-resource-name>alpha</filter-resource-name>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<filter-resource-name>prod</filter-resource-name>
</properties>
</profile>
</profiles>這一段相信大家都很熟悉了吧,我就不多做解釋了(有疑問的童鞋可以私信我哦);
2.然后打開application.properties文件,并在其中加入以下內(nèi)容:
#表示激活的配置文件(dev|prod)
spring.profiles.active=@filter-resource-name@
整個(gè)項(xiàng)目變成了如下結(jié)構(gòu):

至此我們的springboot多環(huán)境配置已經(jīng)完成;
3.設(shè)置日志級(jí)別
#log level logging.level.root=debug
4.設(shè)置自定義端口以及實(shí)例名
#端口 server.port=8888 #實(shí)例名 spring.application.name=demo-springboot
5.logback-spring.xml
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<appender name="demo" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>demo/demo.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 按天回滾 daily -->
<fileNamePattern>demo/demo.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志大的歷史 10天 -->
<maxHistory>10</maxHistory>
</rollingPolicy>
<encoder charset="UTF-8">
<pattern>${FILE_LOG_PATTERN}</pattern>
</encoder>
</appender>
<logger name="com.example.demo" level="INFO" additivity="false">
<appender-ref ref="demo"/>
</logger>
<logger name="com.example.demo.dao" level="DEBUG" />
<logger name="com.example.demo.service" level="INFO" />
<logger name="druid.sql.Statement" level="DEBUG" />
<logger name="druid.sql.ResultSet" level="DEBUG" />
<logger name="org.apache" level="INFO" />
<logger name="org.mybatis.spring" level="ERROR" />
<logger name="org.springframework" level="INFO"></logger>
<logger name="springfox" level="ERROR"></logger>
<root level="INFO">
<appender-ref ref="demo" />
</root>
</configuration感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“springboot中多環(huán)境配置的示例分析”這篇文章對大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!
網(wǎng)站名稱:springboot中多環(huán)境配置的示例分析-創(chuàng)新互聯(lián)
文章鏈接:http://chinadenli.net/article16/dhogdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、面包屑導(dǎo)航、網(wǎng)站維護(hù)、手機(jī)網(wǎng)站建設(shè)、建站公司、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容