demo.TestConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasypt-spring-boot-demo-simple Show documentation
Show all versions of jasypt-spring-boot-demo-simple Show documentation
Jasypt Spring Boot Simple Demo
The newest version!
package demo;
import com.ulisesbocchio.jasyptspringboot.annotation.EncryptablePropertySource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* Sample Configuration File that imports an Encryptable Property Source
*
* @author Ulises Bocchio
*/
@Configuration
@EncryptablePropertySource(name = "encrypted2", value = "classpath:encrypted2.properties")
public class TestConfig {
@Bean
public String simpleBean() {
return "Silly Bean";
}
}