SpringMVC的工程搭建步驟實現(xiàn)
一、創(chuàng)建項目
1、新建一個項目名為:springmvc-demo-yuyongqing
右鍵項目名選擇Add Framework Support
2、選擇Web Application
3、配置SpringMVC
pom.xml
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.13.RELEASE</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> </dependencies>
刷新maven后再加入如下圖所示代碼
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> </build>
二、配置核心文件
1、
<?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 http://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 "> <!-- bean definitions here -->
2、添加SpringMVC配置內容
<!-- 自動掃描包,讓指定包下的注解生效,由IOC容器統(tǒng)一管理 --> <context:component-scan base-package="controller"/> <!-- 1加載注解驅動 --> <mvc:annotation-driven/> <!-- 2靜態(tài)資源過濾 --> <mvc:default-servlet-handler/> <!-- 3視圖解析器 --> <bean id="internalResourceViewResolver" class= "org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean>
3、Controller層
新建一個HelloController類
package controller; @Controller public class HelloController { @RequestMapping("/hello") public String hello(Model model){ // Model 封裝數(shù)據(jù) model.addAttribute("msg","HELLO MY FIRST SPRING MVC PROJECT"); // 返回的字符串就是視圖的名字 會被視圖解析器處理 return "hello"; } }
4、JSP
在JSP包下新建hello.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> ${msg} </body> </html>
三、web.xml
1、配置前端控制器
<!-- 配置前端控制器 --> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
2、配置初始化參數(shù)
<!-- 配置初始化參數(shù) --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationcontext.xml</param-value> </init-param>
3、設置啟動級別
<!-- 設置啟動級別 --> <load-on-startup>1</load-on-startup> </servlet>
4、設置SpringMVC攔截請求
<!-- 設置SpringMVC攔截請求 --> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern> / </url-pattern> <!--攔截除.jsp的請求--> </servlet-mapping>
5、亂碼過濾
<!-- 亂碼過濾 --> <filter> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
6、運行web
打包
File→Project Structure
刪除默認的包
點ok→ok
四、配置TomCat
1、點擊 Add Configuration… 進入運行配置框
2、點 + 選擇Tomcat Server 下的 Local
3、點擊 Configure 選擇我們自己的TomCat
五、運行TomCat
在瀏覽器輸入http://localhost:8080/hello
外鏈:
https://mvnrepository.com/
到此這篇關于SpringMVC的工程搭建步驟實現(xiàn)的文章就介紹到這了,更多相關SpringMVC的工程搭建 內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
使用IDEA創(chuàng)建SpringBoot項目的方法步驟
這篇文章主要介紹了使用IDEA創(chuàng)建SpringBoot項目的方法步驟,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-05-05Java中system.exit(0) 和 system.exit(1)區(qū)別
本文主要介紹了Java中system.exit(0) 和 system.exit(1)區(qū)別,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2023-05-05Java基于elasticsearch實現(xiàn)集群管理
這篇文章主要介紹了java基于elasticsearch實現(xiàn)集群管理,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2020-02-02spring+srpingmvc+hibernate實現(xiàn)動態(tài)ztree生成樹狀圖效果
這篇文章主要介紹了spring+srpingmvc+hibernate動態(tài)ztree生成樹狀圖效果,本文通過實例代碼給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下2019-11-11JAVA多線程之中斷機制stop()、interrupted()、isInterrupted()
這篇文章主要介紹了JAVA多線程之中斷機制stop()、interrupted()、isInterrupted()的相關資料,需要的朋友可以參考下2016-05-05