gaodm 5 年 前
コミット
4e1b12bbd2

+ 1 - 1
src/main/java/com/diagbot/config/OAuth2Configurer.java

@@ -84,7 +84,7 @@ public class OAuth2Configurer extends AuthorizationServerConfigurerAdapter {
         KeyStoreKeyFactory keyStoreKeyFactory = new KeyStoreKeyFactory(new ClassPathResource("diagbot-jwt.jks"), "diagbot123456".toCharArray());
         JwtAccessTokenConverter converter = new JwtAccessTokenConverter();
         converter.setKeyPair(keyStoreKeyFactory.getKeyPair("diagbot-jwt"));
-        log.info("Created JwtTokenEnhancerServer");
+        log.info("Created jwtTokenEnhancerServer success");
         return converter;
     }
 }

+ 1 - 1
src/main/java/com/diagbot/config/ResourceServerConfigurer.java

@@ -76,7 +76,7 @@ public class ResourceServerConfigurer extends ResourceServerConfigurerAdapter {
         //不设置这个会出现 Cannot convert access token to JSON
         converter.setVerifier(new RsaVerifier(publicKey));
         converter.setAccessTokenConverter(customAccessTokenConverter);
-        log.info("Created jwtTokenEnhancerClient");
+        log.info("Created jwtTokenEnhancerClient success");
         return converter;
     }
 }

+ 0 - 20
src/main/java/com/diagbot/web/QcCasesEntryController.java

@@ -1,20 +0,0 @@
-package com.diagbot.web;
-
-
-import org.springframework.web.bind.annotation.RequestMapping;
-
-import org.springframework.stereotype.Controller;
-
-/**
- * <p>
- * 病历条目 前端控制器
- * </p>
- *
- * @author wangfeng
- * @since 2020-04-13
- */
-@Controller
-@RequestMapping("/qc/casesEntry")
-public class QcCasesEntryController {
-
-}

+ 0 - 20
src/main/java/com/diagbot/web/QcresultDetailController.java

@@ -1,20 +0,0 @@
-package com.diagbot.web;
-
-
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-/**
- * <p>
- * 质控评分明细信息
-每次评分增加一条信息,前面所有评分is_deleted全部设置为Y 前端控制器
- * </p>
- *
- * @author zhoutg
- * @since 2020-04-13
- */
-@RestController
-@RequestMapping("/qc/resultDetail")
-public class QcresultDetailController {
-
-}

+ 0 - 20
src/main/java/com/diagbot/web/QcresultInfoController.java

@@ -1,20 +0,0 @@
-package com.diagbot.web;
-
-
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-/**
- * <p>
- * 质控评分结果信息
-每次评分增加一条信息,前面所有评分is_deleted全部设置为Y 前端控制器
- * </p>
- *
- * @author zhoutg
- * @since 2020-04-13
- */
-@RestController
-@RequestMapping("/qc/resultInfo")
-public class QcresultInfoController {
-
-}

+ 1 - 0
src/main/java/com/diagbot/web/SysDictionaryInfoController.java

@@ -28,6 +28,7 @@ import java.util.Map;
 @SuppressWarnings("unchecked")
 @Api(value = "字典信息API", tags = { "字典信息API" })
 @ApiIgnore
+@Deprecated
 public class SysDictionaryInfoController {
 
     @Autowired