123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- ########################################################
- ### Spring Cloud 基本配置;
- ########################################################
- spring.application.name=efunbox-manage-base
- ########################################################
- ### MYSQL基本配置;
- ########################################################
- #dev
- #spring.datasource.url=jdbc:mysql://192.168.1.87:3306/live?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true
- #spring.datasource.username=root
- #spring.datasource.password=admin123
- spring.datasource.url=jdbc:mysql://192.168.1.96:3306/efunbox_manage?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true
- spring.datasource.username=root
- spring.datasource.password=Efunbox^^2015$
- spring.datasource.driver-class-name=com.mysql.jdbc.Driver
- spring.jpa.properties.hibernate.hbm2ddl.auto=update
- spring.jpa.properties.hibernate.format_sql=true
- spring.jpa.show-sql=true
- ########################################################
- ### REDIS (RedisProperties) redis基本配置;
- ########################################################
- # 远程 Redis数据库索引(默认为0)
- spring.redis.database=0
- # Redis服务器地址
- spring.redis.host=192.168.1.86
- # Redis服务器连接端口
- spring.redis.port=6379
- # Redis服务器连接密码(默认为空)
- spring.redis.password=otttest
- # 连接池最大连接数(使用负值表示没有限制)
- spring.redis.pool.max-active=8
- # 连接池最大阻塞等待时间(使用负值表示没有限制)
- spring.redis.pool.max-wait=-1
- # 连接池中的最大空闲连接
- spring.redis.pool.max-idle=8
- # 连接池中的最小空闲连接
- spring.redis.pool.min-idle=0
- # 连接超时时间(毫秒)
- spring.redis.timeout=0
- efunbox.oss.img.url=https://efunbox.lingjiao.cn
- efunbox.wx.appcode=https://open.weixin.qq.com/connect/oauth2/authorize?appid={APPID}&redirect_uri={REDIRECT_URI}&response_type=code&scope=snsapi_userinfo&state={STATE}#wechat_redirect
- efunbox.wx.accesstoken=https://api.weixin.qq.com/sns/oauth2/access_token?appid={APPID}&secret={SECRET}&code={CODE}&grant_type=authorization_code
- efunbox.wx.unionId=https://api.weixin.qq.com/sns/userinfo?access_token={ACCESS_TOKEN}&openid={OPENID}&lang=zh_CN
- # 执行异步任务的 线程池大小
- schedule.threadPoolAsyncTaskExecutor.thread.size= 16
- ##基础服务
- iaas.order.content.url=http://zuul.ai160.com/ocenter/v1/orders/content/count?dist={dist}&beginTime={beginTime}&endTime={endTime}
- iaas.create.counts.url=http://zuul.ai160.com/scenter/v1/counts/{contentId}
- iaas.find.counts.url=http://zuul.ai160.com/scenter/v1/counts/?ids={ids}
- iaas.create.auth.url=http://zuul.ai160.com/acenter/v1/auth
- iaas.operation.user.integral.url=http://efunzuul.lingjiao.cn/ucenter/v1/integral
- iaas.find.user.integral.url=http://efunzuul.lingjiao.cn/ucenter/v1/integral?uid={uid}
- iaas.find.users.integral.url=http://efunzuul.lingjiao.cn/ucenter/v1/integral/users?ids={ids}
- iaas.find.user.integral.record.url=http://efunzuul.lingjiao.cn/ucenter/v1/integral/record
- #注册登录接口地址
- efunbox.oss.resource.login=http://zuul.ai160.com/ucenter/v1/users/token
- efunbox.oss.resource.register=http://zuul.ai160.com/ucenter/v1/users
- efunbox.oss.resource.token=http://zuul.ai160.com/ucenter/v1/users/token?token
- efunbox.oss.user.info=http://zuul.ai160.com/ucenter/v1/users/{uid}?token={token}
- #wx.efunbox.appid=wxdfa8a4f1623d28db
- #wx.efunbox.secret=c38c095e2632581cccfe33d64c712be9
- wx.efunbox.appid=wx8961a3e5512f307c
- wx.efunbox.secret=a2b49659f9ac921eaa03d0bdc031e44c
- wx.efunbox.url=https://api.weixin.qq.com/sns/jscode2session?appid={APPID}&secret={SECRET}&js_code={JSCODE}&grant_type=authorization_code
- wx.efunbox.accessToken=https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={APPID}&secret={APPSECRET}
- wx.efunbox.qrCode=https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token={ACCESS_TOKEN}
- wx.efunbox.sendMsg=https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token={ACCESS_TOKEN}
- #wx.efunbox.sendMsg=https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={ACCESS_TOKEN}
- #wx.efunbox.sendMsg=https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token={ACCESS_TOKEN}
- #oss
- ali.oss.endpoint=oss-cn-beijing.aliyuncs.com
- ali.oss.accessKeyId=LTAIA4of7gbC4JIB
- ali.oss.accessKeySecret=A7oqOTWFlJwjGHGoQo4mkFQ5TxCPiR
- aliyun.oss.file.prefix=reader/resource/
- aliyun.oss.file.qrcode.prefix=reader/resource/qrcode/
- statistics.oss.prefix=reader/statistics/test/
- statistics.oss.report=reader/statistics/test/report/
- wx.pay.notify.url=https://readertest.lingjiao.cn/readerBase/wx/wxPay/notify
- default.like.user.uid=c7f0a8fdd3a549ea9109a7b7486775f2
|