懒羊羊
2023-11-14 abb175b29054b9708af27136c035b1b7351dcd20
提交 | 用户 | 时间
1ac2bc 1 server:
2   port: 8081
3   max-http-header-size: 10240
4
5 beetl:
6   resource-auto-check: true         #热加载beetl模板,开发时候用
7
8 spring:
9   profiles:
10     active: @spring.active@
11   mvc:
12     view:
13       prefix: /pages
14   servlet:
15     multipart:
16       max-request-size: 100MB
17       max-file-size: 100MB
18   jta:
19     atomikos:
20       properties:
21         max-actives: -1
22
23 mybatis-plus:
24   mapper-locations: classpath*:cn/stylefeng/**/mapping/*.xml
25   configuration:
26     map-underscore-to-camel-case: true
27     cache-enabled: true
28     lazy-loading-enabled: true
29     multiple-result-sets-enabled: true
30     log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
31   global-config:
32     banner: false
33     db-config:
34       id-type: assign_id
35       table-underline: true
36
37 log:
38   path: _app_logs
39