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

Spring MVC

程序员文章站 2022-06-13 20:49:35
...

Spring MVC简介

Spring Web MVC是一种基于Java的实现了Web MVC设计模式的请求驱动类型的轻量级Web 框架,即使用了MVC架构模式的思想,将web 层进行职责解耦,基于请求驱动指的就是使用请求-响应模型,框架的目的就是帮助我们简化开发.

Spring Web MVC作用

1.非常简单的设计出干净的Web 层和薄薄的Web 层;
2.提供强大的约定大于配置的契约式编程支持;
3.支持灵活的URL到页面控制器的映射;
4.灵活的数据验证、格式化和数据绑定机制,能使用任何对象进行数据绑定,不必实现特定框架的API;
5.提供一套强大的JSP标签库,简化JSP开发;
6.支持灵活的本地化、主题等解析;
7.简单的异常处理;
8.支持Restful风格。

概念图

Spring MVC## xml配置文件

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:util="http://www.springframework.org/schema/util"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/tx
        https://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/util
        http://www.springframework.org/schema/util/spring-util.xsd
        ">
   <!-- 
	筛选所控制的包
	 -->
    <context:component-scan base-package="springboot.mvc.*.action"></context:component-scan>    
	
	<!-- 
	配置视图解析器
	目的:可省略路径前缀后缀
	 -->
	<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/views/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>	
</beans>

实现简单Hello示例

控制层

package springboot.mvc.hello.action;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
//用来注解这个bean是MVC模型中的一个C 会被spring的auto-scan扫到纳入管理
@RequestMapping("/hello")//通过它来指定控制器可以处理哪些URL请求,相当于Servlet中在web.xml中配置 在类上可以省略不写 方法上必须写
public class helloController {
	@RequestMapping("/sayHello")
	public ModelAndView sayHello() {
		ModelAndView mav = new ModelAndView("/hello.jsp");
		mav.addObject("attName", "attName");
		System.out.println("mav");
		return mav;
	}
	@RequestMapping("/hello")
	public String hello() {
		return "hello";//原为 "/views/hello.jsp" 由于xml中配置了视图解析器故可省略
	}
}

页面

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h1>hello World!</h1>
	<div>
		${attName}
	</div>
</body>
</html>
相关标签: spring mvc