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
- bash
- Source
- maVen
- 단축키
- web.xml
- resource
- find
- netsh
- plugin
- 네트워크
- port
- xargs
- Windows 10
- VirtualBox
- Windows
- Mac
- 줄바꿈 문자
- grep
- Quartz
- GIT
- import
- tomcat
- JavaScript
- vscode
- profile
- Eclipse
- IntelliJ
- context
- ssh
- lsof
Archives
- Today
- Total
develog
Built-in Annotation 본문
@Override
@Deprecated
@SuppressWarnings
@Documented
@Inherited
Meta Annotation (어노테이션 선언에 대한 어노테이션)
@Target
@Retention
@Target 에서 사용 가능한 값
@Type(ElementType.TYPE)
@Type(ElementType.FIELD)
@Type(ElementType.METHOD)
@Type(ElementType.PARAMETER)
@Type(ElementType.CONSTRUCTOR)
@Type(ElementType.LOCAL_VARIABLE)
@Type(ElementType.ANNOTATION_TYPE)
@Type(ElementType.PACKAGE)
// 여러 값 사용시 {} 사용
@Type({ElementType.FIELD, ElementType.METHOD})
@Retention 에서 사용 가능한 값
@Retention(RetentionPolicy.SOURCE) : 소스 코드 에서 사용 가능
@Retention(RetentionPolicy.CLASS) : 소스 코드, 컴파일 코드 에서 사용 가능 (디폴트 값)
@Retention(RetentionPolicy.RUNTIME) : 소스 코드, 컴파일 코드, 런타임 에서 사용 가능
'Dev > Java' 카테고리의 다른 글
spring version 확인 (0) | 2012.11.08 |
---|---|
Spring 3 Annotations (0) | 2012.11.06 |
Annotation 정의 (0) | 2012.11.06 |
Annotation 종류 (0) | 2012.11.06 |
Reflection (0) | 2012.11.06 |
Comments