1

カスタム PermissionEvaluator を実装し、次のように構成しました

<security:http access-denied-page="/" auto-config="true" use-expressions="true">
    <security:anonymous />
    <security:form-login always-use-default-target="false" default-target-url="/people/login/redirect" login-page="/people/login" login-processing-url="/people/login/submit" password-parameter="password" username-parameter="emailAddress" />
    <security:logout delete-cookies="true" invalidate-session="true" logout-success-url="/people/login/redirect" logout-url="/people/logout" />
</security:http>

<security:authentication-manager erase-credentials="false">
    <security:authentication-provider ref="authenticationProvider" />
</security:authentication-manager>

<security:global-method-security jsr250-annotations="enabled" pre-post-annotations="enabled" secured-annotations="enabled" >
    <security:expression-handler ref="expressionHandler"/>
</security:global-method-security>


<bean id="expressionHandler" class="org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler">
     <property name="permissionEvaluator" ref="appPermissionEvaluator"/>
</bean>

<bean class="com.web.security.ApplicationPermissionEvaluator" id="appPermissionEvaluator" />

次に、次のように、ControllerClass の 1 つのメソッドに hasPermissionCheck を適用しました。

@PreAuthorize("hasPermission(#accountCode, 'AdministerPosition')")
    @RequestMapping(method = RequestMethod.GET, value =  "/cloud/{account}/position")
    public String list(@PathVariable String account, @RequestParam(required = false, value = URLParameter.ACCOUNT_CODE) final String accountCode, final Model model) {

}

この場合、ApplicationPermissionEvaluatorクラスでコントロールを取得することはありません。

DenyAllPermissionEvaluator私の場合、次のエラーメッセージで常に実行されることがわかりました

DenyAllPermissionEvaluator - Denying user ****** permission 'AdministerPosition'

これについて至急アドバイスをください。私は本当にこれにこだわっています。

4

1 に答える 1

1

<security:global-method-security ..>これを機能させる方法は、メインコンテキストではなく、Spring MVC コンテキストで構成することです

つまりここにmvc-servlet-context.xml

 <servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:META-INF/spring/mvc-servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
于 2013-02-20T13:44:09.243 に答える