Browse Source

添加spring cloud admin

niantuo 6 years ago
parent
commit
5c4858d077

+ 3 - 2
build.gradle

@@ -16,6 +16,7 @@ buildscript {
         authVersion='1.2'
         shiro_version = '1.4.0'
         swagger_version = '2.7.0'
+        springBootAdminVersion='2.0.1'
     }
     repositories {
         mavenCentral()
@@ -81,7 +82,7 @@ subprojects {
         // SpringBoot Starter
         compile 'org.springframework.cloud:spring-cloud-starter-bus-amqp'
         compile('org.springframework.boot:spring-boot-starter-web')
-        compile('org.springframework.boot:spring-boot-starter-actuator')
+
         compile('org.springframework.cloud:spring-cloud-config-server')
         compile('org.springframework.boot:spring-boot-starter-jetty')
         compile('org.springframework.boot:spring-boot-starter-jdbc')
@@ -92,7 +93,7 @@ subprojects {
 
         compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
         compile('org.springframework.cloud:spring-cloud-starter-openfeign')
-
+        
 //
         // commons
         compile("commons-io:commons-io:$commons_io_version")

+ 6 - 0
eureka-web/build.gradle

@@ -15,6 +15,12 @@ apply plugin: 'application'
 
 dependencies{
     compile project(':envir-config')
+    //监控
+    compile('org.springframework.boot:spring-boot-starter-actuator')
+    compile("de.codecentric:spring-boot-admin-starter-server:${springBootAdminVersion}")
+    compile("de.codecentric:spring-boot-admin-starter-client:${springBootAdminVersion}")
+    compile('org.jolokia:jolokia-core')
+    compile('io.projectreactor.addons:reactor-extra')
 }
 
 //复制jar到指定的文件夹中

+ 2 - 0
eureka-web/src/main/java/cn/gygxzc/cloud/tina/eureka/MainApplication.java

@@ -2,6 +2,7 @@ package cn.gygxzc.cloud.tina.eureka;
 
 import cn.gygxzc.cloud.tina.auth.EnableTinaAuth;
 import cn.gygxzc.tina.cloud.jwt.session.EnableJwtRedisSession;
+import de.codecentric.boot.admin.server.config.EnableAdminServer;
 import org.mybatis.spring.annotation.MapperScan;
 import org.springframework.amqp.rabbit.annotation.EnableRabbit;
 import org.springframework.boot.SpringApplication;
@@ -18,6 +19,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients;
 @EnableRabbit
 @EnableTinaAuth
 @EnableEurekaServer
+@EnableAdminServer
 @EnableConfigServer
 @EnableFeignClients
 @EnableJwtRedisSession

+ 8 - 0
eureka-web/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@@ -0,0 +1,8 @@
+{
+  "properties": [
+    {
+      "name": "spring.cloud.refresh.refreshable",
+      "type": "java.lang.String",
+      "description": "Description for spring.cloud.refresh.refreshable."
+  }
+] }

+ 1 - 1
eureka-web/src/main/resources/application-dev.yml

@@ -29,7 +29,7 @@ auth:
 security:
   cros: true
   shiro: false
-  scan: true
+  scan: false
   redis:
     database: 1 # redis数据库索引
     hostName: 192.168.1.202

+ 1 - 1
eureka-web/src/main/resources/application-prod.yml

@@ -27,7 +27,7 @@ auth:
 security:
   cros: true
   shiro: false
-  scan: true
+  scan: false
   redis:
     database: 1 # redis数据库索引
     hostName: 120.77.44.234

+ 13 - 3
eureka-web/src/main/resources/application.yml

@@ -11,6 +11,9 @@ spring:
       max-lifetime: 1800000
       connection-timeout: 30000
       connection-test-query: select 1
+  boot:
+    admin:
+      context-path: /admin
 
 
 
@@ -25,12 +28,14 @@ eureka:
     lease-renewal-interval-in-seconds: 15
     lease-expiration-duration-in-seconds: 32
     ip-address: 127.0.0.1
+    metadata-map:
+      startup: ${random.int}
   client:
     register-with-eureka: true
-    fetch-registry: false
+    fetch-registry: true
     service-url:
       defaultZone: http://envir:envir@${eureka.instance.ip-address}:${server.port}/eureka/
-    registry-fetch-interval-seconds: 60
+    registry-fetch-interval-seconds: 5
     instance-info-replication-interval-seconds: 20
     initial-instance-info-replication-interval-seconds: 45
     eureka-server-read-timeout-seconds: 10
@@ -42,4 +47,9 @@ management:
   endpoints:
     web:
       exposure:
-        include: hearth,info,bus-refresh
+        include: '*'
+  endpoint:
+    health:
+      show-details: always
+
+

+ 5 - 2
eureka-web/src/main/resources/bootstrap.yml

@@ -1,6 +1,6 @@
 # 服务端口号
 server:
-  port: 11001
+  port: 11111
 
 spring:
   application:
@@ -9,7 +9,7 @@ spring:
     active: dev,jdbc
   cloud:
     refresh:
-      refreshable: none
+      refreshable: none   # 解决循环依赖的问题
     config:
       server:
         bootstrap: false
@@ -17,3 +17,6 @@ spring:
         jdbc:
           sql: SELECT `key`, `value` from properties where (application=? or ISNULL(application)) and profile=? and label=?
       label: master
+    bus:
+      trace:
+        enabled: true