PropertyEditorRegistry与PropertyAccessor的学习

PropertyEditorRegister

简介

PropertyEditorRegistry 是 Spring 框架中的一个接口,它提供了注册和管理 PropertyEditor 的功能。PropertyEditor 是 Java Bean 规范的一部分,用于在不同类型的属性值和字符串之间进行转换。

PropertyEditorRegistry 接口定义了两个主要的方法:

  • registerCustomEditor(Class requiredType, PropertyEditor propertyEditor): 这个方法允许你注册一个自定义的 PropertyEditor,用于转换特定类型的属性。当 Spring 需要将一个字符串值转换为一个 JavaBean 属性时,它会查找已注册的 PropertyEditor 来执行转换。
  • findCustomEditor(Class requiredType, PropertyEditorRegistry registry): 这个方法用于查找与给定类型匹配的自定义 PropertyEditor。通常,这个方法不是由应用程序代码直接调用的,而是由 Spring 的内部机制在需要时调用。

在 Spring 的上下文中,PropertyEditorRegistry 接口通常与数据绑定和类型转换相关。例如,在 Spring MVC 中,当请求参数需要绑定到 JavaBean 时,Spring 会使用已注册的 PropertyEditor 来转换字符串参数为 JavaBean 属性的适当类型。

PropertyEditorRegistry 的一个典型实现是 CustomEditorConfigurer,它允许你在 Spring 配置中声明自定义的 PropertyEditor。这样,你可以为特定的 Java 类型指定自定义的转换逻辑。

源码

/*** Encapsulates methods for registering JavaBeans {@link PropertyEditor PropertyEditors}.* This is the central interface that a {@link PropertyEditorRegistrar} operates on.** <p>Extended by {@link BeanWrapper}; implemented by {@link BeanWrapperImpl}* and {@link org.springframework.validation.DataBinder}.** @author Juergen Hoeller* @since 1.2.6* @see java.beans.PropertyEditor* @see PropertyEditorRegistrar* @see BeanWrapper* @see org.springframework.validation.DataBinder* 和DataBinder可以一起使用*/
public interface PropertyEditorRegistry {/*** Register the given custom property editor for all properties of the given type.* @param requiredType the type of the property* @param propertyEditor the editor to register*  注册一个自定义类型转换器(PropertyEditor)主要是将字符串转成我们需要的数据类型*/void registerCustomEditor(Class<?> requiredType, PropertyEditor propertyEditor);/*** Register the given custom property editor for the given type and* property, or for all properties of the given type.* <p>If the property path denotes an array or Collection property,* the editor will get applied either to the array/Collection itself* (the {@link PropertyEditor} has to create an array or Collection value) or* to each element (the {@code PropertyEditor} has to create the element type),* depending on the specified required type.* <p>Note: Only one single registered custom editor per property path* is supported. In the case of a Collection/array, do not register an editor* for both the Collection/array and each element on the same property.* <p>For example, if you wanted to register an editor for "items[n].quantity"* (for all values n), you would use "items.quantity" as the value of the* 'propertyPath' argument to this method.* @param requiredType the type of the property. This may be {@code null}* if a property is given but should be specified in any case, in particular in* case of a Collection - making clear whether the editor is supposed to apply* to the entire Collection itself or to each of its entries. So as a general rule:* <b>Do not specify {@code null} here in case of a Collection/array!</b>* @param propertyPath the path of the property (name or nested path), or* {@code null} if registering an editor for all properties of the given type* @param propertyEditor editor to register*/void registerCustomEditor(@Nullable Class<?> requiredType, @Nullable String propertyPath, PropertyEditor propertyEditor);/*** Find a custom property editor for the given type and property.* @param requiredType the type of the property (can be {@code null} if a property* is given but should be specified in any case for consistency checking)* @param propertyPath the path of the property (name or nested path), or* {@code null} if looking for an editor for all properties of the given type* @return the registered editor, or {@code null} if none* 查找自定义的类型转换器*/@NullablePropertyEditor findCustomEditor(@Nullable Class<?> requiredType, @Nullable String propertyPath);}

