91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么搭建一個SpringMVC工程

發布時間:2021-04-07 18:01:37 來源:億速云 閱讀:353 作者:Leah 欄目:開發技術

怎么搭建一個SpringMVC工程?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、創建項目

1、新建一個項目名為:springmvc-demo-yuyongqing

右鍵項目名選擇Add Framework Support

怎么搭建一個SpringMVC工程

2、選擇Web Application

怎么搭建一個SpringMVC工程

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后再加入如下圖所示代碼

怎么搭建一個SpringMVC工程

<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>

二、配置核心文件

怎么搭建一個SpringMVC工程

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配置內容

怎么搭建一個SpringMVC工程

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

怎么搭建一個SpringMVC工程

 package controller;

@Controller
public class HelloController {

@RequestMapping("/hello")
public String hello(Model model){
 // Model 封裝數據
 model.addAttribute("msg","HELLO MY FIRST SPRING MVC PROJECT");

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

4、JSP

在JSP包下新建hello.jsp

怎么搭建一個SpringMVC工程

 <%@ 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、配置初始化參數

<!-- 配置初始化參數 -->
<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

怎么搭建一個SpringMVC工程

刪除默認的包

怎么搭建一個SpringMVC工程

怎么搭建一個SpringMVC工程

點ok→ok

怎么搭建一個SpringMVC工程

四、配置TomCat

1、點擊 Add Configuration… 進入運行配置框

怎么搭建一個SpringMVC工程

2、點 + 選擇Tomcat Server 下的 Local

怎么搭建一個SpringMVC工程

3、點擊 Configure 選擇我們自己的TomCat

怎么搭建一個SpringMVC工程

怎么搭建一個SpringMVC工程

五、運行TomCat

怎么搭建一個SpringMVC工程

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

怎么搭建一個SpringMVC工程

怎么搭建一個SpringMVC工程

關于怎么搭建一個SpringMVC工程問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大丰市| 台南市| 登封市| 弥勒县| 沽源县| 梁平县| 扶沟县| 岳阳市| 鄂伦春自治旗| 长顺县| 湖南省| 武城县| 博野县| 韩城市| 合川市| 杭锦旗| 美姑县| 来安县| 庄浪县| 天镇县| 尉氏县| 宁德市| 新干县| 通州市| 铅山县| 平陆县| 交城县| 嘉义县| 双牌县| 阳江市| 成武县| 响水县| 特克斯县| 雷山县| 麻城市| 根河市| 琼结县| 清水县| 哈尔滨市| 沙雅县| 上饶市|