Blame view

src/main/resources/application.yml 590 Bytes
d7b1d619   Liu Haoyu   Linux服务器监控模块创建
1
2
3
4
  spring:
    profiles:
      active: test #默认开发环境
    rabbitmq:
fe761a80   Liu Haoyu   配置文件由39修改到117上;
5
      host: 192.168.10.117
d7b1d619   Liu Haoyu   Linux服务器监控模块创建
6
      port: 5672
fe761a80   Liu Haoyu   配置文件由39修改到117上;
7
8
      username: shiyu
      password: shiyu
d7b1d619   Liu Haoyu   Linux服务器监控模块创建
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
      virtualHost: /
  
  
  mybatis:
    mapper-locations:
      - classpath*:com.objecteye.mapper/*.xml
  
  pagehelper:
    helperDialect: mysql
    reasonable: true
    support-methods-arguments: true
    params: count=countSql
  
  logging:
    level:
      root: info #日志配置DEBUG,INFO,WARN,ERROR
      com.objecteye: info
  #  file: demo_log.log #配置日志生成路径
  #  path: /var/logs #配置日志文件名称
  
  server:
    port: 8888
    address: 192.168.10.117