Last active
April 4, 2021 09:24
-
-
Save mehmetcemyucel/036e3fa123dd14a5444f9444cbb739c1 to your computer and use it in GitHub Desktop.
mcy-sb-jasypt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Slf4j | |
| @Controller | |
| public class SimpleController { | |
| @Value("${mcy.message}") | |
| private String message; | |
| @Value("${mcy.person}") | |
| private String person; | |
| @PostConstruct | |
| private void init() { | |
| log.info("{} {}", message, person); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment