Spring依赖注入-反射/字节码检测
当我想对一些非默认构造函数(即带有参数)使用依赖注入时,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
反射支持任意数量的参数,例如我有一个类 TestClass,它在其构造函数之一中接受两个参数:
我将通过反射调用此构造函数,如下所示:
Reflections supports any number of arguments, say for instance I have a class TestClass which takes two arguments in one of its constructors:
I would invoke this constructor, through reflection, like so:
反射。
类的源代码
请检查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