怎么在SpringBoot中配置Apollo?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創新互聯科技有限公司專業互聯網基礎服務商,為您提供服務器托管,高防服務器,成都IDC機房托管,成都主機托管等互聯網服務。
項目引用
<dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-client</artifactId> <version>1.4.0</version> </dependency>
引入jar包后,項目配置
入口方法加入注解配置
@EnableApolloConfig
package top.xzhand; import com.ctrip.framework.apollo.spring.annotation.EnableApolloConfig; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication @EnableApolloConfig @MapperScan("top.xzhand.mapper") public class JuneApplication { public static void main(String[] args){ SpringApplication.run(JuneApplication.class,args); } }
yml 文件配置項
# 阿波羅配置 app: id: juneweb-apollo apollo: # 注冊路徑,阿波羅默認注冊配置 Eureka meta: http://localhost:8080 bootstrap: enabled: true # 指定阿波羅中配置項名稱,多個用逗號隔開 namespaces: application
配置項獲取
package top.xzhand.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import top.xzhand.po.Profix; @Configuration @EnableAutoConfiguration public class ApolloProperties { @Value("${juneweb-apollo}") //阿波羅配置中心中配置的key public String prefix; @Bean public Profix profix(){ Profix p=new Profix(); p.setP(prefix); System.out.println("prefix=========================**********"+prefix); return p; } }
關于怎么在SpringBoot中配置Apollo問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創新互聯行業資訊頻道了解更多相關知識。
文章名稱:怎么在SpringBoot中配置Apollo
網站地址:http://m.newbst.com/article2/jdjooc.html
成都網站建設公司_創新互聯,為您提供App開發、關鍵詞優化、網站建設、軟件開發、全網營銷推廣、移動網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