Skip to content

Commit ce51dcc

Browse files
committed
[BT] SP-474 #close #time 1h #comment standard-web 스타트
[RV] +review SR @admin
1 parent 9e31749 commit ce51dcc

File tree

7 files changed

+387
-27
lines changed

7 files changed

+387
-27
lines changed

.idea/sonarIssues.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

development-project/project-standard/standard-web/src/main/resources/application.properties

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
#-----------------------------------------------------------------------
2+
#
3+
# globals.properties : \uc2dc\uc2a4\ud15c
4+
#
5+
#-----------------------------------------------------------------------
6+
# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4.
7+
# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5
8+
# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5
9+
# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9)
10+
# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428)
11+
# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/'
12+
# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9
13+
# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83
14+
#-----------------------------------------------------------------------
15+
16+
# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX)
17+
Globals.OsType = UNIX
18+
19+
# DB\uc11c\ubc84 \ud0c0\uc785(mysql, oracle) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428
20+
Globals.DbType = oracle
21+
22+
# \uad8c\ud55c \uc778\uc99d\ubc29\uc2dd(session, security) - \uc0ac\uc6a9\uc790\uc758 \ub85c\uadf8\uc778\uc2dc \uc778\uc99d \ubc29\uc2dd\uc744 \uacb0\uc815\ud568
23+
# session : \uc138\uc158 \ubc29\uc2dd\uc73c\ub85c \uc0ac\uc6a9\uc790 \uad8c\ud55c\uc744 \uc778\uc99d\ud568
24+
# security : spring security \ubc29\uc2dd\uc73c\ub85c \uc0ac\uc6a9\uc790 \uad8c\ud55c\uc744 \uc778\uc99d\ud568
25+
Globals.Auth = security
26+
27+
# \uc704\uc800\ub4dc \uc0ac\uc6a9\uc2dc \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uad00\ub828 \uc124\uc815\uc744 \ubd88\ub7ec\uc634
28+
#mysql
29+
Globals.mysql.DriverClassName=net.sf.log4jdbc.DriverSpy
30+
Globals.mysql.Url=jdbc:log4jdbc:mysql://127.0.0.1:3336/com
31+
Globals.mysql.UserName = root
32+
Globals.mysql.Password =
33+
34+
#oracle
35+
Globals.oracle.DriverClassName=oracle.jdbc.driver.OracleDriver
36+
Globals.oracle.Url=jdbc:oracle:thin:@db.313.co.kr:1521:orcl
37+
Globals.oracle.UserName = OPERATION_DB
38+
Globals.oracle.Password = OPERATION_DB_1234
39+
40+
#altibase
41+
Globals.altibase.DriverClassName=Altibase.jdbc.driver.AltibaseDriver
42+
Globals.altibase.Url=jdbc:Altibase://127.0.0.1:20300/mydb?encoding=UTF-8
43+
Globals.altibase.UserName = root
44+
Globals.altibase.Password =
45+
46+
#tibero
47+
Globals.tibero.DriverClassName=com.tmax.tibero.jdbc.TbDriver
48+
Globals.tibero.Url=jdbc:tibero:thin:@127.0.0.1:8629:tibero
49+
Globals.tibero.UserName = root
50+
Globals.tibero.Password =
51+
52+
#cubrid
53+
Globals.cubrid.DriverClassName=cubrid.jdbc.driver.CUBRIDDriver
54+
Globals.cubrid.Url=jdbc:cubrid:127.0.0.1:30000:com:::?charset=utf-8
55+
Globals.cubrid.UserName = root
56+
Globals.cubrid.Password =
57+
58+
# MainPage Setting
59+
Globals.MainPage = /EgovContent.do
60+
61+
#\ud1b5\ud569\uba54\uc778\uba54\ub274
62+
#Globals.MainPage = /sym/mnu/mpm/EgovMainMenuHome.do
63+
64+
# G4C \uc5f0\uacb0\uc6a9 IP (localhost)
65+
#Globals.LocalIp = 127.0.0.2
66+
67+
# \ud658\uacbd\ud30c\uc77c \uc704\uce58
68+
Globals.ShellFilePath = globals.properties
69+
Globals.ServerConfPath = conf/server.properties
70+
Globals.ClientConfPath = conf/client.properties
71+
Globals.FileFormatPath = conf/format.properties
72+
Globals.GPKIConfPath = conf/gpki.properties
73+
Globals.ConfPath = conf
74+
Globals.MailRequestPath = mail/request/
75+
Globals.MailRResponsePath = mail/response/
76+
Globals.SMEConfigPath = conf/SMEConfig.properties
77+
78+
# \ud658\uacbd\ud30c\uc77c \uc704\uce58 (jeus)
79+
#Globals.ShellFilePath = globals.properties
80+
#Globals.ServerConfPath = conf/server.properties
81+
#Globals.ClientConfPath = conf/client.properties
82+
#Globals.FileFormatPath = conf/format.properties
83+
#Globals.GPKIConfPath = conf/gpki.properties
84+
#Globals.ConfPath = conf
85+
#Globals.fileStorePath =
86+
#Globals.MailRequestPath = mail/request/
87+
#Globals.MailRResponsePath = mail/response/
88+
#Globals.SMEConfigPath = conf/SMEConfig.properties
89+
#Globals.SynchrnServerPath = tmp/upload/
90+
91+
# WINDOWS\uc6a9 \uc258\ud30c\uc77c \uc815\ubcf4
92+
SHELL.WINDOWS.getHostName = prg/sh_001.bat
93+
SHELL.WINDOWS.getDrctryByOwner = prg/getDrctryByOwner.bat
94+
SHELL.WINDOWS.getDrctryOwner = prg/getDrctryOwner.bat
95+
SHELL.WINDOWS.moveDrctry = prg/moveDrctry.bat
96+
SHELL.WINDOWS.compileSchema = prg/compileSchema.bat
97+
SHELL.WINDOWS.getDiskAttrb = prg/getDiskAttrb.bat
98+
SHELL.WINDOWS.getDiskCpcty = prg/getDiskCpcty.bat
99+
SHELL.WINDOWS.getDiskExst = prg/getDiskExst.bat
100+
101+
# UNIX\uc6a9 \uc258\ud30c\uc77c \uc815\ubcf4 - \uac1c\ubc1cwas jeus\uc5d0\uc11c \uc0ac\uc6a9\ud560\ub54c \uae30\uc900
102+
SHELL.UNIX.getHostName = prg/sh_001.sh
103+
SHELL.UNIX.getDrctryByOwner = prg/getDrctryByOwner.sh
104+
SHELL.UNIX.getDrctryOwner = prg/getDrctryOwner.sh
105+
SHELL.UNIX.getDrctryAccess = prg/getDrctryAccess.sh
106+
SHELL.UNIX.getMountLc = prg/getMountLc.sh
107+
SHELL.UNIX.getDiskName = prg/getNetWorkInfo.sh
108+
SHELL.UNIX.moveDrctry = prg/moveDrctry.sh
109+
SHELL.UNIX.compileSchema = prg/compileSchema.sh
110+
SHELL.UNIX.getDiskAttrb = prg/getDiskAttrb.sh
111+
SHELL.UNIX.getDiskCpcty = prg/getDiskCpcty.sh
112+
SHELL.UNIX.getDiskExst = prg/getDiskExst.sh
113+
SHELL.UNIX.getProcInfo = prg/getProcInfo.sh
114+
115+
# LINUX\uc6a9 \uc258\ud30c\uc77c \uc815\ubcf4
116+
117+
# \uc5f0\uacc4
118+
# \uae30\uad00\ucf54\ub4dc\uc218\uc2e0\uc6a9(\uacbd\ub85c \uc124\uc815\uc740 \ubc18\ub4dc\uc2dc \uc808\ub300\uacbd\ub85c\ub97c \uc0ac\uc6a9\ud574\uc57c\ud568.)
119+
CNTC.INSTTCODE.DIR.rcv = D:/tmp/test/rcv/
120+
CNTC.INSTTCODE.DIR.rcvold = D:/tmp/test/rcvold/
121+
CNTC.INSTTCODE.DIR.bin = D:/tmp/test/bin/
122+
123+
CNTC.INSTTCODE.CMD.edircv = gcc_edircv.bat
124+
CNTC.INSTTCODE.CMD.edircvmsg = gcc_edircvmsg.bat
125+
126+
CNTC.INSTTCODE.INFO.userid = USERID
127+
CNTC.INSTTCODE.INFO.userpw = ******
128+
129+
# \ud30c\uc77c \uc5c5\ub85c\ub4dc \uacbd\ub85c(\uacbd\ub85c \uc124\uc815\uc740 \ubc18\ub4dc\uc2dc \uc808\ub300\uacbd\ub85c\ub97c \uc0ac\uc6a9\ud574\uc57c\ud568, \uacbd\ub85c \ub4a4\uc5d0 /\ub97c \ubd99\uc5ec \uc8fc\uc5b4\uc57c\ud568.)
130+
Globals.fileStorePath = C:/egovframework/upload/
131+
132+
# \ud30c\uc77c \ub3d9\uae30\ud654 \ucef4\ud3ec\ub10c\ud2b8\uc5d0\uc11c \uc0ac\uc6a9\ud560 \ud30c\uc77c \uc5c5\ub85c\ub4dc \uacbd\ub85c(\uacbd\ub85c \uc124\uc815\uc740 \ubc18\ub4dc\uc2dc \uc808\ub300\uacbd\ub85c\ub97c \uc0ac\uc6a9\ud574\uc57c\ud568, \uacbd\ub85c \ub4a4\uc5d0 /\ub97c \ubd99\uc5ec \uc8fc\uc5b4\uc57c\ud568.)
133+
Globals.SynchrnServerPath = C:/egovframework/upload/Synch/
134+
135+
# for JFile properties
136+
system.uploadpath = C:/egovframework/upload/
137+
no.image.url = /resources/jfile/swfupload/images/no_img.gif
138+
ftp.server.ip = 127.0.0.1
139+
ftp.user.id = test
140+
ftp.user.password = test
141+
142+
# Social(Facebook, Oauth \ucef4\ud3ec\ub10c\ud2b8 \uc0ac\uc6a9\uc2dc \ud65c\uc6a9)
143+
facebook.appId =
144+
facebook.appSecret =
145+
twitter.consumerKey =
146+
twitter.consumerSecret =
147+
148+
#LDAP\uc870\uc9c1\ub3c4\uad00\ub9ac \ucef4\ud3ec\ub10c\ud2b8 \uc0ac\uc6a9\uc2dc LDAP\uc11c\ubc84\uc124\uc815\uc815\ubcf4 \ud544\uc694
149+
ldap.url = ldap://localhost:10389
150+
ldap.rootDn = c=kr
151+
ldap.username = uid=admin,ou=system
152+
ldap.password = secret
153+
154+
##
155+
# Database configuration props
156+
database.driver=${database.driver}
157+
database.url=${database.url}
158+
database.username=${database.username}
159+
database.password=${database.password}
160+
161+
# hibernate props
162+
hibernate.dialect=${hibernate.dialect}
163+
hibernate.show.sql=${hibernate.show.sql}
164+
hibernate.hbm2ddl.auto=${hibernate.hbm2ddl.auto}
165+
166+
# facebook provider details
167+
facebook.api.key=${facebook.api.key}
168+
facebook.api.secret=${facebook.api.secret}
169+
170+
# twitter provider details
171+
twitter.api.key=${twitter.api.key}
172+
twitter.api.secret=${twitter.api.secret}
173+
174+
# linkedin provider details
175+
linkedin.api.key=${linkedin.api.key}
176+
linkedin.api.secret=${linkedin.api.secret}
177+
178+
# google provider details
179+
google.api.key=${google.api.key}
180+
google.api.secret=${google.api.secret}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="false" monitoring="autodetect" dynamicConfig="true">
2+
<defaultCache
3+
name="defaut"
4+
maxElementsInMemory="10000"
5+
eternal="false"
6+
timeToIdleSeconds="120"
7+
timeToLiveSeconds="120"
8+
overflowToDisk="false"
9+
diskPersistent="false"
10+
memoryStoreEvictionPolicy="LRU"
11+
/>
12+
</ehcache>
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Configuration>
3+
<Appenders>
4+
<Console name="console" target="SYSTEM_OUT">
5+
<PatternLayout pattern="%d %5p [%c] %m%n" />
6+
</Console>
7+
</Appenders>
8+
<Loggers>
9+
<Logger name="java.sql" level="INFO" additivity="false">
10+
<AppenderRef ref="console" />
11+
</Logger>
12+
<Logger name="egovframework" level="DEBUG" additivity="false">
13+
<AppenderRef ref="console" />
14+
</Logger>
15+
<!-- log SQL with timing information, post execution -->
16+
<Logger name="jdbc.sqltiming" level="INFO" additivity="false">
17+
<AppenderRef ref="console" />
18+
</Logger>
19+
<logger name="java.sql.Connection" level="DEBUG" additivity="false">
20+
<appender-ref ref="console" />
21+
</logger>
22+
<logger name="java.sql.Statement" level="DEBUG" additivity="false">
23+
<appender-ref ref="console" />
24+
</logger>
25+
<logger name="java.sql.PreparedStatement" level="DEBUG" additivity="false">
26+
<appender-ref ref="console" />
27+
</logger>
28+
<logger name="java.sql.ResultSet" level="DEBUG" additivity="false">
29+
<appender-ref ref="console" />
30+
</logger>
31+
32+
<Logger name="org.springframework" level="INFO" additivity="false">
33+
<AppenderRef ref="console" />
34+
</Logger>
35+
36+
<Logger name="org.directwebremoting" level="INFO" additivity="false">
37+
<AppenderRef ref="console" />
38+
</Logger>
39+
<Logger name="org.directwebremoting.log.startup" level="INFO" additivity="false">
40+
<AppenderRef ref="console" />
41+
</Logger>
42+
<Logger name="org.directwebremoting.log.accessLog" level="INFO" additivity="false">
43+
<AppenderRef ref="console" />
44+
</Logger>
45+
<Logger name="org.directwebremoting.log.scripts" level="INFO" additivity="false">
46+
<AppenderRef ref="console" />
47+
</Logger>
48+
<Logger name="org.directwebremoting.log.session" level="INFO" additivity="false">
49+
<AppenderRef ref="console" />
50+
</Logger>
51+
52+
<Logger name="org.hibernate" level="INFO" additivity="false">
53+
<AppenderRef ref="console" />
54+
</Logger>
55+
<Logger name="org.hibernate.SQL" level="DEBUG" additivity="false">
56+
<AppenderRef ref="console" />
57+
</Logger>
58+
<Logger name="org.hibernate.type.descriptor.sql" level="TRACE" additivity="false">
59+
<AppenderRef ref="console" />
60+
</Logger>
61+
62+
<Root level="ERROR">
63+
<AppenderRef ref="console" />
64+
</Root>
65+
</Loggers>
66+
</Configuration>

0 commit comments

Comments
 (0)