[Spring cloud 一步步实现广告系统] 9. 主类和配置文件
生活随笔
收集整理的這篇文章主要介紹了
[Spring cloud 一步步实现广告系统] 9. 主类和配置文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
搜索系統啟動主類
/*** AdSearchApplication for 廣告搜索服務啟動類** @author <a href="mailto:magicianisaac@gmail.com">Isaac.Zhang | 若初</a>*/ @EnableFeignClients //啟動Feign 客戶端,為了訪問其他微服務 @EnableDiscoveryClient // 開啟服務發現組件,在這里等同于 @EnableEurekaClient @EnableHystrix // 開啟hystrix 斷路器 @EnableCircuitBreaker // 斷路器 @EnableHystrixDashboard // 開啟hystrix 監控 @SpringBootApplication public class AdSearchApplication {public static void main(String[] args) {SpringApplication.run(AdSearchApplication.class, args);} }配置文件
server:port: 7001servlet:context-path: /ad-search #http請求的根路徑(請求前綴,在handle的mapping之前,需要127.0.0.1/ad-search/XXXX) spring:application:name: mscx-ad-searchjpa:show-sql: true #執行時是否打印sql語句,方便調試hibernate:ddl-auto: noneproperties:hibernate.format_sql: trueopen-in-view: false #控制是否在懶加載時,有可能會找不到bean報錯datasource:username: rooturl: jdbc:mysql://127.0.0.1:3306/advertisement?useSSL=false&autoReconnect=truepassword: ****tomcat:max-active: 4 #最大連接數min-idle: 2 #最小空閑連接數initial-size: 2 #默認初始化連接數 eureka:client:service-url:defaultZone: http://server1:7777/eureka/,http://server2:8888/eureka/,http://server3:9999/eureka/ feign:hystrix:enabled: true management:endpoints:web:exposure:include: "*"adconf:mysql:host: 127.0.0.1port: 3306username: rootpassword: ****binlogName: ""position: -1kafka:topic: ad-search-mysql-data轉載于:https://www.cnblogs.com/zhangpan1244/p/11273095.html
總結
以上是生活随笔為你收集整理的[Spring cloud 一步步实现广告系统] 9. 主类和配置文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [Spring cloud 一步步实现广
- 下一篇: Quzrtz.net 示例