2022-1-16 SpringMVC day2(Controller细节)

一、@RequestMapping

1. 配置url

这个注解用来标记一个接口。
用法:
@RequestMapping("/hello")
@RequestMapping({"/hello","/hello2"}) 少见…

——可以配置多个路径

2. 请求窄化

在类上进行注解RequestMapping

@Controller
@RequestMapping("/user")
public class UserController {
    // http://localhost:8080/user/getuser
    @RequestMapping("/getuser")
    public ModelAndView getUser()
    {
        ModelAndView mv=new ModelAndView("hello");
        mv.addObject("name","UserController");
        return mv;
    }
}

在这里插入图片描述

3. 请求方法限定

@RequestMapping(value="/hello",method=RequestMethod.GET)
(多个用大括号)

以上也等价于
@GetMapping("/hello")
@PostMapping
@DeleteMapping
@PutMapping
在这里插入图片描述

二、Controller中接口方法各种返回值类型

    @RequestMapping("/getuser2")
    @ResponseBody  //如果不加,默认找jsp
    public void getUser2()//返回值问题  比如打印日志
    {
        System.out.println("getUser2");
    }

在这里插入图片描述

1. 返回ModelAndView

前后端不分离的情况 返回数据模型和视图。
view在new的时候传入,model则可用map构建(已经举例)

2. 返回void

实现各种跳转

    @GetMapping("/hello2")
    public void hello2(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//        req.getRequestDispatcher("/01.jsp").forward(req,resp);//服务器端跳转 url不变
//        
//        //客户端跳转 url变化
//        resp.sendRedirect("/01.jsp");
//        
//        //手动设置
//        resp.setStatus(302);
//        resp.addHeader("Location","/01.jsp");
//        
        //直接写到页面
        resp.getWriter().write("hello kk");
        
    }
}

3. 返回字符串

  1. 返回逻辑视图名
    @GetMapping("/hello3")
    public String hello3(){
        return "hello";//根据配置的视图解析器寻找要返回的视图view
    }
    @GetMapping("/hello3")
    public String hello3(Model model){
        model.addAttribute("name","kkzzjx"); //设置model
        return "hello";
    }
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="viewResolver">
        <property name="prefix" value="/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

根据自己配置的视图解析器,寻找相应的视图并展示。

  1. 服务端跳转 forward
    @GetMapping("/hello3")
    public String hello3(){
        return "forward:/01.jsp";//forward表示服务器端跳转
    }
  1. 客户端跳转 redirect
    @GetMapping("/hello3")
    public String hello3(){
        //return "forward:/01.jsp";//forward表示服务器端跳转
        return "redirect:/01.jsp";//客户端跳转
    }
  1. 普通字符串
    注解@ResponseBody
    @GetMapping("/hello4")
    @ResponseBody //如果只想返回字符串 返回什么就是什么 这样返回的"hello"就会当做普通字符串处理,而不是逻辑视图名
    public String hello4(){
        return "hello";
    }

一般来说…是返回json的,而不是直接字符串
如果乱码,Getmapping中添加选项produces=“…”

三、参数绑定

1. 默认支持的参数类型

写在RequestMapping所注解的方法中的参数类型:

  • HttpServletRequest
  • HttpServletResponse
  • HttpSession
  • Model/ModelMap

2. 简单数据类型

写一个表单:addbook.jsp

<%--
  Created by IntelliJ IDEA.
  User: 86133
  Date: 2022/1/16
  Time: 15:37
  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>
    <h1>添加图书</h1>
<form action="/book/addbook">
    <table>
        <tr>
            <td>图书名称</td>
            <td><input type="text" name="name"></td>
        </tr>
        <tr>
            <td>图书作者</td>
            <td><input type="text" name="author"></td>
        </tr>
        <tr>
            <td>图书价格</td>
            <td><input type="text" name="price"></td>
        </tr>
        <tr>
            <td><input type="button" value="添加"></td>
        </tr>
    </table>
</form>
</body>
</html>

后端如何接收参数?

<form action="/book/addbook" method="post">

数据会从前端提交到addbook接口,addbook接口接收参数

写一个接口接收数据:

    @PostMapping("/addbook")
    public String addbook(){
  
    }

传统:HttpServletRequest req可以接收
框架:直接接收参数

    @PostMapping(value = "/addbook",produces = "text/html;charset=utf-8")
    @ResponseBody
    public void addbook(String name,String author,Double price){
        //由spring框架可以自动提取参数,并一一映射
        System.out.println("name="+name);
        System.out.println("author="+author);
        System.out.println("price="+price);

    }

