Skip to content

Instantly share code, notes, and snippets.

@mehmetcemyucel
Last active April 4, 2021 09:24
Show Gist options
  • Select an option

  • Save mehmetcemyucel/036e3fa123dd14a5444f9444cbb739c1 to your computer and use it in GitHub Desktop.

Select an option

Save mehmetcemyucel/036e3fa123dd14a5444f9444cbb739c1 to your computer and use it in GitHub Desktop.
mcy-sb-jasypt
@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