Ensure property source decryption works even if RSA not available

Fixes gh-34
This commit is contained in:
Dave Syer
2015-05-21 14:49:10 +01:00
parent 2978b8df4d
commit c2d1c0356c

View File

@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
*
*/
@Configuration
@ConditionalOnClass({ TextEncryptor.class, RsaSecretEncryptor.class })
@ConditionalOnClass({ TextEncryptor.class })
@EnableConfigurationProperties(KeyProperties.class)
public class EncryptionBootstrapConfiguration {