작성
·
105
1
@Component와 같은 기능을 수행하는 어노테이션 생성 시
@Component내부에 있는
@Rentation(RentationPolicy.RUNTIME)
@Target(ElementType.Type)
@Documented
위 3가지를 가져다 붙여서
@Rentation(RentationPolicy.RUNTIME)
@Target(ElementType.Type)
@Documented
public @interface MyIncludeComponent{
}
로 작성하라 하셨는데
@Component
public @interface MyIncludeComponent{
}
위와 같이 작성은 불가능한가요?
답변 1
1