From 55b227d4bc75374bca89f413750d236669571a70 Mon Sep 17 00:00:00 2001
From: fengxiang <110431245@qq.com>
Date: Wed, 27 Jun 2018 09:28:29 +0800
Subject: [PATCH] 大屏布局

---
 src/main/java/com/moral/security/config/JwtSettings.java |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/moral/security/config/JwtSettings.java b/src/main/java/com/moral/security/config/JwtSettings.java
index 7af538e..fc96aac 100644
--- a/src/main/java/com/moral/security/config/JwtSettings.java
+++ b/src/main/java/com/moral/security/config/JwtSettings.java
@@ -2,14 +2,12 @@
 
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.context.annotation.Configuration;
-import org.springframework.stereotype.Component;
 
-@Component
 @Configuration
 @ConfigurationProperties(prefix = "moral.security.jwt")
 public class JwtSettings {
     /**
-     * {@link com.moral.security.model.token.JwtToken} will expire after this time.
+     * {@link JwtToken} will expire after this time.
      */
     private Integer tokenExpirationTime;
 
@@ -19,12 +17,12 @@
     private String tokenIssuer;
     
     /**
-     * Key is used to sign {@link com.moral.security.model.token.JwtToken}.
+     * Key is used to sign {@link JwtToken}.
      */
     private String tokenSigningKey;
     
     /**
-     * {@link com.moral.security.model.token.JwtToken} can be refreshed during this timeframe.
+     * {@link JwtToken} can be refreshed during this timeframe.
      */
     private Integer refreshTokenExpTime;
     

--
Gitblit v1.8.0