加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
application-user-dev.yml 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
user 提交于 2022-08-22 18:32 . 0822这是我的配置文件
server:
port: 10022 # user服务端口号
eureka:
client:
serviceUrl: # Eureka客户端配置,指向注册中心地址
defaultZone: http://localhost:10010/eureka/
registry-fetch-interval-seconds: 10 #修改客户端拉取文件信息的时间
instance:
prefer-ip-address: true # 开启使用IP地址进行注册
instance-id: user-server:10022 # 修改实例Id
spring:
application: # 指定此服务的应用名称
name: user-server
datasource: #连接数据库
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql:///zpethome?characterEncoding=UTF-8
username: root
password: 123456
mybatis:
type-aliases-package: com.xiongc.org.domain
mapper-locations: classpath:com/xiongc/*/mapper/*Mapper.xml #对应xml文件 当接口与mapper文件名相同可以不配
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化