示例

import org.springframework.beans.factory.config.CustomEditorConfigurer;  
import org.springframework.beans.PropertyEditorRegistrar;  
import org.springframework.beans.PropertyEditorRegistry;  
import org.springframework.context.annotation.Bean;  
import org.springframework.context.annotation.Configuration;  import java.beans.PropertyEditor;  
import java.text.ParseException;  
import java.text.SimpleDateFormat;  @Configuration  
public class AppConfig {  @Bean  public CustomEditorConfigurer customEditorConfigurer() {  CustomEditorConfigurer configurer = new CustomEditorConfigurer();  configurer.setPropertyEditorRegistrars(new PropertyEditorRegistrar() {  @Override  public void registerCustomEditors(PropertyEditorRegistry registry) {  registry.registerCustomEditor(Date.class, new CustomDateEditor());  }  });  return configurer;  }  static class CustomDateEditor extends PropertyEditorSupport {  private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");  @Override  public void setAsText(String text) throws IllegalArgumentException {  try {  setValue(dateFormat.parse(text));  } catch (ParseException e) {  throw new IllegalArgumentException("Could not parse date: " + text, e);  }  }  }  
}

在这个例子中,我们创建了一个自定义的日期编辑器 CustomDateEditor,它能够将字符串解析为 Date 对象。然后,我们创建了一个 CustomEditorConfigurer 的 bean,并在其中注册了我们的自定义编辑器。这样,当 Spring 遇到需要将字符串转换为 Date 类型时,它会使用我们的自定义编辑器来完成转换。

总结

PropertyEditorRegistry 和相关的类在 Spring 中提供了灵活的方式来管理属性转换逻辑,这对于处理不同类型的数据绑定和类型转换非常有用。

PropertyAccessor

简介

在Spring框架中,PropertyAccessor是一个接口,它提供了一种访问JavaBean属性的通用机制。PropertyAccessor接口定义了一系列方法来读取、写入和查询JavaBean的属性。Spring提供了多个PropertyAccessor的实现,如DirectFieldAccessor、BeanWrapperImpl等,这些实现类提供了对JavaBean属性的不同访问策略。

PropertyAccessor的主要功能包括:

  • 属性读取:通过属性名获取JavaBean的属性值。
  • 属性写入:通过属性名和属性值设置JavaBean的属性。
  • 属性存在性检查:检查JavaBean是否具有某个属性。
  • 属性类型获取:获取JavaBean属性的类型。
  • 属性描述符获取:获取描述属性元数据的PropertyDescriptor对象。

Spring的PropertyAccessor接口通常与数据绑定、类型转换和属性访问相关。例如,在Spring MVC中,当请求参数需要绑定到JavaBean时,Spring会使用PropertyAccessor来读取和设置请求参数的值。

PropertyAccessor接口有几个重要的实现:

