Selaa lähdekoodia

添加监控配置,升级扫描API方法

niantuo 6 vuotta sitten
vanhempi
commit
fb6d2ad8e9

+ 15 - 0
build.gradle

@@ -21,6 +21,7 @@ buildscript {
         authVersion='1.2.2'
         authVersion='1.2.2'
     }
     }
     repositories {
     repositories {
+        maven { url 'https://maven.aliyun.com/repository/public' }
         mavenCentral()
         mavenCentral()
         maven { url = 'http://repo.spring.io/plugins-release' }
         maven { url = 'http://repo.spring.io/plugins-release' }
     }
     }
@@ -52,7 +53,13 @@ subprojects {
     [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
     [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
     compileJava.dependsOn(processResources)
     compileJava.dependsOn(processResources)
 
 
+    ext{
+        set('springBootAdminVersion', '2.1.4')
+    }
+
+
     repositories {
     repositories {
+        maven { url 'https://maven.aliyun.com/repository/public' }
         mavenCentral()
         mavenCentral()
         jcenter()
         jcenter()
         maven {
         maven {
@@ -62,6 +69,13 @@ subprojects {
                 password 'U1oB2RJOJa'
                 password 'U1oB2RJOJa'
             }
             }
         }
         }
+        maven {
+            credentials {
+                username 'TbLzWL'
+                password 'mCl1FI5SVB'
+            }
+            url 'https://repo.rdc.aliyun.com/repository/33224-snapshot-okrj8B/'
+        }
     }
     }
 
 
     dependencyManagement {
     dependencyManagement {
@@ -90,6 +104,7 @@ subprojects {
         compile('org.springframework.boot:spring-boot-starter-web')
         compile('org.springframework.boot:spring-boot-starter-web')
         compile('org.springframework.boot:spring-boot-starter-jdbc')
         compile('org.springframework.boot:spring-boot-starter-jdbc')
         compile('org.springframework.boot:spring-boot-starter-actuator')
         compile('org.springframework.boot:spring-boot-starter-actuator')
+        compile("de.codecentric:spring-boot-admin-starter-client:${springBootAdminVersion}")
 
 
         compile('org.springframework.boot:spring-boot-starter-jta-atomikos')
         compile('org.springframework.boot:spring-boot-starter-jta-atomikos')
         compile('org.springframework.boot:spring-boot-starter-jetty')
         compile('org.springframework.boot:spring-boot-starter-jetty')

+ 1 - 1
cloud-bus/src/main/java/cn/gygxzc/envir/bus/RabbitConfiguration.java

@@ -19,7 +19,7 @@ import org.springframework.context.annotation.Configuration;
  */
  */
 
 
 @Configuration
 @Configuration
-@ComponentScan
+@ComponentScan("cn.gygxzc.tina.cloud.bus")
 public class RabbitConfiguration {
 public class RabbitConfiguration {
 
 
 
 

+ 1 - 1
zen-web/src/main/java/cn/gygxzc/envir/config/encrypt/WebDecodeRequestBodyAdvice.java

@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.ControllerAdvice;
  * @author tuonina
  * @author tuonina
  * @createTime 2019/2/26
  * @createTime 2019/2/26
  */
  */
-@ControllerAdvice("cn.gygxzc.envir")
+@ControllerAdvice("cn.gygxzc")
 public class WebDecodeRequestBodyAdvice extends DecryptRequestBodyAdvice {
 public class WebDecodeRequestBodyAdvice extends DecryptRequestBodyAdvice {
 
 
     public WebDecodeRequestBodyAdvice(ClientRedisTemplate redisTemplate) {
     public WebDecodeRequestBodyAdvice(ClientRedisTemplate redisTemplate) {

+ 1 - 1
zen-web/src/main/java/cn/gygxzc/envir/config/encrypt/WebEncodeResponseBodyAdvice.java

@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.ControllerAdvice;
  * @author tuonina
  * @author tuonina
  * @createTime 2019/2/26
  * @createTime 2019/2/26
  */
  */
-@ControllerAdvice("cn.gygxzc.envir")
+@ControllerAdvice("cn.gygxzc")
 public class WebEncodeResponseBodyAdvice extends EncryptResponseBodyAdvice {
 public class WebEncodeResponseBodyAdvice extends EncryptResponseBodyAdvice {
 
 
     public WebEncodeResponseBodyAdvice(ObjectMapper objectMapper, ClientRedisTemplate template) {
     public WebEncodeResponseBodyAdvice(ObjectMapper objectMapper, ClientRedisTemplate template) {

+ 3 - 1
zen-web/src/main/kotlin/cn/gygxzc/envir/MainApplication.kt

@@ -11,10 +11,13 @@ import org.springframework.boot.builder.SpringApplicationBuilder
 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer
 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer
 import org.springframework.cloud.client.discovery.EnableDiscoveryClient
 import org.springframework.cloud.client.discovery.EnableDiscoveryClient
 import org.springframework.cloud.openfeign.EnableFeignClients
 import org.springframework.cloud.openfeign.EnableFeignClients
+import org.springframework.scheduling.annotation.EnableAsync
+import org.springframework.web.servlet.DispatcherServlet
 
 
 /**
 /**
  * 注解配置
  * 注解配置
  */
  */
+@EnableAsync
 @EnableTinaAuth
 @EnableTinaAuth
 @EnableFeignClients
 @EnableFeignClients
 @EnableFastDFSClient
 @EnableFastDFSClient
@@ -31,6 +34,5 @@ class MainApplication : SpringBootServletInitializer() {
 }
 }
 
 
 fun main(args: Array<String>) {
 fun main(args: Array<String>) {
-
     SpringApplication.run(MainApplication::class.java, *args)
     SpringApplication.run(MainApplication::class.java, *args)
 }
 }

+ 1 - 0
zen-web/src/main/kotlin/cn/gygxzc/envir/config/EnvirWebMvcConfiguration.kt

@@ -27,6 +27,7 @@ open class EnvirWebMvcConfiguration : WebMvcConfigurer {
         registry.addResourceHandler("swagger-ui.html")
         registry.addResourceHandler("swagger-ui.html")
                 .addResourceLocations("classpath:/META-INF/resources/")
                 .addResourceLocations("classpath:/META-INF/resources/")
 
 
+
         registry.addResourceHandler("/webjars*")
         registry.addResourceHandler("/webjars*")
                 .addResourceLocations("classpath:/META-INF/resources/webjars/")
                 .addResourceLocations("classpath:/META-INF/resources/webjars/")
     }
     }

+ 12 - 0
zen-web/src/main/resources/application.yml

@@ -3,3 +3,15 @@ spring:
     allow-bean-definition-overriding: true
     allow-bean-definition-overriding: true
 
 
 
 
+swagger:
+  open: true
+
+management:
+  endpoints:
+    web:
+      exposure:
+        include: "*"
+
+
+logging:
+  path: .logs

+ 2 - 0
zen-web/src/main/resources/bootstrap.yml

@@ -1,6 +1,8 @@
 # 服务端口号
 # 服务端口号
 server:
 server:
   port: 11000
   port: 11000
+  servlet:
+    context-path: /
 
 
 spring:
 spring:
   application:
   application:

+ 1 - 0
zen-web/src/main/resources/logback-spring.xml

@@ -187,6 +187,7 @@
     <!--</contextListener>-->
     <!--</contextListener>-->
     <springProfile name="prod">
     <springProfile name="prod">
         <root level="INFO">
         <root level="INFO">
+            <appender-ref ref="CONSOLE"/>
             <appender-ref ref="STDOUT"/>
             <appender-ref ref="STDOUT"/>
             <appender-ref ref="FILEERROR"/>
             <appender-ref ref="FILEERROR"/>
             <appender-ref ref="FILEWARN"/>
             <appender-ref ref="FILEWARN"/>