tuonina преди 6 години
родител
ревизия
fda4ba40d6

+ 2 - 1
build.gradle

@@ -84,7 +84,8 @@ subprojects {
         // SpringBoot Starter
 
         compile('org.springframework.cloud:spring-cloud-config-server')
-        compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
+        compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
+        compile('org.springframework.cloud:spring-cloud-starter-openfeign')
 //
         compile('org.springframework.boot:spring-boot-starter')
         compile('org.springframework.boot:spring-boot-starter-web')

+ 2 - 0
zen-api/src/main/kotlin/cn/gygxzc/envir/config/shiro/ShiroConfig.kt

@@ -149,7 +149,9 @@ class ShiroConfig {
                     "/druid/**" to "anon",
                     "/druid/sql.json" to "anon",
                     "/**/favicon.*" to "anon",
+                    "/eureka*" to "anon",
                     "/eureka/**" to "anon",
+                    "/v1/sys" to "anon",
                     ////////////////////// 静态资源 /////////////////////
                     "/**" to "cors,jwt,authc" // 对于其他未配置的所有url 先设置cors头 再进行登陆判定 最后判定权限
             )

+ 5 - 4
zen-web/src/main/kotlin/cn/gygxzc/envir/MainApplication.kt

@@ -5,16 +5,17 @@ import org.springframework.boot.SpringApplication
 import org.springframework.boot.autoconfigure.SpringBootApplication
 import org.springframework.boot.builder.SpringApplicationBuilder
 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer
+import org.springframework.cloud.client.discovery.EnableDiscoveryClient
 import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer
 
 /**
  * 注解配置
  */
 
-@EnableEurekaServer  //表示该服务为注册中心
-//@EnableDiscoveryClient
-@SpringBootApplication(scanBasePackages = ["com.gxzc","cn.gygxzc"])
-@MapperScan(basePackages = ["com.gxzc","cn.gygxzc"])
+//@EnableEurekaServer  //表示该服务为注册中心
+@EnableDiscoveryClient
+@SpringBootApplication(scanBasePackages = ["com.gxzc", "cn.gygxzc"])
+@MapperScan(basePackages = ["com.gxzc", "cn.gygxzc"])
 class MainApplication : SpringBootServletInitializer() {
     override fun configure(builder: SpringApplicationBuilder?): SpringApplicationBuilder? {
         return builder?.sources(MainApplication::class.java)

+ 23 - 0
zen-web/src/main/kotlin/cn/gygxzc/envir/api/sys/controller/SysController.kt

@@ -0,0 +1,23 @@
+package cn.gygxzc.envir.api.sys.controller
+
+import com.gxzc.zen.common.dto.ResponseDto
+import io.swagger.annotations.Api
+import io.swagger.annotations.ApiOperation
+import org.springframework.web.bind.annotation.GetMapping
+import org.springframework.web.bind.annotation.RequestMapping
+import org.springframework.web.bind.annotation.RestController
+
+/**
+ * Created by niantuo on 2018/9/21.
+ */
+@RestController
+@RequestMapping("/v1/sys")
+@Api("系统相关的信息")
+class SysController {
+
+    @GetMapping
+    @ApiOperation("获取")
+    fun info(): Any {
+        return ResponseDto().data("this is registry server !! ")
+    }
+}

+ 5 - 4
zen-web/src/main/resources/application.yml

@@ -28,12 +28,13 @@ spring:
 eureka:
   instance:
     hostname: localhost
+    prefer-ip-address: true
+    ip-address: 192.168.1.96  # 把自己的ip替换
   client:
-    allow-redirects: false
-    register-with-eureka: false
-    fetch-registry: false
+    register-with-eureka: true
+    fetch-registry: true
     service-url:
-      registry1: http://${eureka.instance.hostname}:${server.port}/eureka/
+      registry1: http://192.168.1.206:11000/eureka/
 
 ---
 spring: