생물자원관,문화원연합회,성신여대 설치 반영
This commit is contained in:
parent
ec3452ed87
commit
9f1b5a4572
@ -103,6 +103,34 @@ public class urpBaseAuthApplication
|
|||||||
System.out.println("############# kordi Env ########################");
|
System.out.println("############# kordi Env ########################");
|
||||||
System.out.println("################################################");
|
System.out.println("################################################");
|
||||||
}
|
}
|
||||||
|
// 2026.04.21 나혁제 헌법재판소 추가
|
||||||
|
else if(activeProfile.equals("ccourt"))
|
||||||
|
{
|
||||||
|
System.out.println("################################################");
|
||||||
|
System.out.println("############# ccourt Env #######################");
|
||||||
|
System.out.println("################################################");
|
||||||
|
}
|
||||||
|
// 2026.04.27 나혁제 문화원연합회 추가
|
||||||
|
else if(activeProfile.equals("kccf"))
|
||||||
|
{
|
||||||
|
System.out.println("################################################");
|
||||||
|
System.out.println("############# kccf Env #########################");
|
||||||
|
System.out.println("################################################");
|
||||||
|
}
|
||||||
|
// 2026.04.28 나혁제 국립생물자원관 추가
|
||||||
|
else if(activeProfile.equals("nibr"))
|
||||||
|
{
|
||||||
|
System.out.println("################################################");
|
||||||
|
System.out.println("############# nibr Env #########################");
|
||||||
|
System.out.println("################################################");
|
||||||
|
}
|
||||||
|
// 2026.04.28 나혁제 성신여대 추가
|
||||||
|
else if(activeProfile.equals("sungshin"))
|
||||||
|
{
|
||||||
|
System.out.println("################################################");
|
||||||
|
System.out.println("############# sungshin Env #####################");
|
||||||
|
System.out.println("################################################");
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
System.out.println("################################################");
|
System.out.println("################################################");
|
||||||
|
|||||||
38
src/main/resources/application-ccourt.yml
Normal file
38
src/main/resources/application-ccourt.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# 현법재판소 설정
|
||||||
|
# Service port
|
||||||
|
server:
|
||||||
|
port: 11000
|
||||||
|
|
||||||
|
# JPA 설정, JSP 설정
|
||||||
|
spring:
|
||||||
|
devtools:
|
||||||
|
livereload:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
# Primary db information
|
||||||
|
primarydb:
|
||||||
|
driverClassName: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
||||||
|
jdbcUrl: jdbc:log4jdbc:mariadb://10.38.101.101:3306/ur_itms_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&rewriteBatchedStatements=true
|
||||||
|
username: g9IwFesTyIloXVpUnfOX0g==
|
||||||
|
password: E4SOtjDqqO79BQERc/eaTw==
|
||||||
|
maximumPoolSize: 35
|
||||||
|
minimumIdle: 2
|
||||||
|
connectionTimeout: 3000
|
||||||
|
idleTimeout: 300000
|
||||||
|
testOnBorrow: true
|
||||||
|
validationQuery: SELECT 1
|
||||||
|
|
||||||
|
# SQL Log 관련 setting
|
||||||
|
log4jdbc:
|
||||||
|
spylogdelegator:
|
||||||
|
name: net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
|
||||||
|
dump:
|
||||||
|
sql:
|
||||||
|
maxlinelength: 0
|
||||||
|
|
||||||
|
logging.level.jdbc.sqlonly: info
|
||||||
|
logging.level.jdbc.sqltiming: false
|
||||||
|
logging.level.jdbc.audit: false
|
||||||
|
logging.level.jdbc.resultset: false
|
||||||
|
logging.level.jdbc.resultsettable: info
|
||||||
|
logging.level.jdbc.connection: false
|
||||||
38
src/main/resources/application-kccf.yml
Normal file
38
src/main/resources/application-kccf.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# 문화원연합회 설정
|
||||||
|
# Service port
|
||||||
|
server:
|
||||||
|
port: 11000
|
||||||
|
|
||||||
|
# JPA 설정, JSP 설정
|
||||||
|
spring:
|
||||||
|
devtools:
|
||||||
|
livereload:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
# Primary db information
|
||||||
|
primarydb:
|
||||||
|
driverClassName: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
||||||
|
jdbcUrl: jdbc:log4jdbc:mariadb://10.10.10.167:3306/ur_itms_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&rewriteBatchedStatements=true
|
||||||
|
username: g9IwFesTyIloXVpUnfOX0g==
|
||||||
|
password: E4SOtjDqqO79BQERc/eaTw==
|
||||||
|
maximumPoolSize: 35
|
||||||
|
minimumIdle: 2
|
||||||
|
connectionTimeout: 3000
|
||||||
|
idleTimeout: 300000
|
||||||
|
testOnBorrow: true
|
||||||
|
validationQuery: SELECT 1
|
||||||
|
|
||||||
|
# SQL Log 관련 setting
|
||||||
|
log4jdbc:
|
||||||
|
spylogdelegator:
|
||||||
|
name: net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
|
||||||
|
dump:
|
||||||
|
sql:
|
||||||
|
maxlinelength: 0
|
||||||
|
|
||||||
|
logging.level.jdbc.sqlonly: info
|
||||||
|
logging.level.jdbc.sqltiming: false
|
||||||
|
logging.level.jdbc.audit: false
|
||||||
|
logging.level.jdbc.resultset: false
|
||||||
|
logging.level.jdbc.resultsettable: info
|
||||||
|
logging.level.jdbc.connection: false
|
||||||
38
src/main/resources/application-nibr.yml
Normal file
38
src/main/resources/application-nibr.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# 국립생물자원관 설정
|
||||||
|
# Service port
|
||||||
|
server:
|
||||||
|
port: 11000
|
||||||
|
|
||||||
|
# JPA 설정, JSP 설정
|
||||||
|
spring:
|
||||||
|
devtools:
|
||||||
|
livereload:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
# Primary db information
|
||||||
|
primarydb:
|
||||||
|
driverClassName: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
||||||
|
jdbcUrl: jdbc:log4jdbc:mariadb://10.101.130.249:43306/ur_itms_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&rewriteBatchedStatements=true
|
||||||
|
username: g9IwFesTyIloXVpUnfOX0g==
|
||||||
|
password: E4SOtjDqqO79BQERc/eaTw==
|
||||||
|
maximumPoolSize: 35
|
||||||
|
minimumIdle: 2
|
||||||
|
connectionTimeout: 3000
|
||||||
|
idleTimeout: 300000
|
||||||
|
testOnBorrow: true
|
||||||
|
validationQuery: SELECT 1
|
||||||
|
|
||||||
|
# SQL Log 관련 setting
|
||||||
|
log4jdbc:
|
||||||
|
spylogdelegator:
|
||||||
|
name: net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
|
||||||
|
dump:
|
||||||
|
sql:
|
||||||
|
maxlinelength: 0
|
||||||
|
|
||||||
|
logging.level.jdbc.sqlonly: info
|
||||||
|
logging.level.jdbc.sqltiming: false
|
||||||
|
logging.level.jdbc.audit: false
|
||||||
|
logging.level.jdbc.resultset: false
|
||||||
|
logging.level.jdbc.resultsettable: info
|
||||||
|
logging.level.jdbc.connection: false
|
||||||
38
src/main/resources/application-sungshin.yml
Normal file
38
src/main/resources/application-sungshin.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# 현법재판소 설정
|
||||||
|
# Service port
|
||||||
|
server:
|
||||||
|
port: 11000
|
||||||
|
|
||||||
|
# JPA 설정, JSP 설정
|
||||||
|
spring:
|
||||||
|
devtools:
|
||||||
|
livereload:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
# Primary db information
|
||||||
|
primarydb:
|
||||||
|
driverClassName: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
||||||
|
jdbcUrl: jdbc:log4jdbc:mariadb://172.16.25.167:3306/ur_itms_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&rewriteBatchedStatements=true
|
||||||
|
username: g9IwFesTyIloXVpUnfOX0g==
|
||||||
|
password: E4SOtjDqqO79BQERc/eaTw==
|
||||||
|
maximumPoolSize: 35
|
||||||
|
minimumIdle: 2
|
||||||
|
connectionTimeout: 3000
|
||||||
|
idleTimeout: 300000
|
||||||
|
testOnBorrow: true
|
||||||
|
validationQuery: SELECT 1
|
||||||
|
|
||||||
|
# SQL Log 관련 setting
|
||||||
|
log4jdbc:
|
||||||
|
spylogdelegator:
|
||||||
|
name: net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
|
||||||
|
dump:
|
||||||
|
sql:
|
||||||
|
maxlinelength: 0
|
||||||
|
|
||||||
|
logging.level.jdbc.sqlonly: info
|
||||||
|
logging.level.jdbc.sqltiming: false
|
||||||
|
logging.level.jdbc.audit: false
|
||||||
|
logging.level.jdbc.resultset: false
|
||||||
|
logging.level.jdbc.resultsettable: info
|
||||||
|
logging.level.jdbc.connection: false
|
||||||
Loading…
Reference in New Issue
Block a user