注解实现HelloSpringMVC
maven可能存在资源过滤的问题,完善配置:
<!--在build中配置resources,来防止我们资源导出失败的问题-->
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
1.web.xml注册servlet、配置DispatchServlet,其中再servlet和servlet-mapping中的servlet-name名字要一致!接着要绑定Spring的配置文件:contextConfigLocation,value值为你要建的xml文件的名字。(这里是springmvc-servlet.xml),并开启级别,1级表示和服务器一起运行!
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<!--1.注册servlet-->
<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:springmvc-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringMvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
-
在resource目录下新建springmvc-servlet.xml,开启自动扫描包。同时让让Spring MVC不处理静态资源添加支持mvc注解驱动和视图解析器。
<?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 https://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"> <!--自动扫描包,让指定包下的注解生效,由IOC容器统一管理--> <context:component-scan base-package="com.hao.controller"/> <!--让Spring MVC不处理静态资源 .css .js .html .mp3 .mp4 --> <mvc:default-servlet-handler/> <!-- 支持mvc注解驱动: 在spring中一般采用@RequestMapping注解来完成映射关系 要想使@RequestMapping注解生效 必须向上下文注册DefaultAnnotationHandlerMapping 和一个AnnotationMethodHandlerAdapter实例 这两个实例分别在类级别和方法级别处理。 二annotation-driven配置帮助我们自动完成上述两个实例的注入。 --> <mvc:annotation-driven/> <!--视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> </beans>
-
新建jsp包,在里面新建hello.jsp文件,写入${msg}数据;
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> ${msg} </body> </html>
-
在com.hao.controller包里,新建一个HelloController.java文件。开启注解@Controller,不再配置bean。@RequestMapping是响应,在类上加入一个,在方法上在加入时,如果访问具体方法是,要先写类上的地址,跟方法地址。如下:
package com.hao.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; /* @author chenhao @data 2020/5/31 - 17:48 */ @Controller @RequestMapping("/hello") public class HelloController { //例如这里访问地址是:localhost:8080/hello/h1 @RequestMapping("/h1") public String hello(Model model){ //封装数据 model.addAttribute("msg","hello,SpringMVCAnnotation"); return "hello"; } }
-
配置启动tomcat,效果如下:
==小结:==注解配置,省去了springmvc-servlet.xml配置处理器映射器,处理器适配器。也不在手动注册bean。但需要开启注解支持。大大简化了xml代码的配置。