| | |
| | | - /favicon.ico |
| | | - /*/api-docs |
| | | - /*/api-docs/** |
| | | - /swagger-ui/** |
| | | - /webjars/** |
| | | - /swagger-ui.html |
| | | - /doc.html |
| | | # actuator 监控配置 |
| | | - /actuator |
| | | - /actuator/** |
| | |
| | | mapUnderscoreToCamelCase: true |
| | | # MyBatis 自动映射策略 |
| | | # NONE:不启用 PARTIAL:只对非嵌套 resultMap 自动映射 FULL:对所有 resultMap 自动映射 |
| | | autoMappingBehavior: PARTIAL |
| | | autoMappingBehavior: FULL |
| | | # MyBatis 自动映射时未知列或未知属性处理策 |
| | | # NONE:不做处理 WARNING:打印相关警告 FAILING:抛出异常和详细信息 |
| | | autoMappingUnknownColumnBehavior: NONE |
| | |
| | | # 字段验证策略之 select,在 select 的时候的字段验证策略既 wrapper 根据内部 entity 生成的 where 条件 |
| | | where-strategy: NOT_NULL |
| | | |
| | | # 数据加密 |
| | | mybatis-encryptor: |
| | | # 是否开启加密 |
| | | enable: false |
| | | # 默认加密算法 |
| | | algorithm: BASE64 |
| | | # 编码方式 BASE64/HEX。默认BASE64 |
| | | encode: BASE64 |
| | | # 安全秘钥 对称算法的秘钥 如:AES,SM4 |
| | | password: |
| | | # 公私钥 非对称算法的公私钥 如:SM2,RSA |
| | | publicKey: |
| | | privateKey: |
| | | |
| | | # Swagger配置 |
| | | swagger: |
| | | # 是否开启swagger |
| | | enabled: true |
| | | info: |
| | | # 标题 |
| | | title: '标题:${ruoyi.name}后台管理系统_接口文档' |
| | |
| | | name: ${sa-token.token-name} |
| | | |
| | | springdoc: |
| | | api-docs: |
| | | # 是否开启接口文档 |
| | | enabled: true |
| | | swagger-ui: |
| | | # 持久化认证数据 |
| | | persistAuthorization: true |
| | |
| | | group-configs: |
| | | - group: 1.演示模块 |
| | | packages-to-scan: com.ruoyi.demo |
| | | - group: 2.系统模块 |
| | | - group: 2.通用模块 |
| | | packages-to-scan: com.ruoyi.web |
| | | - group: 3.代码生成模块 |
| | | - group: 3.系统模块 |
| | | packages-to-scan: com.ruoyi.system |
| | | - group: 4.代码生成模块 |
| | | packages-to-scan: com.ruoyi.generator |
| | | |
| | | # 防止XSS攻击 |