您好,登錄后才能下訂單哦!
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。