没有Jasypt Spring的加密和解密属性文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了没有Jasypt Spring的加密和解密属性文件相关的知识,希望对你有一定的参考价值。

我想使用datasource.xml中调用的静态方法解密我的密码。我不想使用Jasypt。

    <beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">

      <property name="driverClassName"> 
            <value> ${sqltc.db.driverClassName}</value>

      <property name="url"> 
            <value> ${sqltc.db.url}</value>

      <property name="username"> 
            <value> ${sqltc.db.username}</value>

      <property name="password"> 
            <value>${sqltc.db.password}</value>
            <--- tried this Static Method
                <value>#{com.jsa.bla.batch.util.DecryptUtil.decrypt('${sqltc.db.password}')}</value>
                --->

    </bean>

--------- -------------性质

  sqltc.db.driverClassName=com.oracle.12c.driver
    sqltc.db.url=jdbc:oracle12c://oralce.web.net
    sqltc.db.username=oracle2
    sqltc.db.password= ZPAxPsrQk172638908==

----解密课----

Static Method 

public static String decrypt(String encryptedString) {
    String decryptedText = null;
    try{
        cipher.init(Cipher.DECRYPT_MODE, key);
        byte[] encryptedText = Base64.decodeBase64(encryptedString);
        byte[] plainText = cipher.doFinal(encryptedText);
        decryptedText = new String (plainText);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return decryptedText;
    }   
答案
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">

  <property name="driverClassName">
    <value> ${sqltc.db.driverClassName}</value>

    <property name="url">
      <value> ${sqltc.db.url}</value>

      <property name="username">
        <value> ${sqltc.db.username}</value>

        <property name="password">
          <bean id="Decrypt" class="org.springframework.beans.factory.config.MethodInvokingBean">
            <property name="targetClass" value="com.jsa.bla.batch.util.DecryptUtil" />
            <property name="staticMethod" value="com.jsa.bla.batch.util.DecryptUtil.decrypt" />
            <property name="arguments"/>
              <list>
                <value>${sqltc.db.password}</value>
              </list>
          </bean>
          </property>

以上是关于没有Jasypt Spring的加密和解密属性文件的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Config 配置中心 自动加解密功能

如何通过DataSourceBuilder将jasypt加密密码传递给数据库

Spring Boot加密属性文件数据

Spring Boot(XML配置)和Jasypt集成

springboot使用jasypt对配置文件加密,加密数据库连接

springboot使用jasypt对配置文件加密,加密数据库连接