All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ulisesbocchio.jasyptspringboot.configuration.EncryptablePropertySourceConfiguration Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.ulisesbocchio.jasyptspringboot.configuration;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.core.env.ConfigurableEnvironment;

/**
 * @author Ulises Bocchio
 */
@Configuration
@Import(EncryptablePropertyResolverConfiguration.class)
public class EncryptablePropertySourceConfiguration {

    @Bean
    public static EncryptablePropertySourceBeanFactoryPostProcessor encryptablePropertySourceAnnotationPostProcessor(ConfigurableEnvironment env) {
        return new EncryptablePropertySourceBeanFactoryPostProcessor(env);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy