spring3.0M3 关于自定义属性编辑器的问题

dzc8512 2009-05-20 04:34:26
<bean id="CustomEditorConfigurer" class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="java.util.Date">
<bean class="com.dzc.DatePropertyEditor"> </bean>
</entry>
</map>
</property>
</bean>
packet com.dzc
import java.beans.PropertyEditorSupport;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;


public class DatePropertyEditor extends PropertyEditorSupport {

@Override
public void setAsText(String text) throws IllegalArgumentException {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
try {
Date d = sdf.parse(text);
this.setValue(d);
} catch (ParseException e) {
e.printStackTrace();
}
}

}

报错原因:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'CustomEditorConfigurer' defined in class path resource [applicationContext.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [java.util.LinkedHashMap] to required type [java.util.Map] for property 'customEditors'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [DatePropertyEditor] to required type [java.lang.String] for property 'customEditors[java.util.Date]': no matching editors or conversion strategy found
我看了CustomEditorConfigurer类的源码,发现customEditors属性的类型是Map <String,String>,是不是因为取出的Date类型的值无法放入Map的Value内导致的错误,而在spring2.0中运行时正常的,对比了CustomEditorConfigurer源码发现customEditors的Map类型没定义泛型。如果真是这样,那在Spring3.0中怎么写个Date类型的自定义属性编辑器啊,望各位大虾帮帮小弟,偶才刚刚开始学习spring,很多不懂,谢谢大家了。
...全文
127 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
yql2004 2009-09-14
  • 打赏
  • 举报
回复
Objector说的太对了,实验成功!!

环境:spring-framework-3.0.0.M4+Myeclipse7.5
Objector 2009-06-19
  • 打赏
  • 举报
回复
Spring框架的2x版本和3x(如3.0.0M3)在这个地方的定义方式是不一样的,估计你看的是2x版的资料,而使用的Spring框架是3.0M3的!
我已经解决了这个问题,需要把定义方式改一下,即把
<entry key="java.util.Date">
<bean class="com.dzc.DatePropertyEditor"> </bean>
</entry>
改为
<entry key="java.util.Date" value="com.dzc.DatePropertyEditor"/>
即可搞定!
tjwkj23 2009-05-26
  • 打赏
  • 举报
回复
难道没人能解决这个问题?
tjwkj23 2009-05-22
  • 打赏
  • 举报
回复
顶一个,这个问题我也遇到
tjwkj23 2009-05-22
  • 打赏
  • 举报
回复
有大牛给点建议不?

67,541

社区成员

发帖
与我相关
我的任务
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
  • Java EE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