2.SpringMVC注解开发
2021-07-19 11:05
YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
标签:定义 pac 功能 rest 必须 utf-8 start 包装类 ESS
1.创建SpringMVC项目
配置web.xml
"1.0" encoding="UTF-8"?>"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"> contextConfigLocation /WEB-INF/applicationContext.xml class>org.springframework.web.context.ContextLoaderListener class>dispatcher class>org.springframework.web.servlet.DispatcherServlet class>1 dispatcher /
配置dispatcher-servlet.xml
"1.0" encoding="UTF-8"?>"http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> base-package="com.test.controller"> class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"> class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"> class="org.springframework.web.servlet.view.InternalResourceViewResolver"> "prefix" value="/WEB-INF/jsp/"/> "suffix" value=".jsp"/>
控制类
package com.test.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; /** * Created by weihu1 on 2018/8/22 11:46 */ @Controller @RequestMapping("mvc") public class WelcomeController { @RequestMapping("/hello") public String hello(){ return "welcome"; } }
新建jsp
Created by IntelliJ IDEA. User: weihu1 Date: 2018/8/22 Time: 11:47 To change this template use File | Settings | File Templates. --%> "text/html;charset=UTF-8" language="java" %>Title hello
RequestMapping
requestMapping(“hello”)
requestMapping(“/hello.do”)
requestMapping(value=”/hello.do”)
@RequestMapping("/hello") public String hello(){ return "welcome"; }
requestMapping(value=”/hello.do”,method=RequestMethod.GET)
requestMapping(value=”/hello.do”,method=RequestMethod.POST)
浏览器直接访问,a标签都是get请求
表单提交(指定post),ajax指定post提交,post提交。
requestMapping(value=”/hello.do”,method={RequestMethod.POST, RequestMethod.GET})
RequestMaping根路径
@RequestMapping(”/user”) UserController{ requestMapping(“save”) Save() requestMapping(“update”) Update{} requestMapping(“find”) Fiind() } 项目名/user/save.do @RequestMapping(”/items”) ItemsController{ requestMapping(“save”) Save() requestMapping(“update”) Update{} requestMapping(“find”) Fiind() } 项目名/items/save.do
自定义根路径
封装参数
分析接受参数类型:
基本类型,int,String等等基本类型。
Pojo类型
包装类型
Springmvc默认支持类型:
HttpSession,HttpRequstServlet,Model等等。
Struts2参数:基于属性封装。
Springmvc参数封装:基于方法进行封装。
基本类型
需求
封装int类型参数
页面
页面传递参数都是字符串。
接受参数方法
接受字符串类型
页面
代码
接受数组
分析:批量删除:checkbox复选框。Value必须有值。
页面
代码
接受Pojo
页面
代码
接受包装类型参数
userCustom{
private user user;
private List
private Map
private items items;
}
定义UserCustom
页面
代码
接受集合类型参数
接受list集合
代码:
接受map
页面
代码
有了struts2,为什么还需要sprigmvc?
实现机制:
Struts2是基于过滤器实现的。
Springmvc基于servlet实现。Servlet比过滤器快。
运行速度:
Struts2是多列
请求来了以后,struts2创建多少个对象:
ActionContext,valuestack,UserAction,ActionSuport,ModelDriven
userAction里面属性:User对象,userlist集合等
Springmvc是单列。
参数封装来分析:
Struts基于属性进行封装。
Springmvc基于方法封装。
页面回显
查询所有
@RequestMapping("list") public String list(Model model){ //model 相当于application域对象 ListuserList = new ArrayList (); User user1 = new User(); user1.setId(1); user1.setSex("男"); user1.setUsername("张山峰"); user1.setAddress("武当山"); user1.setBirthday(new Date()); User user2 = new User(); user2.setId(2); user2.setSex("男2"); user2.setUsername("张山峰222"); user2.setAddress("武当山222"); user2.setBirthday(new Date()); User user3 = new User(); user3.setId(3); user3.setSex("男3"); user3.setUsername("张山峰333"); user3.setAddress("武当山333"); user3.setBirthday(new Date()); userList.add(user1); userList.add(user2); userList.add(user3); model.addAttribute("userList", userList); return "list"; }
页面获取
修改
修改代码
回显
URL模版映射
url模版映射可以restfull软件架构。
url模版映射过程
Restfull风格设计
Web.xml拦截方式:在rest目录下所有请求都被拦截,servlet可以拦截目录。
{}:匹配接受页面Url路径参数
@Pathariable:{}里面参数注入后面参数里面
转发和重定向
转发
关键字:forward
本类进行转发:
本类方法与方法之间进行forward
转发方式:
方式一:return ”forward:list.do“;
代码:
重定向
关键字:redirect
本类进行重定向:
本类方法与方法之间进行redirect
重定向方式:
方式一:return ”redirect:list.do“;
方式二:return ”redirect:/user/list.do“;
跨类进行重定向:
转发方式:return ”redirect:/items/list.do“;
2.SpringMVC注解开发
标签:定义 pac 功能 rest 必须 utf-8 start 包装类 ESS
原文地址:https://www.cnblogs.com/weihu/p/9523179.html
上一篇:mingw和cygwin的区别
下一篇:JAVA反射机制