SpringMyBatisDay03
1.Spring MVC
1)什么是Spring MVC
Spring MVC是Spring框架中一个模块,实现MVC结构,便于简单,快速开发MVC结构的WEB应用,Spring MVC提供的API封装WEB开发中常用的功能,简化WEB开发的过程
2)Spring MVC 的核心组件
DispatcherServlet (控制器,请求入口)
HandlerMapping (控制器,请求派发)
Controller (控制器,请求处理)
ModelAndView (封装业务处理结果和跳转视图)
ViewResolver (视图显示处理器)
3)Spring MVC的处理流程
浏览器向服务器发送请求 -> 请求交给前端控制器DispatcherServlet -> 前端控制器通过HandlerMapping找到相对应的Controller组件处理请求,执行Contriller组件的约定方法,在约定方法中调用模型层组件来完成业务处理,约定方法返回一个ModeAndView对象,此对象封装处理结果和跳转的视图名称,前端控制器接收到ModelAndView对象之后,调用ViewResolver组件定位View(JSP)传递数据信息,生成相应页面。
2.基于XML配置的MVC应用
搭建Spring MVC环境
创建WEB工程,导入Spring MVC相关开发包
Spring ioc,web,webmvc开发包
在src下添加Spring XML配置文件
名称可以自定义,例如spring-mvc.xml
在web.xml中配置DispacherServlet前端控制器
配置DispacherServlet,同时指定XML配置文件的路径
Controller组件负责执行具体业务处理,编写时需要实现Controller接口及约定方法handleRequest
handleRequest方法返回一个ModelAndView对象,此对象封装处理结果数据和跳转的视图名称
ModelAndView(String viewName)
ModelAndView(String viewName,Model model)
viewName是视图名称,model是处理的结果数据
HandleMapping(是接口)组件,映射请求URL和请求处理器Controller组件对应关系
SimpleUrlHandlerMapping(实现接口)维护一个个的HTTP请求和Controller映射关系列表(Map),根据列表映射对应关系调用Controller
ViewResolver(是接口)组件,对ModelAndView对象封装的视图名称进行解析
InternalResourceViewResolver(实现接口的子类),它支持Servlet和jsp及子类jstlView响应
<!-- 前端控制器 -->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring.xml</param-value>
</init-param> <load-on-startup>1</load-on-startup><!-- 启动服务器的时候加载配置,设置优先级 --> </servlet> <servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.do</url-pattern> <!-- 以这个结尾的请求才会走前端控制器 -->
</servlet-mapping>
3.基于注解配置的MVC应用
Controller注解应用
推荐使用@Controller注解声明Controller组件,这样就不需要控制器组件实现Controller接口,不需要约定方法
好处:使得控制器定义更加灵活,可以不用去实现Controller接口,请求处理方法可以灵活定义
为了使用使@Controller注解生效,需要在Spring的XML配置文件中开启组件扫描定义
<context:component-scan base-pack=""/>
RequestMapping注解应用
@RequestMapping注解可以用在类定义前和方法定义上,表明此组件类的方法与哪一个请求对应
为了使@ResquestMapping注解生效,需要在Spring的XML配置文件中开启MVC注解扫描
<mvc:annotation-driven/>
4.接收请求参数
Spring MVC请求提交数据到控制器有以下方式
1)使用HttpServletRequest获取
Spring框架自动参数注入到HttpServletRequest中
优点:直接通过HttpServletRequest的getParameter()方法
缺点:需要自己处理数据类型的转换
2)使用@RequestParam注解
Spring会自动将参数注入到方法参数(请求参数名和处理方法的变量名 名称一致)
使用@RequestParam注解映射不一致的名称
优点:参数类型自动转换,但可能出现类型转换异常
3)使用自动封装成Bean对象
定义实体类,属性名必须与请求参数名相同
package com.xms.controller; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView; import com.xms.entity.User; @Controller
@RequestMapping("/test")
public class TestController { //HttpServletRequest接受请求参数
@RequestMapping("/testOne.do")
public ModelAndView testOne(HttpServletRequest request){ String username=request.getParameter("username");
String password=request.getParameter("password"); System.out.println(username);
System.out.println(password); return new ModelAndView("hello");
} //方法参数接受请求参数(@RequestParam注解可以解决方法参数名和请求参数名不一致的情况)
@RequestMapping("/testTwo")
public ModelAndView testTwo(@RequestParam("username")String username,@RequestParam("password")String pwd){
System.out.println(username);
System.out.println(pwd);
return new ModelAndView("hello"); } //对象接收参数
@RequestMapping("/testThree")
public ModelAndView testThree(User user){
System.out.println(user.getUsername());
System.out.println(user.getPassword());
return new ModelAndView("hello");
} }
<h1>表单</h1>
<form action="/SpringMybatisDay03_03/test/testThree.do" method="post" >
账号:<input type="text" name="username" />
密码:<input type="password" name="password" />
<input type="submit" value="提交"> </form>
<?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:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd" > <context:component-scan base-package="com.xms"></context:component-scan>
<mvc:annotation-driven></mvc:annotation-driven> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/"></property>
<property name="suffix" value=".jsp"></property>
</bean> </beans>
public class User { private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
} }
5.向页面传值
当Controller组件处理后,需要向jsp传值的方法
1)直接使用HttpServletRequest或HttpSession
2)使用ModelAndView对象
3)使用ModelMap参数对象
在Controller处理方法中追加一个ModelMap类型的参数
注意:数据会利用HttpServletRequest的attitude属性传递到页面
SpringMyBatisDay03的更多相关文章
随机推荐
- css3整理--border-radius
1.border-radius 标准: border-top-left-radius: x y // 左上角,x 圆角水平半径, y 圆角垂直半径 border-top-right-radius:x ...
- cmake openssl ios
1 下载源代码 git clone https://github.com/pol51/OpenSSL-CMake.git cd OpenSSL-CMake mkdir build && ...
- 关于python的【if __name__ == "__main__":】
学习东西真的需要自己动手,然后遇到问题,自己学着去解决.当然如果能得到高人指点,那真是走了八辈子运了.可以节省很多时间.但是大多数情况下,不能总是有高人来指点我们.这时就需要靠我们自己了. 在学习py ...
- 转sklearn保存模型
训练好了一个Model 以后总需要保存和再次预测, 所以保存和读取我们的sklearn model也是同样重要的一步. 比如,我们根据房源样本数据训练了一下房价模型,当用户输入自己的房子后,我们就需要 ...
- TFS二次开发08——分支(Branch)和合并(Merge)
一:创建分支 private static void BranchFile(Workspace workspace, String newFilename) { String branchedFi ...
- Docker添加镜像加速器
Docker默认pull连接镜像为国外镜像,速度较慢,注册阿里云可以生成一个镜像加速器 登录阿里云 https://cr.console.aliyun.com获取私有加速地址 修改配置文件/etc/d ...
- HDU 3038 - How Many Answers Are Wrong - [经典带权并查集]
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3038 Time Limit: 2000/1000 MS (Java/Others) Memory Li ...
- POJ 2240 - Arbitrage - [bellman-ford求最短路]
Time Limit: 1000MS Memory Limit: 65536K Description Arbitrage is the use of discrepancies in currenc ...
- CNN中的卷积理解和实例
卷积操作是使用一个二维卷积核在在批处理的图片中进行扫描,具体的操作是在每一张图片上采用合适的窗口大小在图片的每一个通道上进行扫描. 权衡因素:在不同的通道和不同的卷积核之间进行权衡 在tensorfl ...
- 启用mapredure历史服务器方法
在mapred-site.xml配置文件中添加如下信息: <property> <name>mapreduce.jobhistory.addres ...