Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 네트워크
- netsh
- ssh
- Quartz
- 줄바꿈 문자
- GIT
- import
- web.xml
- IntelliJ
- lsof
- Source
- port
- maVen
- xargs
- context
- VirtualBox
- resource
- Windows 10
- vscode
- JavaScript
- bash
- find
- Mac
- plugin
- grep
- 단축키
- Eclipse
- Windows
- profile
- tomcat
Archives
- Today
- Total
develog
[spring] @Value 본문
* Property Placeholder
@Value("${app.name}")
private String appName;
* Spring Expression Language (SpEL)
@Value("#{2 * 3}")
private int number;
@Value("#{systemProperties['user.home']}")
private String userHome;
@Value("#{someBean.someMethod()}")
private String valueFromBean;
Comments