Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自 spring、junit jar 的注释。如何检查一个注释是否仅适用于类变量?
检查他们的javadoc。例如:@RunWith有一个@Target(value=TYPE)注解,所以它只适用于类型。@Test有一个@Target(value=METHOD)注解,所以它只适用于方法。
@RunWith
@Target(value=TYPE)
@Test
@Target(value=METHOD)