是否可以通过struts2中的struts配置文件转发参数或在拦截器类中设置属性值?类似的东西:
<interceptor-ref name="authorizationInterceptor">
<param name="role">SuperUser</param>
<param name="accessType">Write</param>
</interceptor-ref>
我想在autorization Interceptor中访问角色和accessType。有可能吗?