Spring-MVC环境搭建以及URL映射地址配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-MVC环境搭建以及URL映射地址配置相关的知识,希望对你有一定的参考价值。

参考技术A 环境配置:maven+jdk1.8+IDEA+jetty/Tomcat(两者都可用)

<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->

<dependency>

    <groupId>org.springframework</groupId>

    <artifactId>spring-web</artifactId>

    <version>5.2.4.RELEASE</version>

</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->

<dependency>

    <groupId>org.springframework</groupId>

    <artifactId>spring-webmvc</artifactId>

    <version>5.2.4.RELEASE</version>

</dependency>

<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->

<dependency>

    <groupId>javax.servlet</groupId>

    <artifactId>javax.servlet-api</artifactId>

    <version>3.1.0</version>

    <scope>provided</scope>

</dependency>

<!-- tomcat服务器-->

      <plugin>

        <groupId>org.apache.tomcat.maven</groupId>

        <artifactId>tomcat7-maven-plugin</artifactId>

        <version>2.1</version>

        <configuration>

          <port>8080</port>

          <path>/maven03</path>

          <uriEncoding>UTF-8</uriEncoding>

          <server>tomcat7</server>

        </configuration>

      </plugin>

<jetty>

<plugin>

<groupId>org.eclipse.jetty</groupId>

<artifactId>jetty-maven-plugin</artifactId>

  <version>9.4.27.v20200227</version>

<configuration>

    <scanIntervalSeconds>10</scanIntervalSeconds>

<httpConnector>

      <port>8080</port>

</httpConnector>

<webAppConfig>

  <contextPath>/springmvc01</contextPath>

</webAppConfig>

</plugin>

<?xml version="1.0" encoding="UTF-8"?>

<web-app id="webapp_ID" version="3.0"

        xmlns="http://java.sun.com/xml/ns/javaee"

        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee

        http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

<!--  编码过滤器  utf-8-->

  <filter>

    <description>char encoding filter</description>

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

<!--  -->

  <servlet>

    <servlet-name>springMvc</servlet-name>

    <servlet-class>

      org.springframework.web.servlet.DispatcherServlet

    </servlet-class>

    <init-param>

      <param-name>contextConfigLocation</param-name>

      <param-value>classpath:servlet-context.xml</param-value>

    </init-param>

    <!-- 使系统在启动时装在servlet而不是第一个servlet被访问 -->

    <load-on-startup>1</load-on-startup>

  </servlet>

<!--设置拦截器  拦截所有.do的请求  如果是“/”则为拦截所有-->

  <servlet-mapping>

    <servlet-name>springMvc</servlet-name>

    <url-pattern>*.do</url-pattern>

  </servlet-mapping>

</web-app>

<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

                          http://www.springframework.org/schema/context/spring-context.xsd

                          http://www.springframework.org/schema/mvc

                          http://www.springframework.org/schema/mvc/spring-mvc.xsd">

<!--    开启自动扫描-->

    <context:component-scan base-package="com.BHL.springmvc.controller"/>

<!--    使用默认的servlet来响应静态文件-->

    <mvc:default-servlet-handler/>

<!--    开启注解驱动-->

    <mvc:annotation-driven/>

<!--    配置视图解析器-->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"

            id="internalResourceViewResolver">

<!--        前缀  在WEB-INF目录下的jsp目录下的资源-->

        <property name="prefix" value="/WEB-INF/jsp/"></property>

<!--      后缀 以.jsp结尾的资源-->

        <property name="suffix" value=".jsp"></property>

    </bean>

</beans>

/**

* 页面控制器

*/

@Controller

public class controller01

    /**

    * 视图返回的名称

    *      hello.do

    * @return

    */

    @RequestMapping("/hello")

    public ModelAndView hello()

        //设置模型

        ModelAndView modelAndView = new ModelAndView();

        //设置数据

        modelAndView.addObject("hello","ddd");

        //设置视图名称

        modelAndView.setViewName("hello");

        //返回视图模型

        return modelAndView;

   



通过该注解可以将请求路径与方法进行绑定,可声明在类级别和方法级别

使用方式:@RequestMapping("/请求路径")

注:(“/”  可以加也可以不加,建议加上)

声明级别:1.方法级别  2.类级别+方法级别

声明方式:@RequestMapping("/请求路径")

例子:

声明方式:@RequestMapping("/请求路径1","/请求路径2","/请求路径3")

例子:

说明:在类上声明父路径,然后在方法上声明子路径

访问地址:/类路径/方法路径

声明方式:@RequestMapping(value="/请求路径",method=RequestMethod.GET)

声明方式:@RequestMapping(params="参数名称")

访问地址:地址+?+参数名称

以上是关于Spring-MVC环境搭建以及URL映射地址配置的主要内容,如果未能解决你的问题,请参考以下文章

Hadoop运行环境搭建

MyBatis下载和环境搭建

Mybatis入门级学习-环境搭建

MyBatis环境搭建

MyBatis(一) —— 环境搭建

vue-cli3 配置不同环境请求地址,以及打包到不同文件夹