正确的javax.servlet.annotation.ServletSecurity语法

时间:2011-05-09 13:07:58

标签: servlets java-ee-6 glassfish-3

是否有人获得了javax.servlet.annotation.ServletSecurity注释的代码示例。

我已经浏览了一下,但我找到的是javadoc页面,它们不会告诉您javax.servlet.annotation.ServletSecurityjavax.servlet.annotation.HttpMethodConstraint如何组合在一起以及正确的注释应该如何。

1 个答案:

答案 0 :(得分:3)

this example怎么样?它使用:

@ServletSecurity(
   @HttpConstraint(rolesAllowed = {"Authorized"})
)