2014-03-24 79 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 /的例子。我想用這個,因爲我認爲有更大的範圍。 –

相關問題