개발 환경 설정 파일 제거 및 빌드 예외 처리 추가
This commit is contained in:
@@ -105,3 +105,7 @@ TODO.txt
|
|||||||
*.report.md
|
*.report.md
|
||||||
*.claude.md
|
*.claude.md
|
||||||
diff
|
diff
|
||||||
|
|
||||||
|
*rinjae*
|
||||||
|
src/main/resources/application-dev.yml
|
||||||
|
src/main/resources/application-gf63.yml
|
||||||
@@ -137,6 +137,15 @@ compileJava {
|
|||||||
options.compilerArgs += ["-parameters"]
|
options.compilerArgs += ["-parameters"]
|
||||||
options.encoding = 'UTF-8'
|
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 {
|
test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
enabled = true
|
enabled = true
|
||||||
|
|||||||
@@ -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
|
|
||||||
@@ -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
|
|
||||||
@@ -26,12 +26,4 @@ spring:
|
|||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
portal:
|
portal:
|
||||||
test-auth-notice-enabled: false # prod 환경: UI 안내 미표시
|
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
|
|
||||||
@@ -45,10 +45,3 @@ gateway:
|
|||||||
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
|
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
|
||||||
entity-package: com.eactive.eai.data.entity.onl
|
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
|
|
||||||
@@ -60,6 +60,7 @@ ems:
|
|||||||
datasource:
|
datasource:
|
||||||
jndi-name: jdbc/dsOBP_EMS
|
jndi-name: jdbc/dsOBP_EMS
|
||||||
schema: EMSADM
|
schema: EMSADM
|
||||||
|
driver-class-name: oracle.jdbc.OracleDriver
|
||||||
|
|
||||||
hibernate-dialect: org.hibernate.dialect.Oracle12cDialect
|
hibernate-dialect: org.hibernate.dialect.Oracle12cDialect
|
||||||
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
|
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
|
||||||
@@ -69,6 +70,7 @@ gateway:
|
|||||||
datasource:
|
datasource:
|
||||||
jndi-name: jdbc/dsOBP_AGW
|
jndi-name: jdbc/dsOBP_AGW
|
||||||
schema: AGWADM
|
schema: AGWADM
|
||||||
|
driver-class-name: oracle.jdbc.OracleDriver
|
||||||
|
|
||||||
hibernate-dialect: org.hibernate.dialect.Oracle12cDialect
|
hibernate-dialect: org.hibernate.dialect.Oracle12cDialect
|
||||||
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
|
hibernate-physical-naming-strategy: com.eactive.apim.portal.common.entity.CustomPhysicalNamingStrategy
|
||||||
|
|||||||
Reference in New Issue
Block a user