Spring Boot中application.yml中的常规配置

server:
    port: 8083
    servlet:
      context-path: /ui2
    session:
      cookie:
        name: UI2SESSION
security:
  basic:
    enabled: false
  oauth2:
    client:
      clientId: SampleClientId
      clientSecret: secret
      accessTokenUri: http://localhost:8081/auth/oauth/token
      userAuthorizationUri: http://localhost:8081/auth/oauth/authorize
    resource:
      userInfoUri: http://localhost:8081/auth/user/me
spring:
  thymeleaf:
    cache: false 

spring:
  security:
    user:
      password: pass

以下是Eureka注册中心的配置:

eureka:
  instance:
    hostname: localhost
  client:
    # 以下两项一定要是false,表明自己是服务器,而不需要从其他主机发现服务
    registerWithEureka: false
    fetchRegistry: false
    serviceUrl:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
  server:
    waitTimeInMsWhenSyncEmpty: 0

以下是Eureka客户端应用的配置

eureka:
  instance:
    statusPageUrlPath: /info
    healthCheckUrlPath: /health
  client:
     healthcheck:
      enabled: false
  serviceUrl:
      defaultZone: http://localhost:8761/eureka/
      
spring:
  application:
    name: asset_demo

以下是zuul网关注册到Eureka的配置

eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/
 
# 设置服务名称  
spring:
  application:
    name: ZUUL

以下是zuul网关单独使用时的显式配置(默认可以通过Eureka中的服务名进行路由)

zuul:
  routes:
    resource:
      path: /api/**
      url: http://localhost:9000
    user: 
      path: /user/**
      url: http://localhost:9000/user

以下是springboot中页面

spring.mvc.view.prefix=/pages/
spring.mvc.view.suffix=.html

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值