12345678910111213141516171819 |
- ###################################################################################
- ### logging(logback)
- ###################################################################################
- logging:
- config: classpath:logback-spring.xml
- file:
- name: '${spring.application.name:server}'
- path: './logs/${logging.file.name}'
- level:
- org.springframework: info
- com.galaxis: debug
- ###################################################################################
- ### Spring配置
- ###################################################################################
- spring:
- application.name: soap-gateway
- profiles.active: dev
|