gpt4 book ai didi

java - 用spring注入(inject)匿名类

转载 作者:行者123 更新时间:2023-11-30 07:15:17 25 4
gpt4 key购买 nike

我已经阅读了很多关于 getting generic type at runtime 的内容而且我已经明白,为了防止完全类型删除并在不将其提供给构造函数的情况下获取泛型类型,我可以使用匿名类和实用方法,即

interface Generic<T> {
public Class<T> getGenericType();
}

@Component
class GenericImpl<T> extends AbstractGenericImpl<T> {

}

abstract class AbstractGenericImpl<T> implements Generic<T> {

protected Class<T> klass;

@SuppressWarnings("unchecked")
public Class<T> getGenericType() {
if (klass == null) {
// this is a spring utility method
klass = (Class<T>) GenericTypeResolver.resolveTypeArgument(getClass(), AbstractGenericImpl.class);
}
return klass;
}
}

现在使用以前的类层次结构我可以有一个工作 getGenericType当且仅当我实例化 Generic<Anything> 时的方法使用匿名类。事实上,在这个测试中只有前两个断言有效:

@Test
public void testGeneric() throws Exception {
Generic<String> anonymous = new AbstractGenericImpl<String>() {};
Generic<String> anonymous2 = new GenericImpl<String>() {};
Generic<String> concrete = new GenericImpl<String>();
// assertion
assertThat("Anonymous of abstract class", anonymous.getGenericType(), equalTo(String.class));
assertThat("Anonymous of concrete subclass", anonymous2.getGenericType(), equalTo(String.class));
assertThat("With non anonymous class it fails", concrete.getGenericType(), equalTo(String.class));
}

第三个失败了 Expected: <class java.lang.String> but: was <class java.lang.Object>

现在我想在 spring 中使用 Generic 类 @Autowired注释即

@Autowired Generic<String> auto;

@Test
public void testAutowiring() {
assertThat(auto, instanceOf(Generic.class));
assertThat(auto.getGenericType(), equalTo(String.class));
}

但是第二个断言失败并出现与上面相同的错误( Object 而不是 String ),因为 spring 容器在内部用 new GenericImpl<String>() 实例化它

我已经尝试创建 GenericImpl<T> 的构造函数 protected 并声明GenericImpl<String>本身是抽象的,但在这两种情况下,spring 都会失败,并出现 Cannot instantiate bean 异常。

有什么简单的方法可以告诉spring使用匿名类来实例化类吗?

其他详细信息

最后一节课将使用 Jackson 将 json 流转换为 POJO,Jackson 库需要 Class<T>解码对象的字段。

// here I convert json stream to a POJO and I need the generic type
mapper.readValue(hit.source(), getGenericType());

因为我有多个 POJO 类要转换为 JSON,所以我已经在一个通用类中实现了所有逻辑,其中包含名为 Retriever 的泛型。 .最后,我将为每个 POJO 配备一个 Retriever,并且这些 Retriever 通常会 Autowiring 到其他类中。

@Autowired Retriever<Artifact> retriever;

目前我在 Retriever 中有一个构造函数这需要 Class<T>参数并在以后使用它来执行转换。在 Spring 上下文中,我将其用于 Autowiring

<!-- Since retriever has a Class<T> constructor this is the only way I found to resolve its dependency -->
<bean id="artifactRetriever" class="a.b.c.RetrieverImpl">
<constructor-arg value="a.b.c.Artifact"/>
</bean>

对于每个需要转换的 POJO,我都需要其中一个。这种方法可行,但它有点冗长,并且用无用的行使应用程序上下文困惑。所以我一直在寻找一种方法来消除应用程序上下文中的所有这些噪音。

最佳答案

不可能使用 Spring 就地创建和实例化匿名类,而不是使用 XML 配置(因为它需要类名,而你没有)。

关于java - 用spring注入(inject)匿名类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17922923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com