Skip to content
kings.chan edited this page Apr 27, 2017 · 4 revisions

Welcome to the jblog wiki!

配置文件介绍

文件名 说明
applicationContext.xml spring 总配置文件
applicationContext-bean.xml spring bean 配置文件
applicationContext-cache.xml 缓存配置文件
applicationContext-db.xml 数据源配置
applicationContext-mvc.xml spring mvc配置
applicationContext-quartz.xml quartz 任务调度配置
applicationContext-servlet.xml spring servlet配置
article.xml article 查询sql语句
conf.properties 项目配置文件
db.properties 数据库连接配置文件
ehcache.xml ehcache配置文件
log4j.properties 日志配置文件
report.xml 系统报表sql语句

conf.properties

#项目顶级域名
app.host=51so.info 
#是否支持泛型动态域名
app.dynamic.host=false
#七牛文件镜像域名
app.cdn.host=http://res.51so.info
#是否为debug模式
app.debug=true
#default 跳转域名
app.default.blog.keyword=www
#临时文件存放目录
app.file.temp.folder=/temp/data/
#hibernate-search lucene 索引存放目录
hibernate.search.default.indexBase=/temp/hibernate-index
#七牛存储配置
qiniu.access.key=xxxxxxx
qiniu.secret.key=xxxxxx
qiniu.bucketname=xxxx
#系统邮件发送帐号配置
system.notice.email.server=smtpdm.aliyun.com
system.notice.account=***@notice.51so.info
system.notice.password=******
########新浪微博登录 oauth2##################
client_ID =*******
client_SERCRET =*******
#登录成功跳转页面
redirect_URI =http://51so.info/pub/login.do
baseURL=https://api.weibo.com/2/
accessTokenURL=https://api.weibo.com/oauth2/access_token
authorizeURL=https://api.weibo.com/oauth2/authorize
rmURL=https\://rm.api.weibo.com/2/
sina_weibo_login_url=https\://api.weibo.com/oauth2/authorize?client_id\=xxxxxxx&redirect_uri\=http\://51so.info/pub/login.do&response_type\=code

db.properties

jdbc.blog.driverClassName=com.mysql.jdbc.Driver
jdbc.blog.url=jdbc\:mysql\://ip\:端口/数据库名
jdbc.blog.alias=别名
jdbc.blog.username=帐号
#是否显示执行的sql语句
jdbc.blog.showsql=true
#是否启用hibernate二级缓存
hibernate.query.cache=false
#java -cp druid-1.0.25.jar com.alibaba.druid.filter.config.ConfigTools 你的密码
jdbc.blog.password=druid 生成后的加密字符串
jdbc.blog.publickey=druid 生成后的加密字符串
Clone this wiki locally