SSM配置文件信息加密实现

5 篇文章 0 订阅

  在web项目中数据库连接时的账号密码都直接写在配置文件中,直接被暴露出来,造成一定的安全隐患,所以在这里使用DES算法对密码进行加密,实现代码如下:

1、配置密码加密工具类:DESUtil

public class DESUtil {
	 
    private static Key key;
    //设置密钥
    private static String KEY_STR = "shepikey";
    private static String CHARSETNAME = "UTF-8";
    private static String ALGORITHM = "DES";
 
    static{
        try {
            KeyGenerator generator = KeyGenerator.getInstance(ALGORITHM);
            SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
            secureRandom.setSeed(KEY_STR.getBytes());
            generator.init(secureRandom);
            key = generator.generateKey();
            generator = null;
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        }
    }
 
    //加密
    public static String getEncryptString(String str){
        BASE64Encoder encoder = new BASE64Encoder();
        try {
            byte[] bytes = str.getBytes(CHARSETNAME);
            Cipher cipher = Cipher.getInstance(ALGORITHM);
            cipher.init(Cipher.ENCRYPT_MODE, key);
            byte[] doFinal = cipher.doFinal(bytes);
            return encoder.encode(doFinal);
        } catch (Exception e) {
            e.printStackTrace();
//            throw ...
        }
        return null;
    }
 
    //解密
    public static String getDecryptString(String str){
        BASE64Decoder decoder = new BASE64Decoder();
        try {
            byte[] bytes = decoder.decodeBuffer(str);
            Cipher cipher = Cipher.getInstance(ALGORITHM);
            cipher.init(Cipher.DECRYPT_MODE, key);
            byte[] doFinal = cipher.doFinal(bytes);
            return new String(doFinal, CHARSETNAME);
        } catch (Exception e) {
            e.printStackTrace();
            //throw ...
        }
        return null;
    }
}

2、

编写继承PropertyPlaceholderConfigurer 的加密处理工具

将需要加密的项先利用上面的加密算法手动加密后写入到配置文件中,之后将加密过的值的键写入到下面这个数组中,

也就是告诉程序那些配置文件中的值是需要解密的。

public class EncryptPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {
    private String[] encryptProppNames = {"jdbc.username","jdbc.password","redis.password"};
 
    /**
     * 对关键的属性进行转换
     */
    @Override
    protected String convertProperty(String propertyName, String propertyValue) {
        if( isEncryptProp(propertyName) ){
            //解密
            String decryptValue = DESUtil.getDecryptString(propertyValue);
            return decryptValue;
        }else{
            return propertyValue;
        }
    }
 
    private boolean isEncryptProp(String propertyName){
        for( String encryptpropertyName : encryptProppNames ){
            if( encryptpropertyName.equalsIgnoreCase(propertyName) ){
                return true;
            }
        }
        return false;
    }
    
}

3、修改xml中导入配置文件的方式

<context:property-placeholder location="classpath:dbConfig/db.properties" ignore-unresolvable="true"/>

修改为:

<bean class="cn.hczl.huiyuan.util.EncryptPropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>classpath:dbConfig/db.properties</value>
                <value>classpath:dbConfig/redis.properties</value>
            </list>
        </property>
        <property name="fileEncoding" value="UTF-8" />
    </bean>

 

SSM框架中,可以通过使用加密算法来对数据库密码进行加密,以增加系统的安全性。下面是一种常见的方法来配置数据库密码加密: 1. 创建数据库密码加密工具类: 创建一个工具类,用于实现数据库密码的加密和解密功能。可以使用Java的加密算法,如AES或DES,来加密密码。在这个工具类中,提供加密和解密方法供后续使用。 2. 配置数据库密码加密的拦截器: 在SSM框架中,可以使用拦截器来实现对数据库密码的加密和解密。创建一个拦截器,在拦截器中对数据库配置文件中的密码进行解密,并将解密后的密码写入到数据源中。同时,在获取数据库连接时,将获取到的密码进行加密再传给数据库。 3. 配置拦截器到Spring配置文件: 在Spring配置文件中,配置上述创建的拦截器,使其生效。可以通过配置拦截器的顺序来确保在获取数据库连接之前进行密码的解密和加密操作。 4. 配置数据库连接池和数据源: 在Spring配置文件中,配置数据库连接池和数据源相关的信息。其中,密码字段使用加密后的形式进行配置。这样,在获取数据库连接时,会自动进行解密操作。 通过以上步骤,就可以实现SSM框架中对数据库密码进行加密和解密的功能。这样可以有效保护数据库密码的安全性。记得在实际应用中,要选择合适的加密算法和密钥管理策略,以确保密码的安全性。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值