springboot 常用配置之多環境配置
阿新 • • 發佈:2018-12-30
在spring mvc中我們都是通過spring.xml相關檔案配置,在springboot中這些都已經不存在了,我們應該怎樣配置呢?別急,馬上為大家揭曉謎底,跟著我一起來吧!
NO1.我們在做專案的時候是不是都會區分很多環境呢?比如開發環境、測試環境、生產環境等,那麼第一步我將先帶大家配置好各個環境;
maven的過濾資源需要結合maven的2個定義才能實現,分別是:
-
profile:定義一系列的配置資訊,然後指定其啟用條件
-
resources:指定maven編譯資原始檔指定到何處的,例如maven的標準資源目錄結構是src/main/resources(這個在超級pom中定義到了),maven進行編譯時候就會將resources中的資原始檔放到web的WEB-INF/classes下
1.首先開啟我們專案的pom.xml檔案加入以下內容:
<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-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>prod</id> <properties> <filter-resource-name>prod</filter-resource-name> </properties> </profile> </profiles>
這一段相信大家都很熟悉了吧,我就不多做解釋了(有疑問的童鞋可以私信我哦);
2.然後開啟application.properties檔案,並在其中加入以下內容:
#表示啟用的配置檔案(dev|prod)
[email protected]@
整個專案變成了如下結構:
至此我們的springboot多環境配置已經完成,接下來就是打包了;
開發: mvn package -Pdev (因為配置了預設啟用dev部分, 所以也可以使用mvn package, 這與 mvn package -Pdev 效果相同) 測試: mvn package -Ptest 預演:mvn package -Pprev 生產:mvn package -Pprod
至此,我們專案的基本環境配置已經搭建好,通過maven clean install以下選擇dev|test|prod打入你指定的配置,然後run application執行,如果通過localhost:8888可以訪問說明你的配置worked了;但是這還遠遠不夠,我們專案開發總得操作資料庫吧,哈哈 是的,接下來讓我們進入springboot + mysql + mybatis的世界吧!