--- pom.xml
+++ pom.xml
... | ... | @@ -54,6 +54,12 @@ |
54 | 54 |
<dependency> |
55 | 55 |
<groupId>org.springframework.boot</groupId> |
56 | 56 |
<artifactId>spring-boot-starter-web</artifactId> |
57 |
+ <exclusions> |
|
58 |
+ <exclusion> |
|
59 |
+ <groupId>org.springframework.boot</groupId> |
|
60 |
+ <artifactId>spring-boot-starter-logging</artifactId> |
|
61 |
+ </exclusion> |
|
62 |
+ </exclusions> |
|
57 | 63 |
</dependency> |
58 | 64 |
<dependency> |
59 | 65 |
<groupId>org.springframework.boot</groupId> |
--- src/main/java/com/takensoft/portal/entDscsnAply/service/Impl/EntDscsnAplyServiceImpl.java
+++ src/main/java/com/takensoft/portal/entDscsnAply/service/Impl/EntDscsnAplyServiceImpl.java
... | ... | @@ -84,11 +84,11 @@ |
84 | 84 |
int insertResult = entDscsnAplyDAO.entDscsnAplyInsert(entDscsnAplyVO); |
85 | 85 |
|
86 | 86 |
// 기업 상담 등록 시 문자 메시지 발송 |
87 |
-// Map<String, Object> umsResult = umsService.save(); |
|
87 |
+ Map<String, Object> umsResult = umsService.save(); |
|
88 | 88 |
|
89 | 89 |
// 결과 반환 |
90 | 90 |
result.put("insertResult", insertResult); |
91 |
-// result.put("umsResult", umsResult); |
|
91 |
+ result.put("umsResult", umsResult); |
|
92 | 92 |
return result; |
93 | 93 |
} |
94 | 94 |
|
--- src/main/java/com/takensoft/ums/service/Impl/UmsServiceImpl.java
+++ src/main/java/com/takensoft/ums/service/Impl/UmsServiceImpl.java
... | ... | @@ -45,7 +45,6 @@ |
45 | 45 |
umsVO.setCallingNum("054-639-6161"); // 회신번호 |
46 | 46 |
umsVO.setPhoneNum(admMbrDTO.getMblTelno()); // 슈퍼 관리자 전화번호 가져오기 |
47 | 47 |
|
48 |
- |
|
49 | 48 |
result.put("status", umsDAO.save(umsVO)); |
50 | 49 |
return result; |
51 | 50 |
} |
--- src/main/java/com/takensoft/ums/service/UmsService.java
+++ src/main/java/com/takensoft/ums/service/UmsService.java
... | ... | @@ -13,4 +13,4 @@ |
13 | 13 |
public Map<String, Object> save() throws Exception; |
14 | 14 |
|
15 | 15 |
public Map<String, Object> findAll() throws Exception; |
16 |
-} |
|
16 |
+}(파일 끝에 줄바꿈 문자 없음) |
--- src/main/java/com/takensoft/ums/web/UmsController.java
+++ src/main/java/com/takensoft/ums/web/UmsController.java
... | ... | @@ -46,4 +46,4 @@ |
46 | 46 |
responseData.setData(result); |
47 | 47 |
return new ResponseEntity<>(responseData, headers, HttpStatus.OK); |
48 | 48 |
} |
49 |
-} |
|
49 |
+}(파일 끝에 줄바꿈 문자 없음) |
--- src/main/resources/application.yml
+++ src/main/resources/application.yml
... | ... | @@ -40,13 +40,12 @@ |
40 | 40 |
# username: c##test1 |
41 | 41 |
# password: 1234 |
42 | 42 |
|
43 |
-# # 오라클 설정 |
|
44 |
-# ums: |
|
45 |
-# datasource: |
|
46 |
-# driver-class-name: oracle.jdbc.OracleDriver |
|
47 |
-# jdbc-url: jdbc:oracle:thin:@111.6.1.32:1521:ora10 |
|
48 |
-# username: mono_customer |
|
49 |
-# password: mono_customer |
|
43 |
+ ums: |
|
44 |
+ datasource: |
|
45 |
+ driver-class-name: oracle.jdbc.OracleDriver |
|
46 |
+ jdbc-url: jdbc:oracle:thin:@111.6.1.32:1521:ora10 |
|
47 |
+ username: mono_customer |
|
48 |
+ password: mono_customer |
|
50 | 49 |
|
51 | 50 |
sql: |
52 | 51 |
init: |
... | ... | @@ -106,8 +105,4 @@ |
106 | 105 |
|
107 | 106 |
file: |
108 | 107 |
file-upload-path: /fileUpload/ |
109 |
- edit-file-upload-path: /editFileUpload/ |
|
110 |
- |
|
111 |
-logging: |
|
112 |
- level: |
|
113 |
- root: error(파일 끝에 줄바꿈 문자 없음) |
|
108 |
+ edit-file-upload-path: /editFileUpload/(파일 끝에 줄바꿈 문자 없음) |
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?