修改提交

master
wangxy 4 months ago
parent 6629e7c98a
commit 73f1731388

@ -71,6 +71,14 @@
<groupId>com.ruoyi</groupId> <groupId>com.ruoyi</groupId>
<artifactId>ruoyi-flow</artifactId> <artifactId>ruoyi-flow</artifactId>
</dependency> </dependency>
<!--加密-->
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>2.1.0</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>

@ -7,8 +7,8 @@ spring:
# 主库数据源 # 主库数据源
master: master:
url: jdbc:kingbase8://61.178.84.89:54321/ry_vue-test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&clientEncoding=UTF8 url: jdbc:kingbase8://61.178.84.89:54321/ry_vue-test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&clientEncoding=UTF8
username: root username: ENC(HwzyzJMA3KwPMWUgtxUR9w==)
password: 123456 password: ENC(JcBUXyJAPqtYOO+qSvHccg==)
# 从库数据源 # 从库数据源
slave: slave:
# 从数据源开关/默认关闭 # 从数据源开关/默认关闭

@ -135,6 +135,11 @@ swagger:
# 请求前缀 # 请求前缀
pathMapping: /dev-api pathMapping: /dev-api
#解析密钥
jasypt:
encryptor:
password: MANAGER
# 防止XSS攻击 # 防止XSS攻击
xss: xss:
# 过滤开关 # 过滤开关

@ -0,0 +1,23 @@
package com.ruoyi;
import org.jasypt.encryption.pbe.PooledPBEStringEncryptor;
import org.jasypt.encryption.pbe.config.SimpleStringPBEConfig;
public class EncFactory {
public static void main(String[] args) {
String securityKey = "MANAGER"; // 加密秘钥
String data = "123456"; // 需要加密的字符串
PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor();
SimpleStringPBEConfig config = new SimpleStringPBEConfig();
config.setPassword(securityKey);
config.setAlgorithm("PBEWithMD5AndDES");
config.setPoolSize("1");
config.setStringOutputType("base64");
encryptor.setConfig(config);
System.out.println("ENC("+ encryptor.encrypt(data) +")");
System.out.println(encryptor.decrypt("t3TY7+QFjQNRv8N833J1PRV6+/QTBwJP"));
}
}
Loading…
Cancel
Save