You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
|
4 years ago
|
server:
|
||
|
|
port: 8001 #服务端口
|
||
|
|
#eureka配置
|
||
|
|
#eureka配置
|
||
|
|
eureka:
|
||
|
|
client:
|
||
|
|
#表示是否将自己注册进eureka 默认为true
|
||
|
|
register-with-eureka: true
|
||
|
|
#是否从EurekaServer中抓取已有的注册信息,默认为true,单点无所谓,集群必须设置true才能和ribbon使用负载均衡
|
||
|
|
fetch-registry: true
|
||
|
|
service-url:
|
||
|
|
#集群配置
|
||
|
|
defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
|
||
|
|
instance:
|
||
|
|
#服务名称修改
|
||
|
|
instance-id: PAYMENT-BASE
|
||
|
|
#访问路径可以显示ip地址
|
||
|
|
prefer-ip-address: true
|
||
|
|
#spring相关配置
|
||
|
|
spring:
|
||
|
|
application:
|
||
|
|
name: mcroservice-payment #服务名
|
||
|
|
datasource:
|
||
|
|
type: com.alibaba.druid.pool.DruidDataSource #当前数据源操作类型
|
||
|
|
driver-class-name: org.gjt.mm.mysql.Driver #数据库驱动包
|
||
|
|
url: jdbc:mysql://106.14.81.251:3306/rbs_erp_test?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false
|
||
|
|
username: root
|
||
|
|
password: hnrr%%360
|
||
|
|
#mybatis:配置
|
||
|
|
mybatis:
|
||
|
|
mapperLocations: classpath:dao/*.xml
|
||
|
|
type-aliases-package: com.rbs.springcloud.pojo
|