是否有人获得了javax.servlet.annotation.ServletSecurity
注释的代码示例。
我已经浏览了一下,但我找到的是javadoc页面,它们不会告诉您javax.servlet.annotation.ServletSecurity
和javax.servlet.annotation.HttpMethodConstraint
如何组合在一起以及正确的注释应该如何。
答案 0 :(得分:3)
this example怎么样?它使用:
@ServletSecurity(
@HttpConstraint(rolesAllowed = {"Authorized"})
)