Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/384.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Spring框架,控制器预授权中的自定义函数_Java_Spring_Spring Mvc_Spring Security - Fatal编程技术网

Java Spring框架,控制器预授权中的自定义函数

Java Spring框架,控制器预授权中的自定义函数,java,spring,spring-mvc,spring-security,Java,Spring,Spring Mvc,Spring Security,我是spring的新手,我正在努力学习如何开发一个简单的应用程序 这是数据库的架构: 这非常简单,每个用户都必须先登录,一旦登录,就会显示一个团队列表,其中有管理员。该信息存储在表team_members中 当用户试图编辑或访问要编辑其中一个团队的页面时,就会出现我的问题。这是我的控制器来执行此操作: @RequestMapping(value="teams/{id}/edit", method=RequestMethod.GET) public ModelAndView editTe

我是spring的新手,我正在努力学习如何开发一个简单的应用程序

这是数据库的架构:

这非常简单,每个用户都必须先登录,一旦登录,就会显示一个团队列表,其中有管理员。该信息存储在表team_members中

当用户试图编辑或访问要编辑其中一个团队的页面时,就会出现我的问题。这是我的控制器来执行此操作:

@RequestMapping(value="teams/{id}/edit", method=RequestMethod.GET)
    public ModelAndView editTeamPage(@PathVariable Integer id) {
        ModelAndView modelAndView = new ModelAndView("edit-team-form");
        Team team = teamService.getTeam(id);
        modelAndView.addObject("team",team);
        return modelAndView;
    }
为了能够访问此页面,必须对该用户进行身份验证和身份验证,但是,我还想检查该用户在team_members表中的角色是否为admin。 所以我的问题是,最好的方法是什么?我是否应该在每个必须验证此条件的控制器函数中插入if?有没有更清洁的解决方案

我试图创造

package com.sports.beans;

import org.springframework.stereotype.Component;

@Component("mySecurityService")
public class MySecurityService {

    public boolean hasPermission(String key) {
        return false;
    }
}

并补充说@PreAuthorize@mySecurityService.hasPermission控制器功能“特殊”,但它不起作用。编辑:方法mySecurityService.hasPermission。。。不叫

这是我的spring-security.xml

spring-database.xml

为了让@PreAuthorize影响代码,您需要确保。例如:

<global-method-security pre-post-annotations="enabled" />
一个常见的问题是,用户将在其控制器上定义安全注释,并在父上下文中定义全局方法安全元素。这是行不通的

全局方法安全元素必须在与您试图保护的资源相同的Spring上下文中定义。因此,例如,如果根ApplicationContext定义了您试图保护的服务bean,那么它还应该引用包含全局方法安全性的配置

对于您的示例,这可能意味着所有配置都应该由web.xml中的以下内容获取:

<context-param>  
    <param-name>contextConfigLocation</param-name>  
    <param-value>  
        /WEB-INF/spring-database.xml,  
        /WEB-INF/spring-security.xml  
    </param-value>  
</context-param>

你说它不起作用是什么意思@PreAuthorize@mySecurityService.hasPermission“特殊”应该可以工作,但是您没有传递检查所需的登录用户id,例如@PreAuthorize@mySecurityService.hasPermissionprincipal“管理员”。当然,您的服务方法需要hasPermissionUserDetails用户,字符串键。方法mySecurityService.hasPermission。。。未调用。可能是配置文件的顺序,请参阅
<?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"
         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>Sports</display-name>

<!-- Spring MVC -->  


    <servlet>  
        <servlet-name>mvc-dispatcher</servlet-name>  
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
        <load-on-startup>1</load-on-startup>  
    </servlet>  
    <servlet-mapping>  
        <servlet-name>mvc-dispatcher</servlet-name>  
        <url-pattern>/</url-pattern>  
    </servlet-mapping>  
    <listener>  
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
    </listener>  

    <context-param>  
        <param-name>contextConfigLocation</param-name>  
        <param-value>  
            /WEB-INF/spring-database.xml,  
            /WEB-INF/spring-security.xml  
        </param-value>  

    </context-param>  

 <!-- Spring Security -->

 <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>


    <filter>
        <filter-name>hibernateFilter</filter-name>
        <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
        <init-param>
            <param-name>singleSession</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>hibernateFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

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



    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/test_sports"/>
        <property name="username" value="root"/>
        <property name="password" value="lol123" /> 
    </bean>
    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

        <property name="dataSource" ref="dataSource"/>
        <property name="annotatedClasses">
           <list>
                <value>com.sports.models.User</value>
                <value>com.sports.models.UserRole</value>
                <value>com.sports.models.Team</value>
                <value>com.sports.models.TeamMember</value>
           </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.format_sql">true</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
    </bean>
    <bean id="userDao" class="com.sports.dao.UserDaoImpl">
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

    <context:component-scan base-package="com.sports" />

    <bean id="myUserDetailsService" class="com.sports.service.MyUserDetailsService">
        <property name="userDao" ref="userDao"/>
    </bean>
    <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="get*" read-only="true"/>
            <tx:method name="find*" read-only="true"/>
            <tx:method name="*"/>
        </tx:attributes>
    </tx:advice>
    <aop:config>
        <aop:pointcut id="userServicePointCut" expression="execution(* com.sports.service.*Service.*(..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="userServicePointCut"/>
    </aop:config>
</beans>
<beans xmlns="http://www.springframework.org/schema/beans" 
        xmlns:context="http://www.springframework.org/schema/context" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
                            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
                            http://www.springframework.org/schema/context 
                            http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:component-scan base-package="com.sports.*"/>
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix">
            <value>/WEB-INF/pages/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>
</beans>
<global-method-security pre-post-annotations="enabled" />
<context-param>  
    <param-name>contextConfigLocation</param-name>  
    <param-value>  
        /WEB-INF/spring-database.xml,  
        /WEB-INF/spring-security.xml  
    </param-value>  
</context-param>