转换之术:解析Spring MVC中类型转换器的实际运用

本文涉及的产品
全局流量管理 GTM,标准版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
云解析 DNS,旗舰版 1个月
简介: 转换之术:解析Spring MVC中类型转换器的实际运用


类型转换器

在 SpringMVC 框架中,类型转换器(Type Converter)用于将客户端传递的字符串类型的请求参数转换为控制器方法参数所需要的具体类型。它允许我们在处理请求时,将请求中的字符串参数转换为目标参数的实际类型,以便更方便地进行处理和操作。

SpringMVC 提供了一个 org.springframework.core.convert.converter.Converter 接口,可以通过实现该接口来自定义类型转换器。此外,SpringMVC 还内置了一些常见的类型转换器,可以满足大部分的需求。

以下是 SpringMVC 中常见的类型转换器:

  1. String to 基本数据类型:用于将字符串转换为基本数据类型,例如将 “123” 转换为 int 类型。
  2. 基本数据类型 to String:用于将基本数据类型转换为字符串,例如将 int 类型的 123 转换为 “123”。
  3. String to Enum:用于将字符串转换为枚举类型。
  4. Enum to String:用于将枚举类型转换为字符串。
  5. String to Date/Time:用于将字符串转换为日期或时间类型。
  6. Date/Time to String:用于将日期或时间类型转换为字符串。
  7. String to Collection:用于将字符串转换为集合类型。
  8. Collection to String:用于将集合类型转换为字符串。

自定义类型转换器

package world.xuewei.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.Date;
/**
 * 测试类型转换器
 *
 * @author 薛伟
 * @since 2023/10/30 16:18
 */
@Controller
public class ConvertController {
    @RequestMapping("/convert")
    public String convert(Date date) {
        System.out.println(date);
        return "index";
    }
}

上面的控制器方法是有问题的,SpringMVC 默认是无法处理字符串转时间类型的。所以我们以此为场景开发自定义类型转换器。

编写转换器

package world.xuewei.config;
import org.springframework.core.convert.converter.Converter;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
 * 测试类型转换器
 *
 * @author 薛伟
 * @since 2023/10/30 16:18
 */
public class MyDateConvert implements Converter<String, Date> {
    @Override
    public Date convert(String s) {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        Date parse = null;
        try {
            parse = simpleDateFormat.parse(s);
        } catch (ParseException e) {
            throw new RuntimeException(e);
        }
        return parse;
    }
}

Spring 配置文件

<?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:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <!-- 配置注解扫描路径 -->
    <context:component-scan base-package="world.xuewei"/>
    <!-- 引入 Spring MVC 核心功能 -->
    <mvc:annotation-driven conversion-service="serviceFactoryBean"/>
    <!-- 自定义日期类型转换器 -->
    <bean id="convert" class="world.xuewei.config.MyDateConvert"/>
    <!-- 注册类型转换器 -->
    <bean id="serviceFactoryBean" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <ref bean="convert"/>
            </set>
        </property>
    </bean>
</beans>

SpringMVC 默认日期转换

在 SpringMVC 中,默认的字符串到日期类型的转换是通过 org.springframework.format.annotation.DateTimeFormat 注解实现的。你可以在方法参数或模型属性上使用该注解来指定日期的格式,以便在接收请求参数时将字符串转换为日期对象。

下面是一个示例,演示如何使用 @DateTimeFormat 注解将字符串转换为 java.util.Date 类型:

@RequestMapping("/example")
public String exampleMethod(@RequestParam("date") @DateTimeFormat(pattern = "yyyy-MM-dd") Date date) {
    // 处理date参数
    return "response";
}


相关文章
|
3天前
|
设计模式 前端开发 Java
步步深入SpringMvc DispatcherServlet源码掌握springmvc全流程原理
通过对 `DispatcherServlet`源码的深入剖析,我们了解了SpringMVC请求处理的全流程。`DispatcherServlet`作为前端控制器,负责请求的接收和分发,处理器映射和适配负责将请求分派到具体的处理器方法,视图解析器负责生成和渲染视图。理解这些核心组件及其交互原理,有助于开发者更好地使用和扩展SpringMVC框架。
22 4
|
21天前
|
前端开发 Java 开发者
Spring MVC中的请求映射:@RequestMapping注解深度解析
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的关键,它将HTTP请求映射到相应的处理器方法上。本文将深入探讨`@RequestMapping`注解的工作原理、使用方法以及最佳实践,为开发者提供一份详尽的技术干货。
64 2
|
21天前
|
前端开发 Java Spring
探索Spring MVC:@Controller注解的全面解析
在Spring MVC框架中,`@Controller`注解是构建Web应用程序的基石之一。它不仅简化了控制器的定义,还提供了一种优雅的方式来处理HTTP请求。本文将全面解析`@Controller`注解,包括其定义、用法、以及在Spring MVC中的作用。
40 2
|
22天前
|
前端开发 Java Maven
深入解析:如何用 Spring Boot 实现分页和排序
深入解析:如何用 Spring Boot 实现分页和排序
46 2
|
24天前
|
Java 开发者 Spring
Spring AOP深度解析:探秘动态代理与增强逻辑
Spring框架中的AOP(Aspect-Oriented Programming,面向切面编程)功能为开发者提供了一种强大的工具,用以将横切关注点(如日志、事务管理等)与业务逻辑分离。本文将深入探讨Spring AOP的底层原理,包括动态代理机制和增强逻辑的实现。
35 4
|
21天前
|
前端开发 Java 开发者
Spring MVC中的控制器:@Controller注解全解析
在Spring MVC框架中,`@Controller`注解是构建Web应用程序控制层的核心。它不仅简化了控制器的定义,还提供了灵活的请求映射和处理机制。本文将深入探讨`@Controller`注解的用法、特点以及在实际开发中的应用。
55 0
|
4月前
|
开发框架 前端开发 .NET
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
56 0
|
7月前
|
开发框架 前端开发 .NET
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
212 0
|
7月前
|
开发框架 前端开发 JavaScript
JavaScript云LIS系统源码ASP.NET CORE 3.1 MVC + SQLserver + Redis医院实验室信息系统源码 医院云LIS系统源码
实验室信息系统(Laboratory Information System,缩写LIS)是一类用来处理实验室过程信息的软件,云LIS系统围绕临床,云LIS系统将与云HIS系统建立起高度的业务整合,以体现“以病人为中心”的设计理念,优化就诊流程,方便患者就医。
84 0
|
存储 开发框架 前端开发
[回馈]ASP.NET Core MVC开发实战之商城系统(五)
经过一段时间的准备,新的一期【ASP.NET Core MVC开发实战之商城系统】已经开始,在之前的文章中,讲解了商城系统的整体功能设计,页面布局设计,环境搭建,系统配置,及首页【商品类型,banner条,友情链接,降价促销,新品爆款】,商品列表页面,商品详情等功能的开发,今天继续讲解购物车功能开发,仅供学习分享使用,如有不足之处,还请指正。
174 0

推荐镜像

更多