| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Windows 10
- profile
- plugin
- VirtualBox
- web.xml
- netsh
- Mac
- 줄바꿈 문자
- find
- vscode
- ssh
- bash
- import
- xargs
- context
- grep
- GIT
- Eclipse
- 네트워크
- Quartz
- 단축키
- JavaScript
- Source
- IntelliJ
- lsof
- Windows
- tomcat
- resource
- port
- maVen
- Today
- Total
목록전체 글 (1813)
develog
windows key + + 돋보기windows key + . 이모지
Text Editor > Diff Editor* Max Computation Time
https://github.com/spring-attic/toolsuite-distribution/wiki/Spring-Tool-Suite-3 Spring Tool Suite 3the distribution build for the Spring Tool Suite and the Groovy/Grails Tool Suite - spring-attic/toolsuite-distributiongithub.com
* 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;
* OS Environment Variable- OS 레벨- export db_user=test- System.getenv("key")* VM Options- JVM 레벨- java -Ddb_user=test -jar app.jar- System.getProperty("key")* Program arguments- APP 레벨- java -jar app.jar --db_user=test- @Value("${key}") 1. Program arguments (--key=value)2. VM Options (-Dkey=value)3. OS Environment Variables (KEY=value)4. application.properties / application.yml우선순위는 1 > 2 > 3 > 4