欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringMVC的工程搭建步骤实现

程序员文章站 2022-06-25 18:30:48
一、创建项目1、新建一个项目名为:springmvc-demo-yuyongqing右键项目名选择add framework support2、选择web application3、配置springm...

一、创建项目

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的工程搭建步骤实现的文章就介绍到这了,更多相关springmvc的工程搭建 内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!