1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- server:
- port: 8888
- mybatis:
- config-location: classpath:mybatis/mybatis-config.xml
- mapper-locations: mybatis/mapper/admin/*.xml,mybatis/mapper/maternitymatron/*.xml,mybatis/mapper/coupon/*.xml,mybatis/mapper/global/*.xml,mybatis/mapper/customer/*.xml,mybatis/mapper/modoo/*.xml,mybatis/mapper/order/*.xml,mybatis/mapper/equipment/*.xml,mybatis/mapper/pay/*.xml,mybatis/mapper/wxmini/*.xml
- mybatis.type-aliases-package: com.ygj.yuemum.domain/admin,com.ygj.yuemum.domain/maternitymatron,com.ygj.yuemum.domain/coupon,com.ygj.yuemum.domain/global,com.ygj.yuemum.domain/customer,com.ygj.yuemum.domain/modoo,com.ygj.yuemum.domain/order,com.ygj.yuemum.domain/equipment,com.ygj.yuemum.domain/pay,com.ygj.yuemum.domain/wxmini
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- spring:
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://121.43.235.99:3306/yuemum?useUnicode=true&characterEncoding=utf-8&noDatetimeStringSync=true
- username: jielin
- password: jielin123
- thymeleaf:
- mode: LEGACYHTML5
- prefix: classpath:/templates
- pagehelper:
- helper-dialect: mysql
- reasonable: true
- support-methods-arguments: true
- params: count=countSql
- logging:
- level:
- com.ygj.yuemum.dao : debug
- #优惠券批次号信息--------------------
- #测试
- coupon:
- NewUserCoupon : "PVP2018051297451"
- ConsultTaskCoupon : "PVP2018051273883"
- DetectionTaskCoupon : "PVP2018051211608"
- RechargeTaskCoupon : "PVP2018051263016"
- #生产
- #coupon:
- # NewUserCoupon : "PVP2018051717019"
- # ConsultTaskCoupon : "PVP2018051739929"
- # DetectionTaskCoupon : "PVP2018051713733"
- # RechargeTaskCoupon : "PVP2018051714111"
- #图片上传路径--------------------------
- #本地
- file:
- ROOT : "D:/apache-tomcat-9.0.6/webapps/resume/img/"
- ResumeFile : "D:/apache-tomcat-9.0.6/webapps/resume/"
- httpRoot : "http://localhost:8080/resume/img/"
- httphtmlRoot : "http://localhost:8080/resume/"
- modulePath : "D:/apache-tomcat-9.0.6/webapps/resume/resume.html"
- payvoucher : "D:/apache-tomcat-9.0.6/webapps/payvoucher"
- httppayvoucher : "http://localhost:8080/payvoucher"
- #测试
- #file:
- # ROOT : "/usr/local/apache-tomcat-8.5.30/webapps/resume/img/"
- # ResumeFile : "/usr/local/apache-tomcat-8.5.30/webapps/resume/"
- # httpRoot : "http://192.168.1.24/resume/img/"
- # httphtmlRoot : "http://192.168.1.24/resume/"
- # modulePath : "/usr/local/apache-tomcat-8.5.30/webapps/resume/resume.html"
- # payvoucher : "/usr/local/apache-tomcat-8.5.30/webapps/payvoucher"
- # httppayvoucher : "http://192.168.1.24/payvoucher"
- #生产
- #file:
- # ROOT : "/usr/local/tomcat/tomcat7/webapps/resume/img/"
- # ResumeFile : "/usr/local/tomcat/tomcat7/webapps/resume/"
- # httpRoot : "http://yuesuo.yueguanjia.com/resume/img/"
- # httphtmlRoot : "http://yuesuo.yueguanjia.com/resume/"
- # modulePath : "/usr/local/tomcat/tomcat7/webapps/resume/resume.html"
- # payvoucher : "/usr/local/tomcat/tomcat7/webapps/payvoucher"
- # httppayvoucher : "http://yuesuo.yueguanjia.com/payvoucher"
- #微信公众号---------------------------------------------------
- wechat:
- APPID : "wx52852a3c47540fad"
- APPSECRET : "31e4eef58038830327eb88661e3a681f" #获取access_token
- GRANT_TYPE : "client_credential"
- JSAPI_TICKET_TYPE : "jsapi"
- ACCESS_TOKEN_URL : "https://api.weixin.qq.com/cgi-bin/token"
- JSAPI_TICKET_URL : "https://api.weixin.qq.com/cgi-bin/ticket/getticket"
- JSCODE2SESSION : "https://api.weixin.qq.com/sns/jscode2session"
- SENDMESSAGEURL : "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=" #公众号消息发送地址
- OrderTemplateid : "VyMPKDDGOy85wDIJuXR7sBuiIBEg0OPaCg6C_Dt_D0g" #公众号消息模版
- BookingTemplateid : "Wvysqh3Ec9lXpf5tytq0T2zzs662uowNLFCPiAPBFkA" #公众号消息模版
- #测试小程序
- #MINIAPPID : "wx1c3ef3300b74ed86"
- #MINIAPPSECRET : "ba5624bc087921d5a5832da9193e40f1"
- #生产小程序
- MINIAPPID : "wx20a080f3bf83ba47"
- MINIAPPSECRET : "61021776790449943ba5f40288efa0d6"
|