개발 환경 설정 파일 제거 및 빌드 예외 처리 추가

This commit is contained in:
Rinjae
2026-02-25 19:22:15 +09:00
parent 7c30fa9fd9
commit 5d36288c53
8 changed files with 16 additions and 189 deletions
+4
View File
@@ -105,3 +105,7 @@ TODO.txt
*.report.md
*.claude.md
diff
*rinjae*
src/main/resources/application-dev.yml
src/main/resources/application-gf63.yml
+9
View File
@@ -137,6 +137,15 @@ compileJava {
options.compilerArgs += ["-parameters"]
options.encoding = 'UTF-8'
}
processResources {
exclude { details ->
details.file.name.startsWith('application-') &&
details.file.name.endsWith('.yml') &&
!(details.file.name in ['application-stage.yml', 'application-prod.yml'])
}
}
test {
useJUnitPlatform()
enabled = true
-52
View File
@@ -1,52 +0,0 @@
spring:
jta:
enabled: true
config:
activate:
on-profile: dev
jpa:
properties:
hibernate:
show_sql: false
format_sql: true
use_sql_comments: true
devtools:
restart:
enabled: false
additional-exclude: logback*.xml
livereload:
enabled: true
thymeleaf:
cache: false
ems:
datasource:
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/PAPM
driver-class-name: oracle.jdbc.OracleDriver
username: EMSAPP
password: EMSAPP123!
gateway:
datasource:
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/PAPM
driver-class-name: oracle.jdbc.OracleDriver
username: AGWAPP
password: AGWAPP123!
portal:
auth-virtual-code: 654321
test-auth-notice-enabled: true
proxy:
targets:
stg: http://localhost:10000/monitoring
prod: http://localhost:10000/monitoring
# stg: http://inter-ndapiap01.k-bank.com:7090/monitoring
# prod: http://inter-ndapiap01.k-bank.com:7090/monitoring
timeout:
connect: 5000
read: 5000
-61
View File
@@ -1,61 +0,0 @@
server.port: '30200'
spring:
jta:
enabled: true
web:
resources:
cache:
period: 0 # 캐시 비활성화 (개발 환경)
cachecontrol:
max-age: 0
must-revalidate: true
no-cache: true
jpa:
properties:
hibernate:
show_sql: false
format_sql: true
use_sql_comments: true
devtools:
restart:
enabled: false
additional-exclude: logback*.xml
livereload:
enabled: true
thymeleaf:
cache: false
ems:
datasource:
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/PAPM
driver-class-name: oracle.jdbc.OracleDriver
username: EMSAPP
password: EMSAPP123!
gateway:
datasource:
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/PAPM
driver-class-name: oracle.jdbc.OracleDriver
username: AGWAPP
password: AGWAPP123!
portal:
logging:
log-path: d:/kjb-logs
# auth-virtual-code 제거 - gf63는 랜덤 인증번호 사용
test-auth-notice-enabled: true
proxy:
targets:
stg: http://localhost:10000/monitoring
prod: http://localhost:10000/monitoring
# stg: http://inter-ndapiap01.k-bank.com:7090/monitoring
# prod: http://inter-ndapiap01.k-bank.com:7090/monitoring
timeout:
connect: 5000
read: 5000
@@ -1,60 +0,0 @@
server.port: '30200'
spring:
jta:
enabled: true
web:
resources:
cache:
period: 0 # 캐시 비활성화 (개발 환경)
cachecontrol:
max-age: 0
must-revalidate: true
no-cache: true
jpa:
properties:
hibernate:
show_sql: false
format_sql: true
use_sql_comments: true
devtools:
restart:
enabled: false
livereload:
enabled: true
thymeleaf:
cache: false
ems:
datasource:
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
jdbc-url: jdbc:oracle:thin:@//10.14.8.30:11521/ELINKDB
driver-class-name: oracle.jdbc.OracleDriver
username: EMSAPP
password: EMSAPP123!
gateway:
datasource:
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
jdbc-url: jdbc:oracle:thin:@//10.14.8.30:11521/ELINKDB
driver-class-name: oracle.jdbc.OracleDriver
username: AGWAPP
password: AGWAPP123!
portal:
logging:
log-path: C:\eactive\logs
auth-virtual-code: 654321
test-auth-notice-enabled: true
proxy:
targets:
stg: http://localhost:10000/monitoring
prod: http://localhost:10000/monitoring
# stg: http://inter-ndapiap01.k-bank.com:7090/monitoring
# prod: http://inter-ndapiap01.k-bank.com:7090/monitoring
timeout:
connect: 5000
read: 5000
+1 -9
View File
@@ -26,12 +26,4 @@ spring:
cache: false
portal:
test-auth-notice-enabled: false # prod 환경: UI 안내 미표시
proxy:
targets:
stg: http://inter-dapiwas01.k-bank.com:7090/monitoring
prod: http://inter-apiwas00.k-bank.com:7090/monitoring
timeout:
connect: 5000
read: 5000
test-auth-notice-enabled: false # prod 환경: UI 안내 미표시
-7
View File
@@ -45,10 +45,3 @@ gateway:
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
entity-package: com.eactive.eai.data.entity.onl
#proxy:
# targets:
# stg: http://inter-dapiwas01.k-bank.com:7090/monitoring
# prod: http://inter-dapiwas01.k-bank.com:7090/monitoring
# timeout:
# connect: 5000
# read: 5000
+2
View File
@@ -60,6 +60,7 @@ ems:
datasource:
jndi-name: jdbc/dsOBP_EMS
schema: EMSADM
driver-class-name: oracle.jdbc.OracleDriver
hibernate-dialect: org.hibernate.dialect.Oracle12cDialect
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
@@ -69,6 +70,7 @@ gateway:
datasource:
jndi-name: jdbc/dsOBP_AGW
schema: AGWADM
driver-class-name: oracle.jdbc.OracleDriver
hibernate-dialect: org.hibernate.dialect.Oracle12cDialect
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy