Bläddra i källkod

更新jwt-session配置

tuonina 6 år sedan
förälder
incheckning
27db3cd80b

+ 3 - 0
FRAMEWORK.md

@@ -70,6 +70,9 @@ Jetty 更加轻量化,更符合Spring Cloud 分布式部署;当然,这个
  到目前为止,框架这部分基本上不会有太多更新。目前业务中需要的即时通信相关服务,会单独写一个即时通信服务。
  业务系统通过rabbitmq 消息总线发送消息到 消息推送系统完成这方面的需求。后期会提供相关的接口包。
 
+#### 2018/10/31
+- 文件上传已完成,请查看 fastdfs-client 查看上传案例写法。
+
 ### 后期我的工作计划
 
 - 将继续精简shiro相关配置,直至完全移除;(已完成)

+ 5 - 3
build.gradle

@@ -17,6 +17,8 @@ buildscript {
         shiro_version = '1.4.0'
         pinyin4j_version = '2.5.1'
         rxJavaVersion='2.2.3'
+        jwtVersion = '1.3'
+        authVersion='1.0'
     }
     repositories {
         mavenCentral()
@@ -54,10 +56,10 @@ subprojects {
         mavenCentral()
         jcenter()
         maven {
-            url("https://repo.rdc.aliyun.com/repository/33224-release-ycBLfV")
+            url("https://repo.rdc.aliyun.com/repository/37165-release-a3lssL")
             credentials {
-                username 'TbLzWL'
-                password 'mCl1FI5SVB'
+                username 'Dz38pq'
+                password 'U1oB2RJOJa'
             }
         }
     }

+ 2 - 1
zen-core/build.gradle

@@ -18,5 +18,6 @@ dependencies {
     compile 'io.jsonwebtoken:jjwt-api:0.10.5'
     runtime 'io.jsonwebtoken:jjwt-impl:0.10.5',
             'io.jsonwebtoken:jjwt-jackson:0.10.5'
-    compile("cn.gygxzc.tina:jwt-session:1.2")
+    compile("cn.gygxzc.cloud:jwt-session:$jwtVersion")
+    compile("cn.gygxzc.cloud:tina-auth:$authVersion")
 }

+ 2 - 0
zen-web/src/main/kotlin/cn/gygxzc/envir/MainApplication.kt

@@ -2,6 +2,7 @@ package cn.gygxzc.envir
 
 import cn.gygxzc.cloud.tina.fastdfs.client.EnableFastDFSClient
 import cn.gygxzc.tina.cloud.bus.EnableRabbitMessage
+import cn.gygxzc.tina.cloud.jwt.session.EnableJwtSpringRedisSession
 import org.mybatis.spring.annotation.MapperScan
 import org.springframework.boot.SpringApplication
 import org.springframework.boot.autoconfigure.SpringBootApplication
@@ -17,6 +18,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients
 @EnableFeignClients
 @EnableFastDFSClient
 @EnableRabbitMessage
+@EnableJwtSpringRedisSession
 @SpringBootApplication(scanBasePackages = ["cn.gygxzc.envir", "com.gxzc"])
 @MapperScan(basePackages = ["cn.gygxzc.**.dao", "cn.gygxzc.**.mapper"])
 class MainApplication : SpringBootServletInitializer() {

+ 13 - 0
zen-web/src/main/kotlin/cn/gygxzc/envir/api/test/controller/FeignAuthController.java

@@ -0,0 +1,13 @@
+package cn.gygxzc.envir.api.test.controller;
+
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * Created by niantuo on 2018/11/1.
+ * 服务间调用的测试
+ */
+@RestController
+@RequestMapping("/test/feign")
+public class FeignAuthController {
+}