반응형
Java Annotation에서 문자열 배열을 설정하는 방법
다음과 같은 주석을 선언했습니다.
public @interface CustomAnnot
{
String[] author() default "me";
String description() default "";
}
따라서 유효한 주석은 다음과 같습니다.
@CustomAnnot(author="author1", description="test")
내가 알아낼 수없는 것은 author ()가 String []을 반환하기 때문에 둘 이상의 작성자를 설정하는 방법입니다.
@CustomAnnot(author="author1","autor2", description="test")
작동하지 않습니다!
다음과 같이하십시오.
public @interface CustomAnnot {
String[] author() default "me";
String description() default "";
}
그리고 주석 :
@CustomAnnot(author={"author1","author2"}, description="test")
참고 URL : https://stackoverflow.com/questions/20632940/how-to-set-string-array-in-java-annotation
반응형
'UFO ET IT' 카테고리의 다른 글
모바일 웹 브라우저에서 입력 [type = 'file']을 사용하여 사진을 캡처 한 후 캔버스에서 올바른 방향으로 사진을 그리는 방법은 무엇입니까? (0) | 2020.11.21 |
---|---|
동일한 도메인의 CORS 오류? (0) | 2020.11.21 |
gc () 명령을 사용하여 R에서 가비지 수집을 강제 실행 (0) | 2020.11.21 |
protobuf-csharp-port와 protobuf-net 중에서 선택하는 방법 (0) | 2020.11.21 |
Matplotlib / Pyplot : 서브 플롯을 함께 확대 / 축소하는 방법은 무엇입니까? (0) | 2020.11.21 |