您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Spring Boot多環(huán)境配置方法是什么”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
1.1創(chuàng)建父項(xiàng)目
步驟一:創(chuàng)建父項(xiàng)目 cloud_parent
步驟二:修改 cloud_parent 父項(xiàng)目中的 pom.xml文件,確定spring boot版本
<!--確定spring boot的版本--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.4.RELEASE</version> </parent>
1.2 profiles多環(huán)境配置
在開(kāi)發(fā)中,項(xiàng)目會(huì)被部署到不同的運(yùn)行環(huán)境中,如:測(cè)試環(huán)境、生產(chǎn)環(huán)境。Spring boot 允許配置多個(gè)yml文件(application-環(huán)境名.properties),并通過(guò) spring.profiles.active=環(huán)境 來(lái)激活不同的環(huán)境。
步驟一:
1.在 cloud_parent父項(xiàng)目 下創(chuàng)建 profiles_demo項(xiàng)目
2.在profiles_demo項(xiàng)目的 pom.xml文件中配置web啟動(dòng)器
<!--web起步依賴(lài)--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
3.創(chuàng)建profiles_demo項(xiàng)目的啟動(dòng)類(lèi)
步驟三:在application.yml文件中,確定激活那個(gè)配置文件
1.3 actuator監(jiān)控
Spring boot 提供了一個(gè)用于監(jiān)控和管理自身應(yīng)用信息的模塊:spring-boot-starter-actuator 添加依賴(lài)就可以直接使用。
<!--監(jiān)控依賴(lài)--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
訪問(wèn)路徑: http://localhost:9096/actuator
訪問(wèn)結(jié)果:
1.4 熱部署
熱部署:代碼修改后,刷新瀏覽器會(huì)自動(dòng)重啟服務(wù)器,重啟完畢再次刷新瀏覽器就可以看到效果
步驟一:修改pom.xml添加 spring-boot-devtools依賴(lài)
<!--熱部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency>
步驟二:開(kāi)啟IDEA自動(dòng)編譯
步驟三: 在 pom.xml 中 快捷鍵Shift+Ctrl+Alt+/,選擇Registry,將“compiler.auto....app.running”勾選
“Spring Boot多環(huán)境配置方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。