App下載

SpringMVC工程的搭建過(guò)程-----詳細(xì)步驟!

猿友 2021-07-15 14:14:51 瀏覽數(shù) (4592)
反饋

一、創(chuàng)建項(xiàng)目

1、新建一個(gè)項(xiàng)目名為:springmvc-demo-yuyongqing

右鍵項(xiàng)目名選擇Add Framework Support

新建項(xiàng)目

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配置內(nèi)容

SpringMVC配置內(nèi)容

 <!-- 自動(dòng)掃描包,讓指定包下的注解生效,由IOC容器統(tǒng)一管理 -->
  <context:component-scan base-package="controller"/>
  
<!-- 1加載注解驅(qū)動(dòng) -->
<mvc:annotation-driven/>
 <!-- 2靜態(tài)資源過(guò)濾 -->
<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層

新建一個(gè)HelloController類(lèi)

新建HelloController類(lèi)

 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");

 // 返回的字符串就是視圖的名字 會(huì)被視圖解析器處理
 return "hello";
 }
}

4、JSP

在JSP包下新建hello.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、設(shè)置啟動(dòng)級(jí)別

<!-- 設(shè)置啟動(dòng)級(jí)別 -->
<load-on-startup>1</load-on-startup>
</servlet>

4、設(shè)置SpringMVC攔截請(qǐng)求

<!-- 設(shè)置SpringMVC攔截請(qǐng)求 -->
<servlet-mapping>
 <servlet-name>springmvc</servlet-name>
 <url-pattern> / </url-pattern> <!--攔截除.jsp的請(qǐng)求-->
</servlet-mapping>

5、亂碼過(guò)濾

 <!-- 亂碼過(guò)濾 -->
<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、運(yùn)行web

打包
File→Project Structure

File→Project Structure

刪除默認(rèn)的包

刪除默認(rèn)包

添加包

點(diǎn)ok→ok

點(diǎn)擊ok

四、配置TomCat

1、點(diǎn)擊 Add Configuration… 進(jìn)入運(yùn)行配置框

進(jìn)入運(yùn)行配置框

2、點(diǎn) + 選擇Tomcat Server 下的 Local

點(diǎn) + 選擇Tomcat Server 下的 Local

3、點(diǎn)擊 Configure 選擇我們自己的TomCat

點(diǎn) + 選擇Tomcat Server 下的 Local

選擇我們自己的TomCat

五、運(yùn)行TomCat

運(yùn)行tomcat

在瀏覽器輸入http://localhost:8080/hello

瀏覽器輸入

瀏覽器輸出

外鏈:
https://mvnrepository.com/

關(guān)于Java SpringMVC框架以及Spring MVC框架搭建過(guò)程的詳細(xì)步驟就介紹到此,更多相關(guān)SpringMVC內(nèi)容請(qǐng)搜索W3Cschool以前的文章或繼續(xù)瀏覽下面的相關(guān)文章!


0 人點(diǎn)贊