demo.MyService 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 org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
/**
* @author Ulises Bocchio
*/
@Component
public class MyService {
@Value("${secret.property:defaultValue}")
private String secret;
@Value("${secret2.property:defaultValue}")
private String secret2;
public String getSecret() {
return secret;
}
public String getSecret2() {
return secret2;
}
}