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
- mybatis
- 이클립스
- paint
- Spring
- 예외처리
- OGNL
- 국제화
- Android
- struts2
- Menu
- 어노테이션
- 에러페이지
- HTML
- 배열
- Java
- 오버로딩
- 전화걸기
- AWT
- Graphic
- oracle
- 안드로이드
- JSP
- layout
- 생성자
- JavaScript
- 기본
- 메소드
- 메서드
- Eclips
- 클래스
Archives
- Today
- Total
목록annotation (2)
note
Spring 어노테이션(Annotation) 정리
http://www.egovframe.go.kr/wiki/doku.php?do=export_xhtml&id=egovframework%3Arte%3Aptl%3Aannotation-based_controller http://dev.anyframejava.org/anyframe/doc/core/3.2.0/corefw/guide/annotation-dependencies.html http://gyumee.egloos.com/1026938
JSP/Spring
2012. 3. 27. 22:15
Spring @Required 어노테이션(Annotation)
전제 조건 applicationContext.xml 에 applicationContext.xml Camera.javapackage madvirus.spring.chap04.homecontrol; import org.springframework.beans.factory.annotation.Required; public class Camera { private int number; public Camera(){ } @Required public void setNumber(int number) { this.number = number; } @Override public String toString() { return "Camera [number=" + number + "]"; } } Main.java pack..
JSP/Spring
2012. 2. 29. 16:25