注意:接口中的变量名要和前端参数变量名相同
如果不同? 可以使用@RequestParam 注解

public void addbook(@RequestParam("name") String bookname,String author,Double price)
//也可以设置默认值
public void addbook(@RequestParam("name") String bookname,String author,@RequestParam(defaultValue = "99") Double price)

乱码问题

  • 关于乱码:
  • 首先要分析原因:客户端乱码?服务端乱码
  • 添加produces = "text/html;charsetutf-8"后如果还是乱码,
  • 那么可能收到的参数就是乱码
  • 在web.xml中配置一下springmvc提供的过滤器
    web.xml添加过滤器
    <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
        <init-param>
            <param-name>forceRequestEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>forceResponseEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

3. 实体类参数

开发中一般都用实体类。比如说Book,用Book的一个对象接收参数。
注意要新建一个包存放类~
在这里插入图片描述

用对象接收前端传来的参数

@ResponseBody
@PostMapping(value = "/addBook2",produces = "text/html;charset=utf-8")
    public String addBook2(Book book){
        return book.toString();
    }

对象可以嵌套

Book类中可套Author类

package org.kk.springmvc02.model;

/**
 * @program: ssm
 * @description:
 * @author: zjx
 * @create: 2022-01-16 19:12
 **/
public class Book {
    private String name;
    private Double price;
    private Author author;

    public Book() {
    }


    @Override
    public String toString() {
        return "Book{" +
                "name='" + name + '\'' +
                ", price=" + price +
                ", author=" + author +
                '}';
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }



    public Double getPrice() {
        return price;
    }

    public void setPrice(Double price) {
        this.price = price;
    }

    public Author getAuthor() {
        return author;
    }

    public void setAuthor(Author author) {
        this.author = author;
    }
}

前端发送的参数名相应改变:

        <tr>
            <td>图书作者</td>
            <td><input type="text" name="author.name"></td>
        </tr>
        <tr>
            <td>作者年龄</td>
            <td><input type="text" name="author.age"></td>
        </tr>

4. 自定义参数绑定

很重要~
前面几种都是自动绑定,但如果遇到无法自动绑定的情况,则需要自定义参数绑定。
比如前端将日期传入,后端用Date类型接收

400错误(错误的请求) ——参数类型转换有错
在这里插入图片描述
解决方法:定义转换器
首先先建一个包用来存放转换器
在这里插入图片描述
转换器需要实现Converter接口
public class MyDateConverter implements Converter<String,Date> 注意选择有泛型的

package org.kk.springmvc02.converter;
import org.springframework.core.convert.converter.Converter;
import java.util.Date;

/**
 * @program: ssm
 * @description: 自定义参数绑定,实现接口Converter
 * @author: zjx
 * @create: 2022-01-16 19:54
 **/
public class MyDateConverter implements Converter<String,Date> {
    @Override
    public Date convert(String source) {
        return null;
    }

}

@Component
public class MyDateConverter implements Converter<String,Date> {
    SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
    /**
    * @Param: [source] 是前端传过来的字符串
     * 写完后还要spring-servlet这个springmvc的配置文件中进行配置
    */
    @Override
    public Date convert(String source) {
        try {
            return sdf.parse(source);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return null;
    }
    
}

配置:ConversionService

  <bean class="org.springframework.format.support.FormattingConversionServiceFactoryBean" id="conversionService">
        <property name="converters">
            <set>
                <ref bean="myDateConverter"/>
            </set>
        </property>
    </bean>

再把它配置带driven中:

    <mvc:annotation-driven conversion-service="conversionService"/>

5. 集合类型参数

  • String数组 可以直接用数组去接收 (checkbox常见)
    注意不能用List接收
       <tr>
            <td>兴趣爱好</td>
            <td>
                <input type="checkbox" name="author.favourite" value="足球">足球
                <input type="checkbox" name="author.favourite" value="篮球">篮球
                <input type="checkbox" name="author.favourite" value="乒乓球">乒乓球
            </td>
        </tr>
  • 接收List集合
        <tr>
            <td>角色</td>
            <td>
                <input type="checkbox" value="管理员" name="author.roles[0].name">管理员
                <input type="checkbox" value="1" name="author.roles[0].id">
                <input type="checkbox" value="管理员" name="author.roles[1].name">用户
                <input type="checkbox" value="2" name="author.roles[1].id">
            </td>
        </tr>
  • 接收map (不推荐)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值