Spring依赖注入-反射/字节码检测

发布于 2024-11-25 22:36:25 字数 76 浏览 2 评论 0原文

当我想对一些非默认构造函数(即带有参数)使用依赖注入时,spring 必须使用字节码检测,对吗?因为 AFAIK 反射仅支持默认构造函数?

When I want to use dependency injection with some non-default constructor, i.e. with parameters, spring must be using byte code instrumentation for that, right? Because AFAIK reflection only supports default constructor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

献世佛 2024-12-02 22:36:25

反射支持任意数量的参数,例如我有一个类 TestClass,它在其构造函数之一中接受两个参数:

public TestClass(int test1, String test) {
    System.out.println(test1 + test);
}

我将通过反射调用此构造函数,如下所示:

    Constructor<TestClass> constructor = TestClass.class.getConstructor(Integer.class, String.class);
    TestClass test = constructor.newInstance(1, "test");

Reflections supports any number of arguments, say for instance I have a class TestClass which takes two arguments in one of its constructors:

public TestClass(int test1, String test) {
    System.out.println(test1 + test);
}

I would invoke this constructor, through reflection, like so:

    Constructor<TestClass> constructor = TestClass.class.getConstructor(Integer.class, String.class);
    TestClass test = constructor.newInstance(1, "test");
放飞的风筝 2024-12-02 22:36:25

反射。

类的源代码

请检查org.springframework.beans.factory.support.ConstructorResolver
方法: protected BeanWrapper autowireConstructor(...)

调用 =>

org.springframework.beans.factory.support.SimpleInstantiationStrategy
方法: public Object instantiate(...)

调用 =>

org.springframework.beans.BeanUtils
方法: public static Object instantiateClass(Constructor ctor, Object[] args)

使用反射创建 bean

Reflection.

Please check source code for the class

org.springframework.beans.factory.support.ConstructorResolver
Method: protected BeanWrapper autowireConstructor(...)

invokes =>

org.springframework.beans.factory.support.SimpleInstantiationStrategy
Method: public Object instantiate(...)

invokes =>

org.springframework.beans.BeanUtils
Method: public static Object instantiateClass(Constructor ctor, Object[] args)

which uses Reflection to create the bean

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文