12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #Server
- app.name=sookaCms
- server.port=443
- #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://127.0.0.1/rdjt?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- spring.datasource.username=root
- spring.datasource.password=123456
- #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=https
- #system.http.host=192.168.1.100
- system.http.host=127.0.0.1
- system.site.name=sookaCms
- system.site.prefix=rdjt
- 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/wangshuo/Pictures
- #file upload path linux
- linux.file.upload.path=/Users/xx/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=
- server.ssl.key-store=classpath:keystore.p12
- server.ssl.key-store-password=123456
- server.ssl.keyStoreType=PKCS12
- server.ssl.keyAlias=tomcat
|