加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
user.yml 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
flash guang 提交于 2018-03-12 01:44 . test
spring:
profiles:
active: cloud
---
spring:
profiles: cloud
jpa:
show_sql: false
database: MYSQL
hibernate:
ddl-auto: none
eureka:
client:
serviceUrl:
defaultZone: http://discovery-kb.cfapps.io/eureka/
instance:
hostname: users-kb.cfapps.io
nonSecurePort: 80
ribbon:
eureka:
enabled: true
---
application:
name: movie
spring:
profiles: lattice
jpa:
show_sql: false
hibernate:
ddl-auto: none
datasource:
platform: hsqldb
server:
port: 9006
eureka:
client:
serviceUrl:
defaultZone: ${EUREKA_CLIENT_SERVICEURL_DEFAULTZONE:http://localhost:8761/eureka/}
instance:
hostname: ${vcap.application.uris[0]:localhost:9006}
nonSecurePort: 80
ribbon:
eureka:
enabled: true
---
spring:
profiles: development
jpa:
show_sql: false
hibernate:
ddl-auto: update
server:
port: 9006
eureka:
client:
serviceUrl:
defaultZone: http://discovery-kb.cfapps.io/eureka/
instance:
preferIpAddress: true
ribbon:
eureka:
enabled: false
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化