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的更多相关文章
随机推荐
- android studio下生成jni头文件
cd app/src/main javah -d jni -classpath ../../build/intermediates/classes/debug net.sourceforge.lame ...
- 题目1461:Tempter of the bone(深度优先遍历DFS)
题目链接:http://ac.jobdu.com/problem.php?pid=1461 详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus 参考代码: ...
- VUE单独页面body css设置
使用created周期用JS来处理BODY的样式 export default { beforeCreate: function () { document.getElementsByTagName( ...
- EUI ViewStack实现选项卡组件 (封装了一个UI类)
封装一个选项卡的UI,用来应付游戏中各种需要选项卡的界面. 例如背包,背包界面的选项卡可以切换装备.物品.符文.宝箱. 下图方法的实现参考:EUI ViewStack实现选项卡组件 假如在主页Home ...
- Office Online Server2016安装手册
Office Online Server2016安装手册 1.加入域 加入域,机器名为:OOS.Contoso.com 2.安装前提条件 运行powershell检查先决条件 Add-WindowsF ...
- windows本地启动tomcat闪退
da开cmd, 进入tomcat所在目录的bin目录: 执行startup.bat 查看设置的环境变量是否正确:如果不正确则在windows中设置正确的相关环境变量即可:
- 小程序中navigator和wx.navigateTo,wx.redirectTo,wx.reLaunch,wx.switchTab,wx.navigateBack的用法
如果用一句话来表明navigator和API中wx.系列的跳转有什么区别,那就是navigator是在wxml中用标签添加open-type属性来达到和wx.系列一样的效果. navigator的属性 ...
- ubuntu常用技巧积累
1.修改root密码,一般与用户密码不同 python@ubuntu:~$ sudo passwd[sudo] password for python: 输入新的 UNIX 密码: 重新输入新的 UN ...
- MyBatis学习(一)一个简单的例子
mybatis入门例子 开发步骤: 1.创建java工程 2.加入jar包(依赖包.驱动包) 3.创建sqlMapConfig.xml 4.创建数据库,数据库表USER_C,插入测试记录 5.创建PO ...
- Oracle卸载之Linux下卸载oracle11g的方法
1.使用SQL*PLUS停止数据库 如果不能通过sysdba登陆可以用nolog用户登陆后切换至sysdba [oracle@OracleTest oracle]$ sqlplus /nolog S ...