简体   繁体   中英

How can I check variable annotations?

我有来自spring,junit jar的注释。如何检查一个注释仅适用于类变量?

Check their javadoc. For example: @RunWith has a @Target(value=TYPE) annotation, so it's only applicable to types. @Test has a @Target(value=METHOD) annotation, so it's only applicable to methods.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM