时 间 记 忆
<<  < 2018 - >  >>
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

最 新 评 论

最 新 日 志

最 新 留 言

搜 索

用 户 登 录

我 的 相 册

我 的 圈 子

我 的 好 友

友 情 连 接


 
 
 
application.properties配置以及读取
[ 2017-3-3 17:53:00 | By: 我家超超会发光 ]
 
application.properties配置如下:
#数据库驱动
jdbc.driverClass=org.gjt.mm.mysql.Driver
#相应驱动的jdbcUrl
jdbc.jdbcUrl=jdbc:mysql://127.0.0.1:3306/zj?useUnicode=true&characterEncoding=utf8&mysqlEncoding=utf8
#数据库的用户名
jdbc.username=root
#数据库的密码
jdbc.password=root
#检查数据库连接池中空闲连接的间隔时间,单位是分,默认值:240,如果要取消则设置为0
jdbc.idleConnectionTestPeriod=240
#连接池中未使用的链接最大存活时间,单位是分,默认值:60,如果要永远存活设置为0
jdbc.idleMaxAge=60
#每个分区最大的连接数
jdbc.maxConnectionsPerPartition=30
#每个分区最小的连接数
jdbc.minConnectionsPerPartition=10
#分区数 ,默认值2,最小1,推荐3-4,视应用而定
jdbc.partitionCount=3
#每次去拿数据库连接的时候一次性要拿几个,默认值:2
jdbc.acquireIncrement=2
#缓存prepared statements的大小,默认值:0
jdbc.statementsCacheSize=0
#每个分区释放链接助理进程的数量,默认值:3,除非你的一个数据库连接的时间内做了很多工作,不然过多的助理进程会影响你的性能
jdbc.releaseHelperThreads=3

#memcached settings
memcached.url=127.0.0.1:11211

jms.broker_url=failover://(tcp://127.0.0.1:61616)?randomize=false&initialReconnectDelay=100&timeout=5000
mongo.ip=127.0.0.1
mongo.db=zj_data
#redis的服务器地址
redis.host=127.0.0.1
#redis的服务端口
redis.port=6379
#密码
redis.pass=
#链接数据库
redis.default.db=0
#客户端超时时间单位是毫秒
redis.timeout=100000
#最大连接数
redis.maxActive=300
#最大空闲数
redis.maxIdle=100
#最大建立连接等待时间
redis.maxWait=1000
#指明是否在从池中取出连接前进行检验,如果检验失败,则从池中去除连接并尝试取出另一个
#DBSync.testOnBorrow=true
#文件服务器物理地址
flocks.location=D:/zj/tomcat-file/webapps/ROOT
#文件服务器访问地址
flocks.url=http://127.0.0.1:8080
#OpenOffice 4安装目录
openoffice.home=C:/Program Files (x86)/OpenOffice 4
server.id=message-1
#个检报告是否显示历次对比结果
inspection.report=1
#个检报告是否评估部位疾病图以及结果
inspection.assessShow=0
#是否添加水印
footer.and.water=0
读取配置文件
ResourceProperties properties = new ResourceProperties("application.properties");
String footerAndWater = properties.getProperty("footer.and.water");
 
 
 
  • 标签:properties配置 
  • 发表评论:
     
    天涯博客 天涯博客
    天涯博客欢迎您!