本文主要是介绍SpringMVC-RequestMapping注解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
实现SpringMVC最基本步骤1.添加 jar 包
– commons-logging-1.1.3.jar– spring-aop-4.0.0.RELEASE.jar
– spring-beans-4.0.0.RELEASE.jar
– spring-context-4.0.0.RELEASE.jar
– spring-core-4.0.0.RELEASE.jar
– spring-expression-4.0.0.RELEASE.jar
– spring-web-4.0.0.RELEASE.jar
– spring-webmvc-4.0.0.RELEASE.jar
2.在 web.xml 中配置 DispatcherServlet
在web.xml中输入Alt+/ 找到dispatcherservlet回车后,会自动补全要创建的内容。
DispatcherServert的URL设置说明:
<url-pattern>/</url-pattern>不会匹配*.jsp,即所有有效的的*.jsp(WEB-INF不能直接访问)都不会被Dispatcher分发,执行默认处理。除了*.jsp以外的所有网址都会被DispatchServlet进行映射控制。
<url-pattern>/*</url-pattern> 会匹配*.jsp,导致进入spring的DispatcherServlet类,然后去寻找controller,若找不到对应的controller会报错。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" v
这篇关于SpringMVC-RequestMapping注解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!