일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 |
30 | 31 |
- maVen
- Source
- Mac
- grep
- 줄바꿈 문자
- plugin
- netsh
- GIT
- Quartz
- bash
- tomcat
- VirtualBox
- import
- find
- port
- IntelliJ
- resource
- context
- vscode
- ssh
- JavaScript
- web.xml
- Windows
- xargs
- profile
- 단축키
- Windows 10
- 네트워크
- lsof
- Eclipse
- Today
- Total
목록Dev/Java (163)
develog
List list = new ArrayList() {{ add(new HashMap() {{ put("GT_CALENDAR_TYPE", "TI3001"); put("HDAY_DT", "20140101"); put("HDAY_NM", "신정"); }}); add(new HashMap() {{ put("GT_CALENDAR_TYPE", "TI3001"); put("HDAY_DT", "20140301"); put("HDAY_NM", "삼일절"); }});}};
Map map = new HashMap() {{ put("GD", "11"); put("NM", "aa");}};
Spring @Transactional explainedhttp://doanduyhai.wordpress.com/2011/11/20/spring-transactional-explained/
Mixing Spring AOP Declarative Transaction with @Transactionalhttps://gist.github.com/rponte/3181934
http://docs.oracle.com/javase/tutorial/java/generics/types.html Type Parameter Naming Conventions By convention, type parameter names are single, uppercase letters. This stands in sharp contrast to the variable naming conventions that you already know about, and with good reason: Without this convention, it would be difficult to tell the difference between a type variable and an ordinary class o..
TestMain2public class TestMain2 { public static void main(String[] args) { TestMain2 main = new TestMain2(); Object ret = main.template(new TestJob() { public Object doJob(int num1, int num2) { return num1 + num2; } }, 11, 22); System.out.println("ret : " + ret); } private Object template(TestJob job, int num1, int num2) { Object ret = null;try {ret = job.doJob(num1, num2);} catch (Exception e) ..