在控制器方法上使用 @Secured 注释时基于 Spring 安全 JDK 的代理问题

Posted

技术标签:

【中文标题】在控制器方法上使用 @Secured 注释时基于 Spring 安全 JDK 的代理问题【英文标题】:Spring security JDK based proxy issue while using @Secured annotation on Controller method 【发布时间】:2016-06-21 23:44:22 【问题描述】:

我正在做一些 RnD 来学习 Spring Security。在使用方法级别安全性时,我尝试了以下操作:

控制器界面

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

    @RequestMapping("/admin")
    public interface AdminCtrl 

        @RequestMapping(value =  "/get" , method =  RequestMethod.GET )
        public @ResponseBody
        String getSomething();
    

控制器实现类

import org.springframework.security.access.annotation.Secured;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@RequestMapping("/admin")
@Controller
public class AdminCtrlImpl implements AdminCtrl 

    @Override
    @RequestMapping(value = "/get", method = RequestMethod.GET)
    @Secured(value = "ROLE_ADMIN")
    public @ResponseBody
    String getSomething() 

        return SecurityContextHolder.getContext().getAuthentication().getName()
                + "==> Responding with HI";
    


Spring-security.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:security="http://www.springframework.org/schema/security"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd">

    <security:global-method-security
        secured-annotations="enabled" />
    <security:http>
        <security:form-login />
    </security:http>
    <security:authentication-manager>
        <security:authentication-provider>
            <security:user-service>
                <security:user name="alpha" authorities="ROLE_ADMIN"
                    password="password" />
                <security:user name="beta" authorities="ROLE_USER"
                    password="password" />
            </security:user-service>
        </security:authentication-provider>
    </security:authentication-manager>
</beans>

app-context.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:security="http://www.springframework.org/schema/security"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">

    <mvc:annotation-driven />
    <context:component-scan base-package="com.alpha.sample" />
</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
    <display-name>SpringSecurity</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <servlet>
        <servlet-name>springDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/app-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- Map all requests to the DispatcherServlet for handling -->
    <servlet-mapping>
        <servlet-name>springDispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring-security.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

</web-app>

但是当我访问 http://localhost:8080/SpringMethodLevelSecurity/admin/get 时,它总是使用匿名用户登录并总是显示:

anonymousUser==> 以 HI 响应

为什么它没有显示任何身份验证机制屏幕,例如表单登录或 http 登录

__

附:虽然我知道安全注释主要属于服务层。但我想知道上面的指定情况。

谢谢

【问题讨论】:

【参考方案1】:

你应该插入

<security:intercept-url pattern="/admin/get" access="ROLE_ADMIN"/>

&lt;security:http&gt;标签下如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:security="http://www.springframework.org/schema/security"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd">

       <security:global-method-security
               secured-annotations="enabled" />
       <security:http>
              <security:form-login />
              <security:intercept-url pattern="/admin/get" access="ROLE_ADMIN"/>
       </security:http>
       <security:authentication-manager>
              <security:authentication-provider>
                     <security:user-service>
                            <security:user name="alpha" authorities="ROLE_ADMIN"
                                           password="password" />
                            <security:user name="beta" authorities="ROLE_USER"
                                           password="password" />
                     </security:user-service>
              </security:authentication-provider>
       </security:authentication-manager>
</beans>

关键是您的系统已准备好执行安全检查,但您没有指定 Spring Security 必须应用安全检查的 url 模式。

事实上,@Secured 注解执行安全检查,但不是直接在 Web 上下文中而是在“应用程序上下文”中,在 Web 上下文中更正确的方法是配置 &lt;security:http&gt;...&lt;/security:http&gt; 配置的一部分,换句话说,您的配置不起作用,因为您配置的过滤器在 &lt;security:http&gt;...&lt;/security:http&gt;configuration 的基础上起作用 希望对你有帮助

【讨论】:

嗯,是的,我知道我应该把 放在 http 元素中,但我想知道的是为什么它显示匿名用户登录 如果你看到 doc docs.spring.io/spring-security/site/docs/3.0.x/reference/… 你可以看到你有更多的决策投票者,可能是因为在你的配置中你没有为这个 url 模式配置一个角色 spring security 失败了第一个决定voter 但不是第二个,因为您被记录为 Anonymus 这意味着当anonymousUser登录时,它将绕过所有安全性,无论是基于方法还是基于url,因为这里匿名用户没有ADMIN角色(AuthenticatedVoter正在播放AccessDecisionManager) 关键点是我已登录,然后 spring security 使用一些选民来决定您是否拥有资源的权限。在您的第一个代码中,您不会将资源的权限限制为管理员,因此 RoleVoter 不会阻止您的请求。我的建议是根据资源中的角色指定您的安全要求,因为否则您以匿名方式登录但已登录并且您填充安全上下文而不是由于您不限制网络资源的使用系统允许你浏览资源

以上是关于在控制器方法上使用 @Secured 注释时基于 Spring 安全 JDK 的代理问题的主要内容,如果未能解决你的问题,请参考以下文章

Grails 3.0.2 无法解析控制器中的@Secured 注释

Spring Security应用开发(21)基于方法的授权使用@Secured注解

如何使用 Spring Security @Secured 注解测试 Spring Boot @WebFluxTest

使用 Spring Security 的 @Secured 注释中是不是允许多个角色

如何使用基于 Java 的配置启用安全注释?

Spring @Secured 和 @PreAuthorize 不能正常工作(总是状态 403)