您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
SpringMVC是Spring的一个组件,所以我们在使用SpringMVC的时候也会使用到Spring
使用环境
1、导包
需要引入Spring-web和Spring-webmvc两个包,可以到maven仓库里面去下载或者使用maven依赖
2、ApplicationContext.xml配置(Spring的核心配置文件)
<?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:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd"> <!-- 开启spring注解驱动--> <context:component-scan base-package="com.cjh"/> <!-- 开启mvc注解驱动--> <mvc:annotation-driven></mvc:annotation-driven> </beans>
3、web.xml配置
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> <servlet> <servlet-name>mvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <!-- 说明Spring核心配置文件的位置--> <param-value>classpath:ApplicationContext.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>mvc</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> </web-app>
4、java的实现
Controller类
@Controller @RequestMapping("userController.do") public class UserController { public UserController(){ System.out.println("controller创建了"); } @RequestMapping public void test(){ System.out.println("controller:test方法执行了"); } }
index.jsp
<%@ page contentType="text/html; charset=UTF-8" language="java" %> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>cai jin hong</title> <style> </style></head> <body> <a href="userController.do" rel="external nofollow" >测试</a> </body> </html>
请求和响应流程:
如果只有一个方法,可以不用写名字,直接写RequestMapping
如果有多个方法,需要注明方法名
本篇文章只讲了一下最基本的时候,下一篇文章会详细的说的SpringMVC请求和响应的处理!!!
以上就是SpringMVC---配置与使用的示例的详细内容,更多关于SpringMVC---配置与使用的资料请关注亿速云其它相关文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。