如何让 Spring 实例化一个没有无参数构造函数的 bean?我正在使用 java-config(不是 xml-config)。它似乎使用 XML 工作 - 但我不应该能够以某种方式对注释做同样的事情吗?
直接来自教程,以下示例是 xml-config 中的等效示例:
<bean id="exampleBean" class="examples.ExampleBean">
<constructor-arg index="0" value="7500000"/>
<constructor-arg index="1" value="42"/>
</bean>
它还提到了@ConstructorProperties 注释的使用,我尝试使用它 - 但我无法让它工作。我不断收到 BeanInstantiationException。