親愛的朋友們不調用方法操作名稱,動作URL在Spring MVC
我試圖執行Spring MVC的形式示例Web項目。
當我嘗試擊中帶有動作名稱的網址時,相應的視圖不會調用 ,但是如果嘗試使用視圖名稱(/viewname.html)調用URL,則會顯示它。
我已經看過很多示例,並且很想知道爲什麼我的代碼不是基於 操作名稱調用的。
我的示例代碼:
控制器:
@Controller
@RequestMapping("/test")
public class TestController {
@RequestMapping(value="/login",method = RequestMethod.GET)
public String login(ModelMap model){
model.addAttribute("message","Welcome Jagan");
return "login";
}
}
爲spring-servlet.xml:
我的servlet配置文件
<?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"
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="controller"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
web.xml中: 我的網站的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>SpringMVCWithJSP</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
的login.jsp:有一些可喜的內容
如果我嘗試打以下網址
http://localhost:8082/SpringMVCWithJSP/test/login => not invoking login page.
ttp://localhost:8082/SpringMVCWithJSP/test/login.html => successfully invoking login page .
我問題是爲什麼登錄操作名稱不是直接調用login.jsp,而是隻使用.../test/login.html
而不是.../test/login
任何想法來解決這個朋友?
因爲你映射了Servlet只響應帶'* .html'模式的請求。如果你不添加'.html'到URL,servlet將不會聽它(因爲它不匹配模式) – ochi 2014-12-19 07:57:38