Springboot 环境的自由切换【8】

debug: false

server:
  port: 80

spring:
  http:
    encoding:
      charset: utf-8
  thymeleaf:
    cache: false
  mvc:
    date-format: yyyy-MM-dd
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/test
    username: root
    password: root

debug: false

server:
  port: 80

spring:
  http:
    encoding:
      charset: utf-8
  thymeleaf:
    cache: false
  mvc:
    date-format: yyyy-MM-dd
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://192.168.124.36:3306/test
    username: admin
    password: 123456





 

spring:
  profiles:
    active: dev

server:
  servlet:
    context-path: myspringboot:

 

发布了92 篇原创文章 · 获赞 5 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/xfb1989/article/details/104038152