如何在括号内没有属性名称的自定义Java注释?
我不想要这个:@annotation_name(att = valor).我只想在Servlets中,即:
@WebServlet("/main")
解决方法:
使用名为value的属性定义注释,然后可以省略属性名称:
@interface CustomAnnotation
{
String value();
}
这可以这样使用:
@CustomAnnotation("/main")
// ...
2023-07-25 08:11:34
如何在括号内没有属性名称的自定义Java注释?
我不想要这个:@annotation_name(att = valor).我只想在Servlets中,即:
@WebServlet("/main")
解决方法:
使用名为value的属性定义注释,然后可以省略属性名称:
@interface CustomAnnotation
{
String value();
}
这可以这样使用:
@CustomAnnotation("/main")
// ...