亲爱的朋友们,
我尝试执行Spring MVC表单示例Web项目。
当我尝试用动作名称命中url时,相应的视图没有调用 但如果尝试使用视图名称(/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";
}
}
弹簧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: 我的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>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
有什么想解决这个朋友吗?
答案 0 :(得分:0)
在你web.xml
中,你有这个Servlet Mapping
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
这意味着servlet将仅响应以.html
结尾的URL调用。所以没有什么可以解决的。它按预期工作
请注意,如果您只是将映射保留为*
,那么您将强制servlet处理所有请求(可能是您想要的也可能不是)。建议不要这样做,因为您通常会有不希望由servlet处理的静态文件(例如CSS,JS,PNG等)(它会降低服务器的速度)
下)