我正在使用Spring的ConversionService
,添加一个简单的转换器将ZonedDateTime
(Java 8)转换为String
:
@Bean
public ConversionServiceFactoryBean conversionServiceFactoryBean() {
ConversionServiceFactoryBean conversionServiceFactoryBean =
new ConversionServiceFactoryBean();
Converter<ZonedDateTime, String> dateTimeConverter =
new Converter<ZonedDateTime, String>() {
@Override
public String convert(ZonedDateTime source) {
return source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
}
};
conversionServiceFactoryBean.setConverters(
new HashSet<>(Arrays.asList(dateTimeConverter)));
return conversionServiceFactoryBean;
}
这很好用。但我的IDE(IntelliJ)建议用lambda表达式替换匿名内部类:
Converter<ZonedDateTime, String> dateTimeConverter =
source -> source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
如果我这样做,那么它就不再起作用了,我得到一个关于Spring无法确定泛型类型的错误:
Caused by: java.lang.IllegalArgumentException: Unable to the determine sourceType <S> and targetType <T> which your Converter<S, T> converts between; declare these generic types.
at org.springframework.util.Assert.notNull(Assert.java:112)
at org.springframework.core.convert.support.GenericConversionService.addConverter(GenericConversionService.java:100)
at org.springframework.core.convert.support.ConversionServiceFactory.registerConverters(ConversionServiceFactory.java:50)
at org.springframework.context.support.ConversionServiceFactoryBean.afterPropertiesSet(ConversionServiceFactoryBean.java:70)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1627)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1564)
表示lambda表达式的Class
对象与匿名内部类的Class
明显不同,Spring无法再确定泛型类型。 Java 8如何使用lambda表达式完成这项工作?这是Spring中的一个可以修复的错误,还是Java 8没有提供必要的信息?
我正在使用Spring版本4.1.0.RELEASE和Java 8更新20。
答案 0 :(得分:6)
This post链接in the comments by Alan Stokes很好地解释了这个问题。
基本上,在当前的JDK中,lambda的实际实现被编译到声明类中,JVM生成一个Lambda类,其方法是擦除接口中声明的方法。
所以
Converter<ZonedDateTime, String> dateTimeConverter =
source -> source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
生成像
这样的合成方法private static java.lang.String com.example.Test.lambda$0(java.time.ZonedDateTime source) {
return source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
}
由生成的lambda类实例调用。在内部,功能接口方法简单地转换为上述方法的参数类型。 JLS states
如果被覆盖的方法类型的擦除在其中有所不同 来自
U
的函数类型的擦除的签名,然后是之前的签名 评估或执行lambda体,方法的身体检查 每个参数值都是子类或子接口的实例 在函数类型中擦除相应的参数类型 你如果没有,则抛出ClassCastException
。
VM本身会生成一个重写方法,该方法是接口中声明的方法的原始等效方法。
您对类型的唯一信息是上面的static
方法。由于此方法是声明类的一部分,因此在给定从lambda表达式生成的实例时,Spring无法检索它。
但是,你可以做到
interface ZonedDateTimeToStringConverter extends Converter<ZonedDateTime, String> {
}
和
Converter<ZonedDateTime, String> dateTimeConverter = (ZonedDateTimeToStringConverter)
source -> source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
或
ZonedDateTimeToStringConverter dateTimeConverter = source -> source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
这会强制lambda声明类似
的方法public String convert(ZonedDateTime zdt);
并且Spring将能够找到它并解析目标和源类型。
答案 1 :(得分:1)
结帐TypeTools:
Converter<ZonedDateTime, String> converter = source -> source.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME);
Class<?>[] typeArgs = TypeResolver.resolveRawArguments(Converter.class, converter.getClass());
assert typeArgs[0] == ZonedDateTime.class;
assert typeArgs[1] == String.class;
这种方法适用于Oracle / OpenJDK,因为它使用sun.reflect.ConstantPool
API。
注意:我被要求将这项工作贡献给Spring,但我还没有空闲时间(快速浏览一下,与Spring现有的通用类型解决方案完全整合似乎是非常重要的)。