123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- server.port=19001
- #mysql datasource setting
- spring.datasource.driver-class-name=com.mysql.jdbc.Driver
- spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
- spring.datasource.url=jdbc:mysql://172.16.90.201:3306/wechat-openid-data?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useSSL=false&&allowMultiQueries=true
- spring.datasource.username=root
- spring.datasource.password=123456
- spring.datasource.initialSize=5
- spring.datasource.minIdle=5
- spring.datasource.maxActive=20
- spring.datasource.maxWait=60000
- spring.datasource.timeBetweenEvictionRunsMillis=60000
- spring.datasource.minEvictableIdleTimeMillis=30000
- spring.datasource.validationQuery=SELECT 1
- spring.datasource.testWhileIdle=true
- spring.datasource.testOnBorrow=false
- spring.datasource.testOnReturn=false
- spring.datasource.poolPreparedStatements=true
- spring.datasource.maxPoolPreparedStatementPerConnectionSize=20
- spring.datasource.filters=stat,wall
- spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=2000
- #mybatis setting
- mybatis.type-aliases-package=com.hw.entity
- mybatis.mapper-locations=classpath:mappers/*.xml
- mybatis.check-config-location=true
- mybatis.executor-type=simple
- #pagehelper setting
- pagehelper.helperDialect=mysql
- pagehelper.reasonable=true
- pagehelper.supportMethodsArguments=true
- pagehelper.params=count=countSql
- spring.redis.database=0
- spring.redis.host=127.0.0.1
- spring.redis.port=6379
- spring.redis.jedis.pool.max-idle=8
- spring.redis.jedis.pool.min-idle=0
- spring.redis.jedis.pool.max-active=10
- spring.redis.jedis.pool.max-wait=-1
- spring.redis.timeout=5000
- #原公众号appId
- wx.ma.appId=wxbe90cc7c5233dd84
- #原公众号secret
- wx.ma.secret=ec4a18ce1a7bcf17cf592c3d57cec68a
- #新公众号appId
- newwx.ma.appId=wxbe90cc7c5233dd84
- #新公众号secret
- newwx.ma.secret=ec4a18ce1a7bcf17cf592c3d57cec68a
|