Update ruoyi-admin/src/main/resources/application.yml

连同配置类一同修改
This commit is contained in:
疯狂的狮子Li 2023-01-09 08:11:49 +00:00 committed by Gitee
parent 587c39f17e
commit 4a54b799d0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -183,9 +183,11 @@ mybatis-plus:
updateStrategy: NOT_NULL updateStrategy: NOT_NULL
# 字段验证策略之 select,在 select 的时候的字段验证策略既 wrapper 根据内部 entity 生成的 where 条件 # 字段验证策略之 select,在 select 的时候的字段验证策略既 wrapper 根据内部 entity 生成的 where 条件
where-strategy: NOT_NULL where-strategy: NOT_NULL
# 扫描自定义TypeHandler --- # 数据库字段加密配置
mybatis-plus:
# 扫描加密 TypeHandler
type-handlers-package: com.ruoyi.common.encrypt type-handlers-package: com.ruoyi.common.encrypt
encrypt-field: encrypt:
# 字段加密算法可自定义算法。目前支持base64、aes、rsa、sm2、sm4。 # 字段加密算法可自定义算法。目前支持base64、aes、rsa、sm2、sm4。
# 其中base64不需要公钥私钥ras、sm2需要公私钥信息 # 其中base64不需要公钥私钥ras、sm2需要公私钥信息
# aes采用AES/CBC/PKCS5Padding需要secretKey和ivKey # aes采用AES/CBC/PKCS5Padding需要secretKey和ivKey