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 | 29 | 30 | 31 |
Tags
- profile
- Eclipse
- plugin
- Windows
- web.xml
- port
- tomcat
- Mac
- resource
- Quartz
- grep
- find
- lsof
- xargs
- import
- IntelliJ
- bash
- 단축키
- maVen
- VirtualBox
- ssh
- context
- netsh
- GIT
- 네트워크
- vscode
- 줄바꿈 문자
- Source
- Windows 10
- JavaScript
Archives
- Today
- Total
develog
Annotation 정의 본문
// Marker annotation 정의
public @interface MyAnnotation {
}
// Marker annotation 사용
@MyAnnotation
// Single-value annotation 정의
public @interface MyAnnotation {
String value();
}
// Single-value annotation 사용
@MyAnnotation("some data")
// Full annotation 정의
public @interface MyAnnotation {
String name();
String age();
String gender();
}
// Full annotation 사용
@MyAnnotation(name="", age="", gender="")
// default 값 사용
public @interface MyAnnotation {
String name() default "TEST";
String age();
String gender();
}
@MyAnnotation(age="", gender="")
'Dev > Java' 카테고리의 다른 글
Spring 3 Annotations (0) | 2012.11.06 |
---|---|
Built-in Annotation (0) | 2012.11.06 |
Annotation 종류 (0) | 2012.11.06 |
Reflection (0) | 2012.11.06 |
Reflection Test (0) | 2012.11.06 |
Comments