IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> spring MVC使用自定义的参数解析器解析参数 -> 正文阅读

[Java知识库]spring MVC使用自定义的参数解析器解析参数

目录

写在前面

编写自定义的参数解析器解析请求参数

项目结构

?定义注解

实体类

controller

定义参数解析器

注册参数解析器

启动项目

发起请求查看结果


写在前面

如果还有小伙伴不知道spring MVC的参数解析原理,什么是参数解析器的,请移步该博文深入研究:

springboot-springmvc请求参数获取与原理【长文预警,收藏慢啃】_秃了也弱了。的博客-CSDN博客

编写自定义的参数解析器解析请求参数

项目结构

?定义注解

import java.lang.annotation.*;

@Documented
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyArgs {
    String value() default "";
}

实体类

import java.util.Date;

public class Person {

    private String id;
    private String name;
    private Date birthday;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

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


    public Date getBirthday() {
        return birthday;
    }

    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }

    @Override
    public String toString() {
        return "Person{" +
                "id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", birthday=" + birthday +
                '}';
    }
}

controller

import com.cxf.demos.config.MyArgs;
import com.cxf.demos.model.Person;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/test")
public class ArgumentResolverController {

    @RequestMapping("/test")
    public String test(@MyArgs Person person) {
        System.out.println(person);
        return "success value is " + person;
    }
}

定义参数解析器


import com.cxf.demos.model.Person;
import org.springframework.core.MethodParameter;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.support.WebDataBinderFactory;
import org.springframework.web.context.request.NativeWebRequest;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.method.support.ModelAndViewContainer;

import java.text.SimpleDateFormat;
import java.util.Date;

@Component
public class RequestParamMethodArgumentResolver implements HandlerMethodArgumentResolver {

    /**
     * 在这里进行参数的类型转换
     *
     * @param parameter  需要被解析的Controller参数
     * @param mavContainer
     * @param webRequest 当前request
     * @return 转换后的参数值
     * @throws Exception
     */
    @Override
    public Object resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory) throws Exception {
        try {
            MyArgs annotation = parameter.getParameterAnnotation(MyArgs.class);
            String id = webRequest.getParameter("id");
            String name = webRequest.getParameter("name");
            String birthday = webRequest.getParameter("birthday");
            SimpleDateFormat sm = new SimpleDateFormat("yyyyMMdd");
            Date parse = sm.parse(birthday);
            // 返回填充好的对象
            Person person = new Person();
            person.setId(id);
            person.setName(name);
            person.setBirthday(parse);
            System.out.println("Person" + person);
            return person;
        } catch (Exception e) {
            throw new IllegalArgumentException("Date format conversion error", e);
        }
    }

    /**
     * 解析器是否支持当前参数
     *
     * @param methodParameter 需要被解析的Controller参数
     * @return
     */
    @Override
    public boolean supportsParameter(MethodParameter methodParameter) {
        return methodParameter.hasParameterAnnotation(MyArgs.class);
    }

}

注册参数解析器

import org.springframework.context.annotation.Configuration;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

import java.util.List;

@Configuration
public class ArgumentResolverApplication implements WebMvcConfigurer {

    @Override
    public void addArgumentResolvers(List<HandlerMethodArgumentResolver> resolvers) {
        // 把自己写的参数解析器放在首位,提高命中率
        if(resolvers.isEmpty()) resolvers.add(0,new RequestParamMethodArgumentResolver());
        else resolvers.set(0,new RequestParamMethodArgumentResolver());
    }
}

启动项目

发起请求查看结果

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:21:19  更:2022-03-24 00:21:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 6:15:52-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码