Skip to content

Commit 633577a

Browse files
committed
[ TSF Core-Module 분리 및 독립적인 운용이 가능하도록 jar화 ]
[SmartCommit] SP-540 #close #time 1h +review SR @dongmin.lee #comment TSF의 설정 파일을 META-INF로 이동했으며, 독립적인 jar파일로 dependency를 구성하여 프로젝트에 적용할 수 있도록 구조를 변경하고 반영함. [Document] http://www.313.co.kr/confluence/display/WIKI/1.0+jsTree+Service+Framework [IssueTracker] http://www.313.co.kr/jira/browse/SP-540 [VersionControl] https://github.com/jstree/jsTree-Service-Framework-Backend-App [CodeReview] http://www.313.co.kr/fecru/changelog/jsTreeServiceFrameworkBackendAppRepo [BuildManager] http://www.313.co.kr/bamboo/browse/STAN-RC [ArtifactManager] http://www.313.co.kr/nexus/content/repositories/StandardProject/ [CodeAnalysis] http://www.313.co.kr/sonar/dashboard/index/4772 [Docker] https://hub.docker.com/r/313devgrp/jstree-service-framework-backend-app/
1 parent 5206a8c commit 633577a

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

core-module/src/main/resources/META-INF/egovframework/egovProps/globals.properties

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,38 +14,38 @@
1414
#-----------------------------------------------------------------------
1515

1616
# \uC6B4\uC601\uC11C\uBC84 \uD0C0\uC785(WINDOWS, UNIX)
17-
Globals.OsType=${profile.Globals.OsType}
17+
Globals.OsType = UNIX
1818

1919
# DB\uC11C\uBC84 \uD0C0\uC785(mysql, oracle) - datasource \uBC0F sqlMap \uD30C\uC77C \uC9C0\uC815\uC5D0 \uC0AC\uC6A9\uB428
20-
Globals.DbType=${profile.Globals.DbType}
20+
Globals.DbType = oracle
2121

2222
# Database configuration props
23-
database.driver=${profile.database.driver}
24-
database.url=${profile.database.url}
25-
database.username=${profile.database.username}
26-
database.password=${profile.database.password}
23+
database.driver=oracle.jdbc.driver.OracleDriver
24+
database.url=jdbc:oracle:thin:@db.313.co.kr:1521:orcl
25+
database.username=OPERATION_DB
26+
database.password=OPERATION_DB_1234
2727

2828
# hibernate props
29-
hibernate.dialect=${profile.hibernate.dialect}
30-
hibernate.show.sql=${profile.hibernate.show.sql}
31-
hibernate.hbm2ddl.auto=${profile.hibernate.hbm2ddl.auto}
29+
hibernate.dialect=org.hibernate.dialect.Oracle10gDialect
30+
hibernate.show.sql=true
31+
hibernate.hbm2ddl.auto=none
3232

3333
# facebook provider details
34-
facebook.api.key=${profile.facebook.api.key}
35-
facebook.api.secret=${profile.facebook.api.secret}
34+
facebook.api.key=1956209994613987
35+
facebook.api.secret=5a123e748228cb7cbbd1bda69a56ca68
3636

3737
# twitter provider details
38-
twitter.api.key=${profile.twitter.api.key}
39-
twitter.api.secret=${profile.twitter.api.secret}
38+
twitter.api.key=kBcdXhCEQcTE8wz5zxliQCJX6
39+
twitter.api.secret=6qiXptqIR1rHyWirlK1Alrk2FXiccyOk0dc2paZRUyjkJqI1IL
4040

4141
# linkedin provider details
42-
linkedin.api.key=${profile.linkedin.api.key}
43-
linkedin.api.secret=${profile.linkedin.api.secret}
42+
linkedin.api.key=75ileo93c5xmr5
43+
linkedin.api.secret=pUdw0kH9ggnj9QQE
4444

4545
# google provider details
46-
google.api.key=${profile.google.api.key}
47-
google.api.secret=${profile.google.api.secret}
46+
google.api.key=463154592024-iht57o90m3n3f13mk40jddumv22i6nj3.apps.googleusercontent.com
47+
google.api.secret=8l3t8aeJUeyubwarJ_OBtfCd
4848

49-
Globals.fileStorePath=${profile.Globals.fileStorePath}
50-
Globals.SynchrnServerPath=${profile.Globals.SynchrnServerPath}
51-
system.uploadpath=${profile.Globals.uploadpath}
49+
Globals.fileStorePath = /web/upload/File/
50+
Globals.SynchrnServerPath = /web/upload/Synch/
51+
system.uploadpath = /web/upload/

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<properties>
2727
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28-
<project.version>18.12.3</project.version>
28+
<project.version>18.12.4</project.version>
2929
<maven.build.timestamp.format>yyMMdd_HHmm</maven.build.timestamp.format>
3030
<build.time>${maven.build.timestamp}</build.time>
3131
<dependency.locations.enabled>false</dependency.locations.enabled>

web-module/profiles/dev/support.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#-----------------------------------------------------------------------
1515

1616
# \uC6B4\uC601\uC11C\uBC84 \uD0C0\uC785(WINDOWS, UNIX)
17-
profile.Globals.OsType = WINDOWS
17+
profile.Globals.OsType = UNIX
1818

1919
# DB\uC11C\uBC84 \uD0C0\uC785(mysql, oracle) - datasource \uBC0F sqlMap \uD30C\uC77C \uC9C0\uC815\uC5D0 \uC0AC\uC6A9\uB428
2020
profile.Globals.DbType = oracle

0 commit comments

Comments
 (0)