懒羊羊
2023-12-12 b26949b3738a7eb34f8550a073d8d3b03c2fbf3e
提交 | 用户 | 时间
71e81e 1 server:
2   port: 8080
3   max-http-header-size: 10240
4
5 beetl:
6   resource-auto-check: true         #热加载beetl模板,开发时候用
7
8 spring:
9                        profiles:
10                          active: local
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