  • BeanWrapperImpl:这是PropertyAccessor的一个常用实现,它提供了对JavaBean属性的完整访问。BeanWrapperImpl使用Java的反射API来访问属性,并支持延迟属性访问(lazy property access),这意味着属性只在首次访问时才会被检索。
  • DirectFieldAccessor:这个实现类似于BeanWrapperImpl,但它使用Java的字段访问机制(而不是反射API)来直接访问JavaBean的字段。这通常比反射更快,但可能受到Java访问控制限制的影响。
  • MapWrapper:这个实现将Map对象包装为PropertyAccessor,使得可以通过属性名来访问Map中的键值对。

ListWrapper:类似于MapWrapper,这个实现将List对象包装为PropertyAccessor,允许通过索引访问列表元素。

源码

/*** Common interface for classes that can access named properties* (such as bean properties of an object or fields in an object)* Serves as base interface for {@link BeanWrapper}.** @author Juergen Hoeller* @since 1.1* @see BeanWrapper* @see PropertyAccessorFactory#forBeanPropertyAccess* @see PropertyAccessorFactory#forDirectFieldAccess*/
public interface PropertyAccessor {/*** Path separator for nested properties.* Follows normal Java conventions: getFoo().getBar() would be "foo.bar".*/String NESTED_PROPERTY_SEPARATOR = ".";/*** Path separator for nested properties.* Follows normal Java conventions: getFoo().getBar() would be "foo.bar".*/char NESTED_PROPERTY_SEPARATOR_CHAR = '.';/*** Marker that indicates the start of a property key for an* indexed or mapped property like "person.addresses[0]".*/String PROPERTY_KEY_PREFIX = "[";/*** Marker that indicates the start of a property key for an* indexed or mapped property like "person.addresses[0]".*/char PROPERTY_KEY_PREFIX_CHAR = '[';/*** Marker that indicates the end of a property key for an* indexed or mapped property like "person.addresses[0]".*/String PROPERTY_KEY_SUFFIX = "]";/*** Marker that indicates the end of a property key for an* indexed or mapped property like "person.addresses[0]".*/char PROPERTY_KEY_SUFFIX_CHAR = ']';/***属性是否可读*/boolean isReadableProperty(String propertyName);/***属性是否可写*/boolean isWritableProperty(String propertyName);/*** 获取属性的Class*/@NullableClass<?> getPropertyType(String propertyName) throws BeansException;/*** 获取属性的类型描述符*/@NullableTypeDescriptor getPropertyTypeDescriptor(String propertyName) throws BeansException;/*** 根据属性名获取属性值*/@NullableObject getPropertyValue(String propertyName) throws BeansException;/*** 设置一个PropertyValue对象 存储属性名:属性值*/void setPropertyValue(PropertyValue pv) throws BeansException;/*** 设置一个map集合*/void setPropertyValues(Map<?, ?> map) throws BeansException;/*** 设置一个PropertyValues 多个PropertyValue对象*/void setPropertyValues(PropertyValues pvs) throws BeansException;/*** 设置一个PropertyValues ignoreUnknown:属性在不可写的情况是否抛出异常*/ void setPropertyValues(PropertyValues pvs, boolean ignoreUnknown)throws BeansException;void setPropertyValues(PropertyValues pvs, boolean ignoreUnknown, boolean ignoreInvalid)throws BeansException;}

示例

import org.springframework.beans.BeanWrapper;  
import org.springframework.beans.BeanWrapperImpl;  
import org.springframework.beans.PropertyAccessorFactory;  public class Example {  public static void main(String[] args) {  MyObject myObject = new MyObject();  // 创建BeanWrapperImpl实例  BeanWrapper beanWrapper = PropertyAccessorFactory.forBeanPropertyAccess(myObject);  // 使用BeanWrapper访问属性  beanWrapper.setPropertyValue("propertyName", "propertyValue");  Object propertyValue = beanWrapper.getPropertyValue("propertyName");  // 还可以检查属性是否存在、获取属性类型等  boolean isPropertyEditable = beanWrapper.isPropertyEditable("propertyName");  Class<?> propertyType = beanWrapper.getPropertyType("propertyName");  }  
}  class MyObject {  private String propertyName;  // getter和setter方法  public String getPropertyName() {  return propertyName;  }  public void setPropertyName(String propertyName) {  this.propertyName = propertyName;  }  
}

在这个例子中,我们使用PropertyAccessorFactory.forBeanPropertyAccess(myObject)创建了一个BeanWrapperImpl实例,并通过它来访问MyObject的属性。BeanWrapperImpl提供了丰富的方法来进行属性访问和操作。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/692630.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Go语言中的流程控制

「万事开头难&#xff0c;视频号500粉直播需要你的助力&#xff01;你的支持是我前进的动力&#xff01;」 1、Golang 中的流程控制 流程控制是每种编程语言控制逻辑走向和执行次序的重要部分&#xff0c;流程控制可以说是一门语言的“经脉”。Go 语言中最常用的流程控制有 if …

题目 1201: 回文数(一)

题目描述: 若一个数&#xff08;首位不为0&#xff09;从左到右读与从右到左读都是一样&#xff0c;这个数就叫做回文数&#xff0c;例如12521就是一个回文数。 给定一个正整数&#xff0c;把它的每一个位上的数字倒过来排列组成一个新数&#xff0c;然后与原数相加&#xff0…

【案例研习笔记】KodeRover_云时代 DevOps 建设

轻度量、轻流程、重开发者体验生产力工具建设要大于管理工具建设贴合自己业务&#xff0c;不要去求大求全

Ceph入门到精通-更换osd、扩容osd

1. 更换故障盘 1. 1 查看故障盘osd id ceph osd tree1.2 销毁osd ceph osd destroy 60 --yes-i-really-mean-it#ceph osd purge 60 --yes-i-really-mean-it #destroy可以保留osd id&#xff1b;purge不保留osd id1.3 更换故障硬盘 1.4 查看新硬盘盘符 lsblk1.5 擦除新硬盘…

如何使用快手item_search API

要使用快手&#xff08;Kuaishou&#xff09;的 item_search API&#xff0c;你首先需要确保你有访问该API的权限&#xff0c;这通常意味着你需要有一个有效的API密钥&#xff08;API Key&#xff09;和/或访问令牌&#xff08;Access Token&#xff09;。快手API的具体实现细节…

十六、包装类

文章目录 包装类2.1 基本用法2.2 共同点2.3 剖析Character 包装类 本文为书籍《Java编程的逻辑》1和《剑指Java&#xff1a;核心原理与应用实践》2阅读笔记 Java有 8 8 8种基本类型&#xff0c;每种基本类型都有一个对应的包装类。包装类是什么呢&#xff1f;它是一个类&…

SpirngBoot整合Redis解决缓存穿透、缓存击穿、缓存雪崩问题

一、Redis缓存 Redis是一个高性能的键值对存储数据库&#xff0c;也是一个基于内存的数据结构存储系统&#xff0c;同时也支持持久化数据存储。Redis提供了丰富的数据结构&#xff0c;包括字符串、哈希、列表、集合、有序集合等。在缓存方面&#xff0c;Redis最大的优点就是支持…

回避型人格适合什么职业?如何改善回避型人格?

回避型人格最突出的特点,就是对外界的排斥极度敏感&#xff0c;他们非常害怕别人的不认可&#xff0c;也特别害惧失败&#xff0c;因此不敢与人交往&#xff0c;同时也害怕新事物。因为受到这一性格的影响&#xff0c;他们极度缺乏社交能力&#xff0c;也一直在否定自身能力。 …

Flutter框架性泛学习系列之二、Flutter应用层(Application Layer)上-常用Widgets与简单动画

文章目录 概述一、应用程序&#xff08;Application&#xff09;&#xff1a;1、创建应用对象2、定义应用主页 二、Widgets&#xff1a;1. 基础的内置Widgets应用1.1 Text Widget1.2 RaisedButton Widget1.3 Image Widget1.4 Icon Widget 2. 自定义Widgets的创建与应用2.1 创建…

网络协议汇总

1.HTTP协议 1.认识URL 平时我们俗称的 "网址" 其实就是说的 URL URL中的字符只能是ASCII字符&#xff0c;但是ASCII字符比较少&#xff0c;而URL则常常包含ASCII字符集以外的字符&#xff0c;如非英语字符、汉字、特殊符号等等&#xff0c;所以要对URL进行转换。这个…

已解决Application run failed org.springframework.beans.factory.BeanNot

问题原因&#xff1a;SpringBoot的版本与mybiats-puls版本不对应且&#xff0c;spring自带的mybiats与mybiats-puls版本不对应 这里我用的是3.2.2版本的SpringBoot&#xff0c;之前mybiats-puls版本是3.5.3.1有所不同。 问题&#xff1a;版本对不上 解决办法&#xff1a;完整…

将JWT令牌存储到浏览器中localStorage中,并且往页面请求头中添加token

将JWT令牌存储到浏览器中localStorage中 localStorage.setItem(token, response.data.data) 其中response.data.data是后端返回的数据为jwt字符串 往页面请求头中添加token 在vue中的main.js添加如下再带&#xff0c;axios便会拦截所有请求并且如果localStorage有token则会…

宝塔nginx配置SpringBoot服务集群代理

宝塔nginx配置SpringBoot服务集群代理 1、需求&#xff1a; 现有一个springboot服务需要部署成集群&#xff0c;通过nginx负载均衡进行访问&#xff0c;其中这个springboot服务内置了MQTT服务、HTTP服务、TCP服务。 MQTT服务开放了1889端口 HTTP服务开放了8891端口 HTTP服务开…

LeetCode94.二叉树的中序遍历

题目 给定一个二叉树的根节点 root &#xff0c;返回 它的 中序 遍历 。 示例 &#xff1a; 输入&#xff1a;root [1,null,2,3] 输出&#xff1a;[1,3,2] 思路 中序遍历的顺序是左子树 -> 根节点 -> 右子树。因此&#xff0c;我们可以通过递归的方式遍历二叉树&…

《白话C++》第8章 8.4.1 INI文件简介,8.4.2面向过程的设计 Page 761

以下是一个INI例子文件的内容&#xff1a; [DISPLAY_SETTING] #是否显示启动窗口&#xff1a; will_show_splash_window yes default_title welcom... [NETWORK_SETTING] svc_host www.d2school.com svc_port 80 带中括号的行代表一个“配置段&#xff08;section&#x…

[word] word 怎样批量把英文单词的首字母全部改成大写 #笔记#其他#学习方法

word 怎样批量把英文单词的首字母全部改成大写 word在处理长文档的过程中&#xff0c;有时候一个单词在多页重复出现。如果要把该单词的首字母改成大写&#xff0c;如果一个一个的改&#xff0c;费时费力。 方法&#xff1a;替换功能 如&#xff1a;我要把camtasia批量改成C…

【riscv】使用qemu运行riscv裸机freestanding程序

文章目录 1. 运行显示2. 工具准备3. 裸机代码和编译3.1 源码3.2 编译 4. 使用qemu仿真运行riscv裸机程序 1. 运行显示 详见左下角&#xff0c; 运行时串口输出的字符 A ; 2. 工具准备 # for riscv64-linux-gnu-gcc sudo apt-get install gcc-riscv64-linux-gnu# for qemu-s…

P6279 题解

P6279 题解 Overview 结论&#xff08;待论证&#xff09; Description 给定一个有向图&#xff0c;这个有向图的每一个点所连接的点都属于同一个集合。 求集合数量最大且字典序最小的集合标号方案。 Solution 先讲结论。 结论&#xff1a;用 vector 存储每个点所连接的…

Spring Cloud Sleuth:分布式链路跟踪

1. 理解分布式链路跟踪 1.1 什么是分布式链路跟踪 在分布式系统中&#xff0c;由于服务间的调用涉及多个节点和网络通信&#xff0c;出现问题时追踪问题的根源变得异常困难。分布式链路跟踪是一种技术&#xff0c;旨在解决这个问题。它允许开发人员追踪分布式系统中请求的流转…

C#是什么?可以用来做什么?

C#是什么&#xff1f;可以用来做什么&#xff1f; C#简介 C#&#xff08;读作“C Sharp”&#xff09;是一种容易使用不复杂新型的编程语言&#xff0c;不仅是面向对象&#xff0c;它的类型还安全。C# 源于 C 语言系列&#xff0c;C、C、Java 和 JavaScript 程序员很快就可以上…