File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed
cachecloud-open-common/src/main/resources
cachecloud-open-web/src/main Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ tomcat.backgroundProcessorDelay=30 # secs
1717server.tomcat.max-threads = 500
1818server.tomcat.uri-encoding = UTF-8
1919
20+ cachecloud.db.url = ${cachecloud.db.url}
21+ cachecloud.db.user = ${cachecloud.db.user}
22+ cachecloud.db.password = ${cachecloud.db.password}
23+ cachecloud.maxPoolSize = ${cachecloud.maxPoolSize}
24+ jdbc.driver = com.mysql.jdbc.Driver
25+ jdbc.validationQuery = select 1 from dual
26+
2027cachecloud.admin.user.name =${cachecloud.admin.user.name}
2128cachecloud.admin.user.password =${cachecloud.admin.user.password}
2229cachecloud.machine.ssh.port =${cachecloud.machine.ssh.port}
Original file line number Diff line number Diff line change 77 http://www.springframework.org/schema/context
88 http://www.springframework.org/schema/context/spring-context.xsd" >
99
10- <context : property-placeholder location =" classpath:jdbc .properties" />
10+ <context : property-placeholder location =" classpath:application .properties" />
1111
1212 <!-- cache data source-->
1313 <bean name =" cacheCloudDB" class =" com.mchange.v2.c3p0.ComboPooledDataSource" >
Original file line number Diff line number Diff line change 1+ cachecloud.db.url = jdbc:mysql://127.0.0.1:3306/cache-cloud
2+ cachecloud.db.user = root
3+ cachecloud.db.password =
4+ cachecloud.maxPoolSize = 20
5+
16cachecloud.machine.username = cachecloud
27cachecloud.machine.password = cachecloud
38cachecloud.machine.ssh.port = 22
Original file line number Diff line number Diff line change 1+ cachecloud.db.url = jdbc:mysql://127.0.0.1:3306/cache-cloud
2+ cachecloud.db.user = root
3+ cachecloud.db.password =
4+ cachecloud.maxPoolSize = 20
5+
16cachecloud.machine.username = cachecloud
27cachecloud.machine.password = cachecloud
38cachecloud.machine.ssh.port = 22
You can’t perform that action at this time.
0 commit comments