在使用Castor将java对象转换为xml文件时,会遇到Clob类型的属性的转换。Castor中没有Clob类型的处理器,因此需要我们自己实现一个ClobFieldHandler。
例如:我们要将Root.java转换成一个xml文件。
1.Root.java
package lab.castor.lab01;
import java.sql.Clob;
public class Root {
private Clob comment;
public Clob getComment() {
return comment;
}
public void setComment(Clob comment) {
this.comment = comment;
}
}
2.mapping.xml
<?xml version="1.0"?>
<mapping>
<class name="lab.castor.lab01.Root">
<field name="comment" type="string" handler="lab.castor.lab01.ClobFieldHandler">
<bind-xml node="comment"/>
</field>
</class>
</mapping>
3.ClobFieldHandler.java
package lab.castor.lab01;
import java.io.Reader;
import java.sql.Clob;
import org.exolab.castor.mapping.GeneralizedFieldHandler;
public class ClobFieldHandler extends GeneralizedFieldHandler {
/**
* Creates a new ClobFieldHandler instance
*/
public ClobFieldHandler() {
super();
}
/**
* This method is used to convert the value when the getValue method is called. The getValue method will obtain the
* actual field value from given 'parent' object. This convert method is then invoked with the field's value. The
* value returned from this method will be the actual value returned by getValue method.
*
* @param value the object value to convert after performing a get operation
* @return the converted value.
*/
public Object convertUponGet(Object value) {
if (value == null) {
return null;
}
StringBuffer sb = new StringBuffer();
try {
Clob clob = (Clob) value;
Reader reader = clob.getCharacterStream();
if (reader == null) {
return null;
}
char[] charbuf = new char[4096];
// 解决4096字节大小的限制
for (int i = reader.read(charbuf); i > 0; i = reader.read(charbuf)) {
sb.append(charbuf, 0, i);
}
} catch (Exception e) {
//
}
return sb.toString();
}
/**
* This method is used to convert the value when the setValue method is called. The setValue method will call this
* method to obtain the converted value. The converted value will then be used as the value to set for the field.
*
* @param value the object value to convert before performing a set operation
* @return the converted value.
*/
public Object convertUponSet(Object value) {
return null;
}
/**
* Returns the class type for the field that this GeneralizedFieldHandler converts to and from. This should be the
* type that is used in the object model.
*
* @return the class type of of the field
*/
public Class getFieldType() {
return Clob.class;
}
/**
* Creates a new instance of the object described by this field.
*
* @param parent The object for which the field is created
* @return A new instance of the field's value
* @throws IllegalStateException This field is a simple type and cannot be instantiated
*/
public Object newInstance(Object parent) throws IllegalStateException {
// -- Since it's marked as a string...just return null,
// -- it's not needed.
return null;
}
}
没有实现String到Clob的转换。
分享到:
相关推荐
onnxruntime-1.16.0-cp311-cp311-win_amd64.whl
基于springboot的流浪猫狗救助系统源码数据库文档.zip
摘 要 如今的信息时代,对信息的共享性,信息的流通性有着较高要求,因此传统管理方式就不适合。为了让美容院信息的管理模式进行升级,也为了更好的维护美容院信息,美容院管理系统的开发运用就显得很有必要。并且通过开发美容院管理系统,不仅可以让所学的SpringBoot框架得到实际运用,也可以掌握MySQL的使用方法,对自身编程能力也有一个检验和提升的过程。尤其是通过实践,可以对系统的开发流程加深印象,无论是前期的分析与设计,还是后期的编码测试等环节,都可以有一个深刻的了解。 美容院管理系统根据调研,确定其实现的功能主要包括美容用品管理,美容项目管理,美容部位管理,销量信息管理,订单管理,美容项目预约信息管理等功能。 借助于美容院管理系统这样的工具,让信息系统化,流程化,规范化是最终的发展结果,让其遵循实际操作流程的情况下,对美容院信息实施规范化处理,让美容院信息通过电子的方式进行保存,无论是管理人员检索美容院信息,维护美容院信息都可以便利化操作,真正缩短信息处理时间,节省人力和信息管理的成本。 关键字:美容院管理系统,SpringBoot框架,MySQL
numpy-1.21.1-cp39-cp39-linux_armv7l.whl
基于JavaWeb+springboot的宠物救助及领养平台源码数据库文档.zip
基于springboot员工在线餐饮管理系统源码数据库文档.zip
matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
基于springboot+web的留守儿童网站源码数据库文档.zip
STM32神舟III号例程源码SysTick系统滴答(神舟III号-库函数版)提取方式是百度网盘分享地址
STM32开发相关软件ISP 程序下载STM32开发相关软件ISP 程序下载提取方式是百度网盘分享地址
onnxruntime-1.17.0-cp310-cp310-win_amd64.whl
Pillow-9.5.0-cp39-cp39-linux_armv7l.whl
基于springboot高性能计算中心的高性能集群共享平台源码数据库文档.zip
SciPy-1.11.1-cp311-cp311-linux_armv7l.whl
主机硬件信息邮件及微信推送
numpy-1.23.4-cp39-cp39-linux_armv7l.whl
基于springboot视频点播系统源码数据库文档.zip
基于springboot竞赛管理系统源码数据库文档.zip
环境说明: 开发语言:python Python版本:3.6.8 数据库:mysql 5.7数据库工具:Navicat11开发软件:pycharm
opencv_python-4.6.0.66-cp37-cp37m-linux_armv7l.whl