2.SpringMVC注解开发

1.创建SpringMVC项目

配置web.xml

<?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_4_0.xsd"
         version="4.0">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!--修改为"/"捕获所有的URL请求-->
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

配置dispatcher-servlet.xml

<?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"
       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">

    <context:component-scan base-package="com.test.controller"></context:component-scan>

    <!-- 配置注解处理器映射器
        功能:寻找执行类Controller
    -->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"></bean>

    <!-- 配置注解处理器适配器
        功能:调用controller方法,执行controller
    -->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean>
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

控制类

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.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
hello
</body>
</html>

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<User> userList;

private Map<K,V> maps;

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域对象

        List<User> userList = new ArrayList<User>();

        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“;

原文地址:https://www.cnblogs.com/weihu/p/9523179.html

时间: 2024-10-19 05:02:41

2.SpringMVC注解开发的相关文章

Spring+SpringMVC+MyBatis深入学习及搭建(十六)——SpringMVC注解开发(高级篇)

转载请注明出处:http://www.cnblogs.com/Joanna-Yan/p/7085268.html 前面讲到:Spring+SpringMVC+MyBatis深入学习及搭建(十五)——SpringMVC注解开发(基础篇) 本文主要内容: (1)SpringMVC校验 (2)数据回显 (3)异常处理器 (4)图片上传 (5)Json数据交互 (6)支持RESTful 1.SpringMVC校验 1.1校验理解 项目中,通常使用较多的是前端的校验,比如页面中js校验.对于安全要求较高的

springmvc学习笔记(13)-springmvc注解开发之集合类型參数绑定

springmvc学习笔记(13)-springmvc注解开发之集合类型參数绑定 springmvc学习笔记13-springmvc注解开发之集合类型參数绑定 数组绑定 需求 表现层实现 list绑定 需求 表现层实现 map绑定 本文主要介绍注解开发的集合类型參数绑定,包含数组绑定,list绑定以及map绑定 数组绑定 需求 商品批量删除,用户在页面选择多个商品.批量删除. 表现层实现 关键:将页面选择(多选)的商品id,传到controller方法的形參,方法形參使用数组接收页面请求的多个商

SpringMVC注解开发初步

一.(补充)视图解析器---XmlViewResolver 作用:分离配置信息. 在视图解析器---BeanNameViewResolver的基础之上进行扩充,新建一个myView.xml分离信息 在applicationContext.xml中进行配置XmlViewResolver,以及处理器配置 myView.xml: 实现效果: 二.SpringMVC注解开发 常用的两个注解: @Controller:是SpringMVC中最常用的注解,它可以帮助定义当前类为一个Spring管理的bean

springmvc学习笔记(11)-springmvc注解开发之简单参数绑定

springmvc学习笔记(11)-springmvc注解开发之简单参数绑定 springmvc学习笔记11-springmvc注解开发之简单参数绑定 spring参数绑定过程 默认支持的类型 简单类型 pojo绑定 自定义参数绑定实现日期类型绑定 springmvc和struts2的区别 本文主要介绍注解开发的简单参数绑定,包括简单类型.简单pojo以及自定义绑定实现类型转换 spring参数绑定过程 从客户端请求key/value数据,经过参数绑定,将key/value数据绑定到contro

springmvc学习笔记(13)-springmvc注解开发之集合类型参数绑定

springmvc学习笔记(13)-springmvc注解开发之集合类型参数绑定 springmvc学习笔记13-springmvc注解开发之集合类型参数绑定 数组绑定 需求 表现层实现 list绑定 需求 表现层实现 map绑定 本文主要介绍注解开发的集合类型参数绑定,包括数组绑定,list绑定以及map绑定 数组绑定 需求 商品批量删除,用户在页面选择多个商品,批量删除. 表现层实现 关键:将页面选择(多选)的商品id,传到controller方法的形参,方法形参使用数组接收页面请求的多个商

springmvc注解开发

先在一个包中创建一个类,然后再配置sprringmvacontroller.xml并链接到该类. <context:component-scan base-package="cn.happy.controllerreturn"></context:component-scan> 注解开发所创建的类及其方法 通配符:是一种符号,不是精确匹配,而是用来代替 ** 代表任意级别目录,或者没有目录 package cn.happy.Controler; import o

Spring+SpringMVC+MyBatis深入学习及搭建(十五)——SpringMVC注解开发(基础篇)

转载请注明出处:http://www.cnblogs.com/Joanna-Yan/p/7065294.html 前面讲到:Spring+SpringMVC+MyBatis深入学习及搭建(十四)--SpringMVC和MyBatis整合 1.商品修改功能开发 1.1需求 操作流程: (1)进入商品查询列表页面: (2)点击修改,进入商品修改页面,页面中显示了要修改的商品(从数据库查询),  要修改的商品从数据库查询,根据商品id(主键)查询商品信息: (3)在商品修改页面,修改商品信息,修改后,

springMVC注解初步

一.(补充)视图解析器---XmlViewResolver 作用:分离配置信息. 在视图解析器---BeanNameViewResolver的基础之上进行扩充,新建一个myView.xml分离信息 在applicationContext.xml中进行配置XmlViewResolver,以及处理器配置 myView.xml: 实现效果: 二.SpringMVC注解开发 常用的两个注解: @Controller:是SpringMVC中最常用的注解,它可以帮助定义当前类为一个Spring管理的bean

Spring MVC入门第3天--注解开发

文档版本 开发工具 测试平台 工程名字 日期 作者 备注 V1.0 2016.07.01 lutianfei none 商品修改功能开发 一.需求 操作流程: 1.进入商品查询列表页面 2.点击修改,进入商品修改页面,页面中显示了要修改的商品(从数据库查询) 要修改的商品从数据库查询,根据商品id(主键)查询商品信息 3.在商品修改页面,修改商品信息,修改后,点击提交 二.开发mapper mapper: 根据id查询商品信息 根据id更新Items表的数据 不用开发了,使用逆向工程生成的代码.