2017-05-29 22 views
0

antベースのspring 3.1 appをmavenベースのspring 4.3.8に移行しています。 Jasypt 1.9.2でプロパティファイルのエントリを暗号化しています。アプリを起動したときしかし、それはJasypt 1.9.2はSpring 4.3.8と互換性がありますか?

Caused by: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.jasypt.spring31.properties.EncryptablePropertyPlaceholderConfigurer] for bean with name 'propertyPlaceholderConfigurer' defined in ServletContext resource [/WEB-INF/applicationContext.xml]; nested exception is java.lang.ClassNotFoundException: org.jasypt.spring31.properties.EncryptablePropertyPlaceholderConfigurer 

jasypt-1.9.2とjasypt-spring31-1.9.2瓶を投げるWEB-INF/libフォルダの下にご利用いただけます。以下は、アプリケーション・コンテキストです:

<?xml version="1.0" encoding="UTF-8"?> 
<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" 
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xsi:schemaLocation=" 
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 
     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd 
     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> 

    <mvc:annotation-driven /> 
    <mvc:resources mapping="*.html" location="/" /> 

    <context:component-scan base-package="com.xyz" /> 
    <bean id="propertyPlaceholderConfigurer" 
     class="org.jasypt.spring31.properties.EncryptablePropertyPlaceholderConfigurer"> 
     <constructor-arg ref="configurationEncryptor" /> 
    </bean> 

    <bean id="configurationEncryptor" class="org.jasypt.encryption.pbe.StandardPBEStringEncryptor"> 
     <property name="config" ref="environmentVariablesConfiguration" /> 
    </bean> 

    <bean id="environmentVariablesConfiguration" 
     class="org.jasypt.encryption.pbe.config.EnvironmentStringPBEConfig"> 
     <property name="algorithm" value="PBEWithMD5AndDES" /> 
     <property name="password" value="xxxx" /> 
    </bean> 
</beans> 

Mavenのエントリは次のとおりです。http://jasypt.org/encrypting-configuration.htmlによると

<dependency> 
     <groupId>org.jasypt</groupId> 
     <artifactId>jasypt-spring31</artifactId> 
     <version>1.9.2</version> 
</dependency> 

答えて

0

番号:.propertiesファイルの

春統合透明の解読:Jasyptは、構成に統合することができますSpring Framework(2.xと3.x)のシステムと、Springアプリケーションが使用する.propertiesファイルを透過的に解読します。詳細:Spring 2.x、Spring 3.0、Spring 3.1。

関連する問題