
--- src/main/java/com/takensoft/cms/main/web/MainController.java
+++ src/main/java/com/takensoft/cms/main/web/MainController.java
... | ... | @@ -67,7 +67,7 @@ |
67 | 67 |
} |
68 | 68 |
responseData.setStatus(HttpStatus.OK.value()); |
69 | 69 |
responseData.setStatusText(HttpStatus.OK); |
70 |
- responseData.setMessage("정상적으로 처리되었습니다."); |
|
70 |
+ responseData.setMessage("캐시가 초기화 되었습니다."); |
|
71 | 71 |
return new ResponseEntity<>(responseData, headers, HttpStatus.OK); |
72 | 72 |
} catch (Exception e) { |
73 | 73 |
responseData.setStatus(HttpStatus.INTERNAL_SERVER_ERROR.value()); |
... | ... | @@ -75,19 +75,5 @@ |
75 | 75 |
responseData.setMessage("캐시 초기화에 실패했습니다."); |
76 | 76 |
return new ResponseEntity<>(responseData, headers, HttpStatus.INTERNAL_SERVER_ERROR); |
77 | 77 |
} |
78 |
- } |
|
79 |
- |
|
80 |
- /** |
|
81 |
- * @param |
|
82 |
- * @return ResponseEntity - 기업상담신청 알람 응답 객체 |
|
83 |
- * |
|
84 |
- * 관리자 메인페이지 기업상담신청 알람 |
|
85 |
- */ |
|
86 |
- @PostMapping("/findAplyToastsProc.json") |
|
87 |
- public ResponseEntity<?> findAplyToastsProc(){ |
|
88 |
- List<HashMap<String, Object>> result = mainService.findAplyToasts(); |
|
89 |
- |
|
90 |
- // 응답 처리 |
|
91 |
- return resUtil.successRes(result, MessageCode.COMMON_SUCCESS); |
|
92 | 78 |
} |
93 | 79 |
}(파일 끝에 줄바꿈 문자 없음) |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?