cl
2024-01-20 d434812c124e2dab22487f8d40d8ad6c3b8ad19c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
server:
  port: 8080
  max-http-header-size: 10240
 
beetl:
  resource-auto-check: true         #热加载beetl模板,开发时候用
 
spring:
                       profiles:
                         active: local
                       mvc:
                         view:
                           prefix: /pages
                       servlet:
                         multipart:
                           max-request-size: 100MB
                           max-file-size: 100MB
                       jta:
                         atomikos:
                           properties:
                             max-actives: -1
 
mybatis-plus:
  mapper-locations: classpath*:cn/stylefeng/**/mapping/*.xml
  configuration:
    map-underscore-to-camel-case: true
    cache-enabled: true
    lazy-loading-enabled: true
    multiple-result-sets-enabled: true
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  global-config:
    banner: false
    db-config:
      id-type: assign_id
      table-underline: true
 
kangaroohy:
  milo:
    enabled: true
    primary: default
    config:
      default:
        endpoint: opc.tcp://127.0.0.1:49320
        security-policy: none
 
log:
  path: _app_logs