Springboot中的各种配置杂项

2022-01-17 08:23:12 浏览数 (1)

Springboot

开启Gzip压缩

代码语言:javascript复制
server: 
  compression:
    enabled: true
    mime-types: application/json,application/xml,text/html,text/xml,text/plain

#默认就是2048 byte
server.compression.min-response-size=2048
影响

损耗cpu性能。

Mybatis-generator无法查询带下划线的字段

代码语言:javascript复制
mybatis:
  configuration:
    map-underscore-to-camel-case: true

本站文章除注明转载/出处外,均为本站原创,转载前请务必署名,转载请标明出处 最后编辑时间为: 2021/01/27 14:54:06

0 人点赞