本文实例为大家分享了spring mvc框架配置方法,供大家参考,具体内容如下
1、概述
spring mvc 作用:用来实现前端浏览器与后面程序的交互
spring mvc 是基于spring 的mvc框架,所谓mvc(model,controller,view) ,整个spring mvc 作用就是,基于spring 将model(数据)在controller(后台程序) ,view(前端浏览器)之间交互
至于spring mvc优点缺点,了解不深 不作评价,
2、引用的jar包
既然是基于spring那么 spring的核心jar包(beans,context,core,expression,commons-logging)是必须的;spring mvc的相关jar包有个(web,webmvc),特别包(aop)这个包不是必须,但如果基于注解,用以包扫描的时候就必需
3、配置文件
配置文件,就是显式配置程序执行的初始化的文件。配置文件如下:
springmvc-config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?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-4.3.xsd http: //www.springframework.org/schema/context http: //www.springframework.org/schema/context/spring-context-4.3.xsd http: //www.springframework.org/schema/mvc http: //www.springframework.org/schema/mvc/spring-mvc-4.3.xsd"> <!--<context:component-scan base- package = "com.itheima.controller" />--> <!-- 配置处理器handle,映射“/firstcontroller”请求 --> <bean name= "/firstcontroller" class = "com.itheima.controller.firstcontroller" /> <!--<mvc:annotation-driven />--!> <!-- 处理器映射器,将处理器handle的name作为url进行查找 --> <bean class = "org.springframework.web.servlet.handler.beannameurlhandlermapping" /> <!-- 处理器适配器,配置对处理器中handlerequest()方法的调用--> <bean class = "org.springframework.web.servlet.mvc.simplecontrollerhandleradapter" /> <!-- 视图解析器 --> <bean class = "org.springframework.web.servlet.view.internalresourceviewresolver" > </bean> </beans> |
web.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?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_3_1.xsd" version= "3.1" > <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-config.xml</param-value> </init-param> <!-- 表示容器在启动时立即加载servlet --> <load-on-startup> 1 </load-on-startup> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app> |
图片来源(spring mvc dispatcherservlet之前端控制器架构详解)
步骤:1、客户端发起访问,被spring mvc的前端控制器拦截(dispatcherservlet )
2、拦截器会找到映射器(handlermapping),让映射器根据url找到具体的bean,例如 上面如果 url "/firstcontroller" 那么就找到了对应的bean,并反馈给dispatcherservlet
3、dispatcherservlet将到找到的bean交给适配器(handleradapter),由适配器去调用对应的handler(执行bean中的方法)
4、执行完成后,将结果把返回给dispatcherservlet,然后由dispatcherservlet 交给视图解析器(viewreslover)
5、视图解析完成后,再交给dispatcherservlet,然后交给view 渲染(比如 jsp) 。最后将渲染后的结果,反馈给客户端
4、controller类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package com.itheima.controller; import org.springframework.web.servlet.modelandview; import org.springframework.web.servlet.mvc.controller; import javax.servlet.http.httpservletrequest; import javax.servlet.http.httpservletresponse; /** * 控制器类 */ public class firstcontroller implements controller{ @override public modelandview handlerequest(httpservletrequest request, httpservletresponse response) { // 创建modelandview对象 modelandview mav = new modelandview(); // 向模型对象中添加数据 mav.addobject( "msg" , "这是我的第一个spring mvc程序" ); // 设置逻辑视图名 mav.setviewname( "/web-inf/jsp/first.jsp" ); // 返回modelandview对象 return mav; } } |
示例中使用的适配器(simplecontrollerhandleradapter)要求handler必须实现controller接口
5、jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<%@ page language= "java" contenttype= "text/html; charset=utf-8" pageencoding= "utf-8" %> <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd" > <html> <head> <meta http-equiv= "content-type" content= "text/html; charset=utf-8" > <title>入门程序</title> </head> <body> ${msg} </body> </html> |
测试即可通过
ps:以上代码为黑马视频教程的代码,自己手动敲的。
声明:本文是初学spring mvc 用以记录笔记,完全小白,理解较浅显,如有大拿愿意指点,不胜感激
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/simple-point/archive/2018/04/14/8830066.html