2014-03-24 52 views
0

在我的春天应用程序,我有后续的web.xml文件:的配置在Spring Web应用程序URL模式在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" id="WebApp_ID" version="3.0"> 
    <display-name>HorarioLivre2</display-name> 

    <welcome-file-list> 
    <welcome-file>acesso/login.html</welcome-file> 
    </welcome-file-list> 

    <servlet> 
    <servlet-name>HorarioLivre2</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <load-on-startup>1</load-on-startup> 
    </servlet> 

    <servlet-mapping> 
    <servlet-name>HorarioLivre2</servlet-name> 
    <url-pattern>*.html</url-pattern> 
    </servlet-mapping> 
</web-app> 

我的问题是:尽管这样的页面被正确地找到,如果我将url-pattern更改为“/”,则无法访问任何页面(既不是登录页面也不是我项目中的第一个页面)。我甚至尝试了几种欢迎文件组合,例如acesso/login,acesso/login /,/ acesso/login,/ acesso/login /等等)。

我的弹簧servlet.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:p="http://www.springframework.org/schema/p" 
     xmlns:context="http://www.springframework.org/schema/context" 
     xmlns:mvc="http://www.springframework.org/schema/mvc" 
     xmlns:tx="http://www.springframework.org/schema/tx" 
     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 
     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 
     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> 

     <context:component-scan base-package="com.horariolivre"/> 
      <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver"> 
       <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> 
       <property name="prefix" value="/WEB-INF/jsp/" /> 
       <property name="suffix" value=".jsp" /> 
      </bean> 

     <context:annotation-config> 
      <bean class="com.horariolivre.resources.HibernateConfig"> 
      </bean> 
     </context:annotation-config> 

     <tx:annotation-driven transaction-manager="transactionManager"/> 
</beans> 

和的我的控制器是一个:

@Controller 
@RequestMapping(value="acesso") 
public class PrimaryController { 

    @Autowired 
    private SessaoHome sessao; 

    @Autowired 
    private UsuarioHome usuario; 

    @RequestMapping(value="login") 
    public ModelAndView login() { 
     ModelAndView mav = new ModelAndView(); 
     mav.setViewName("acesso/login"); 
     return mav; 
    } 
    (...) 
} 

有人知道我应该在url-pattern的使用正确的路径“/ “?

+0

?什么网址? –

+0

就像我说过的,我曾尝试过几种组合,但都没有工作:acesso/login,acesso/login /,/ acesso/login,/ acesso/login /。 –

回答

0

当您更改模式`/`,你怎么尝试访问您的登录页面你可以给你的url-pattern为*/*

+0

我曾尝试/ *,但不能工作,我运行了一些没有问题的url-pattern /的例子。我想用这个,因为我认为有更大的范围。 –

相关问题