Browse Source

修复静态类不能调用remote方法的bug.(remote bean无法注入到spring容器中) 有多种解决方式

NorthLan 6 years ago
parent
commit
cef94cfb0b

+ 2 - 2
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/impl/SysPermissionServiceImpl.kt

@@ -28,10 +28,10 @@ import org.springframework.stereotype.Service
 @Suppress("UNCHECKED_CAST")
 class SysPermissionServiceImpl : ISysPermissionService {
 
-    @Reference(application = "zen-sys", version = "1.0")
+    @Reference(version = "1.0")
     private val sysResourceService: RResourceService? = null
 
-    @Reference(application = "zen-sys", version = "1.0")
+    @Reference(version = "1.0")
     private val roleService: RRoleService? = null
 
     override fun getAllSysPermission(): MutableList<ZenPermission> {

+ 9 - 1
zen-api/src/main/kotlin/com/gxzc/zen/api/util/SysDictUtil.kt

@@ -11,7 +11,15 @@ import com.gxzc.zen.rpc.api.sys.RDictService
  * @url https://noahlan.com
  */
 object SysDictUtil {
-    private var dictValueService = SpringContextHolder.getBean(RDictService::class.java)
+//    private var dictValueService: RDictService? = null
+//        get() {
+//            if (field == null) {
+//                field = RpcUtil.getReference(RDictService::class.java,  "1.0")
+//            }
+//            return field
+//        }
+
+    private var dictValueService: RDictService? = null
         get() {
             if (field == null) {
                 field = SpringContextHolder.getBean(RDictService::class.java)

+ 26 - 0
zen-api/src/main/kotlin/com/gxzc/zen/rpc/util/RpcUtil.kt

@@ -0,0 +1,26 @@
+package com.gxzc.zen.rpc.util
+
+import com.alibaba.dubbo.config.spring.ReferenceBean
+import org.slf4j.LoggerFactory
+
+/**
+ *
+ * @author NorthLan
+ * @date 2018/6/22
+ * @url https://noahlan.com
+ */
+object RpcUtil {
+    private val logger = LoggerFactory.getLogger(RpcUtil::class.java)
+
+    fun <T> getReference(interfaceClass: Class<T>, version: String): T? {
+        return try {
+            ReferenceBean<T>().apply {
+                setInterface(interfaceClass)
+                setVersion(version)
+            }.get()
+        } catch (e: Throwable) {
+            logger.warn("getReferenceBean [$interfaceClass] error: ${e.message}")
+            null
+        }
+    }
+}

+ 2 - 0
zen-web/src/main/kotlin/com/gxzc/zen/MainApplication.kt

@@ -5,11 +5,13 @@ import org.springframework.boot.autoconfigure.SpringBootApplication
 import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
 import org.springframework.boot.builder.SpringApplicationBuilder
 import org.springframework.boot.web.support.SpringBootServletInitializer
+import org.springframework.context.annotation.ImportResource
 
 
 @SpringBootApplication(exclude = [RedisAutoConfiguration::class])
 //@EnableDubboConfiguration
 //@ImportResource(locations = ["classpath:application-shiro.xml"])
+@ImportResource(locations = ["classpath:dubbo/*.xml"])
 //@EnableRedisHttpSession
 class MainApplication : SpringBootServletInitializer() {
     override fun configure(builder: SpringApplicationBuilder?): SpringApplicationBuilder? {

+ 2 - 1
zen-web/src/main/kotlin/com/gxzc/zen/web/sys/controller/TestController.kt

@@ -1,5 +1,6 @@
 package com.gxzc.zen.web.sys.controller
 
+import com.gxzc.zen.api.util.SysDictUtil
 import com.gxzc.zen.common.base.BaseController
 import org.springframework.http.ResponseEntity
 import org.springframework.web.bind.annotation.GetMapping
@@ -18,6 +19,6 @@ import org.springframework.web.bind.annotation.RestController
 class TestController : BaseController() {
     @GetMapping("a")
     fun get(): ResponseEntity<*> {
-        return ResponseEntity.ok("1")
+        return ResponseEntity.ok(SysDictUtil.getAll())
     }
 }

+ 1 - 1
zen-web/src/main/resources/application.yml

@@ -19,7 +19,7 @@ spring:
     name: Zen
 
 server:
-  port: 10000
+  port: 8868
 
 zen:
   swagger-open: true # swagger-ui是否开启

+ 11 - 0
zen-web/src/main/resources/dubbo/dubbo-consumer.xml

@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans
+    http://www.springframework.org/schema/beans/spring-beans.xsd
+    http://code.alibabatech.com/schema/dubbo
+    http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
+
+    <dubbo:reference id="rDictService" interface="com.gxzc.zen.rpc.api.sys.RDictService" version="1.0" />
+</beans>