| 12345678910111213141516171819202122 |
- ###需拷贝到每一个模块下
- spring:
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- main: #允许循环引用
- allow-circular-references: true
- # 应用名
- application:
- name: FullCardServer
- # 当前读取配置文件的类型
- profiles:
- active: local
- # #配置中心
- # cloud:
- # config:
- # uri: http://192.168.0.104:8000
- # name: FullCardServer,ConfigCenter
- # autoconfigure:
- # exclude:
- # - org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
|