1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #Server
- app.name=sookaCms
- server.port=8900
- #spring session
- spring.session.store-type=hash_map
- #spring aop
- spring.aop.auto=true
- spring.aop.proxy-target-class=true
- #ehcache
- spring.cache.type=ehcache
- spring.cache.ehcache.config=classpath:ehcache.xml
- #devtools
- spring.devtools.restart.enabled=true
- #datasource
- spring.datasource.driver-class-name=com.mysql.jdbc.Driver
- #spring.datasource.url=jdbc:mysql://172.21.3.12/rdjt?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- spring.datasource.url=jdbc:mysql://121.36.228.66:63306/spdx?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- spring.datasource.username=root
- spring.datasource.password=sooka123456
- #druid
- spring.datasource.druid.initial-size=1
- spring.datasource.druid.max-active=20
- spring.datasource.druid.max-wait=60000
- spring.datasource.druid.min-idle=1
- spring.datasource.druid.time-between-eviction-runs-millis=60000
- spring.datasource.druid.min-evictable-idle-time-millis=300000
- spring.datasource.druid.validation-query=select 'x'
- spring.datasource.druid.test-while-idle=true
- spring.datasource.druid.test-on-borrow=false
- spring.datasource.druid.test-on-return=false
- spring.datasource.druid.pool-prepared-statements=true
- spring.datasource.druid.max-open-prepared-statements=20
- spring.datasource.druid.filters=stat,wall,log4j
- spring.datasource.druid.filter.stat.enabled=true
- spring.datasource.druid.filter.stat.slow-sql-millis=10000
- spring.datasource.druid.filter.stat.log-slow-sql=true
- spring.datasource.druid.filter.config.enabled=true
- spring.datasource.druid.filter.encoding.enabled=true
- spring.datasource.druid.filter.wall.enabled=true
- spring.datasource.druid.stat-view-servlet.enabled=true
- spring.datasource.druid.stat-view-servlet.url-pattern=/system/druid/*
- spring.datasource.druid.aop-patterns=com.sooka.module.web.cms.service.*,com.sooka.module.web.system.service.*
- #Kcaptcha验证码
- kcaptcha.img.width=130
- kcaptcha.img.hight=45
- kcaptcha.font.size=30
- kcaptcha.font.color=black
- kcaptcha.char.length=4
- #system.dev.model false or true
- system.dev.model=true
- #后台登陆路径
- system.login.path=admin
- #开启用户踢出
- system.login.enabled-kickout=true
- #用户登陆最大会话
- system.login.max-session=1
- system.http.protocol=http
- #system.http.host=192.168.1.100
- #system.http.host=192.168.2.10:8900
- system.http.host= 127.0.0.1:8900
- #system.http.host= 192.168.0.14:8900
- system.site.name=sookaCms
- system.site.prefix=spdx
- system.site.subfix=.html
- system.site.static=true
- #系统默认分页大小
- system.site.page.size=10
- system.member.allow.register=false
- #如果启用七牛云存储,此处设置将无效
- enable.virtual.path=true
- #file upload path windows
- windows.file.upload.path=/Users/spdx/Pictures
- #file upload path linux
- linux.file.upload.path=/u01/spdx/Pictures
- #七牛云存储
- qiniu.upload.on=false
- qiniu.access.key=
- qiniu.secret.key=
- qiniu.bucketname=
- qiniu.cdn.domain=
- #QQ
- oauthQQ.openid=
- oauthQQ.openkey=
- oauthQQ.redirect=
- #weibo
- oauthSina.openid=
- oauthSina.openkey=
- oauthSina.redirect=
- #
|