2016-04-13 52 views
0

嗨我是新来的Spring Security我正在做一个简单的Sppring安全程序,但没有得到春季安全自动生成的登录页面。
这是我的控制器没有获得弹簧安全自动生成登录页

import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestParam; 
import org.springframework.web.servlet.ModelAndView; 

@Controller 
public class HelloWorldController { 

    String message = "Welcome to Spring MVC!"; 

    @RequestMapping("/hello") 
    public ModelAndView showMessage(
      @RequestParam(value = "name", required = false, defaultValue = "World") String name) { 
     System.out.println("in controller"); 

     ModelAndView mv = new ModelAndView("helloworld"); 
     mv.addObject("message", message); 
     mv.addObject("name", name); 
     return mv; 
    } 

    @RequestMapping("/") 
    public ModelAndView showIndex() { 
     System.out.println("in index controller"); 

     ModelAndView mv = new ModelAndView("index"); 
     return mv; 
    } 

    @RequestMapping("/admin") 
    public ModelAndView showMessageAdmin() { 
     System.out.println("in controller"); 

     ModelAndView mv = new ModelAndView("helloworld"); 
     return mv; 
    } 
} 

这是我的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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> 


    <display-name>Archetype Created Web Application</display-name> 

    <servlet> 
     <servlet-name>dispatcher</servlet-name> 
     <servlet-class> 
      org.springframework.web.servlet.DispatcherServlet 
     </servlet-class> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 
    <welcome-file-list> 
    <welcome-file>index.jsp</welcome-file> 

    </welcome-file-list> 
    <servlet-mapping> 
     <servlet-name>dispatcher</servlet-name> 
     <url-pattern>/</url-pattern> 
    </servlet-mapping> 

    <context-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value> 
     /WEB-INF/dispatcher-servlet.xml 
     /WEB-INF/spring-security.xml</param-value> 
    </context-param> 

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

    <listener> 
     <listener-class> 
      org.springframework.web.context.ContextLoaderListener 
     </listener-class> 
    </listener> 

</web-app> 

这是我的Spring Security XML类

<beans:beans xmlns="http://www.springframework.org/schema/security" 
xmlns:beans="http://www.springframework.org/schema/beans"   
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-4.0.xsd 
http://www.springframework.org/schema/security 
http://www.springframework.org/schema/security/spring-security-4.0.xsd"> 
    <http auto-config="true"> 
     <intercept-url pattern="/admin" access="ROLE_ADMIN" /> 
    </http> 
    <authentication-manager> 

     <authentication-provider> 
     <user-service> 
     <user name="Hello" password="Pass" authorities="ROLE_USER" /> 
     </user-service> 
     </authentication-provider> 
    </authentication-manager> 
</beans:beans> 

这是我的调度员servlet.xml中

<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.ge.web.Controller" /> 

    <bean 
     class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix"> 
      <value>/WEB-INF/views/</value> 
     </property> 
     <property name="suffix"> 
      <value>.jsp</value> 
     </property> 
    </bean> 
</beans> 

/admin我想通过默认登录页面获取Spring Security进行身份验证。但我没有得到它它直接去看我怎么能得到它我错了? 在此先感谢....

回答

0

首先修复你web.xml:您不需要在上下文参数去指定/WEB-INF/dispatcher-servlet.xml,因为该文件是src/main/webapp/WEB-INF这是调度servlet的默认位置下。

<?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" id="WebApp_ID" version="3.0"> 

    <display-name>Archetype Created Web Application</display-name> 

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

    <welcome-file-list> 
     <welcome-file>index.jsp</welcome-file> 
    </welcome-file-list> 

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

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

    <listener> 
     <listener-class> 
      org.springframework.web.context.ContextLoaderListener 
     </listener-class> 
    </listener> 

</web-app> 
在普林安全XML

然后:在这里,你失踪这是需要得到默认的登录表单<form-login /><logout />

<beans:beans xmlns="http://www.springframework.org/schema/security" 
    xmlns:beans="http://www.springframework.org/schema/beans"   
    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-4.0.xsd 
    http://www.springframework.org/schema/security 
    http://www.springframework.org/schema/security/spring-security-4.0.xsd"> 

    <http> 
     <intercept-url pattern="/admin" access="ROLE_ADMIN" /> 
     <form-login /> 
     <logout /> 
    </http> 

    <authentication-manager> 
     <authentication-provider> 
     <user-service> 
     <user name="Admin" password="AdminPassword" authorities="ROLE_USER, ROLE_ADMIN" /> 
     </user-service> 
     </authentication-provider> 
    </authentication-manager> 

</beans:beans> 
+0

它直接重定向到admin.jsp页面默认登录页面没有来...... – priyanka

+0

你试过上面的设置吗?复制和粘贴上面的文件,它应该工作。如果你还没有获得登录页面,那么试试这个' ...' –