我有春豆以下。
public class Employee2 {
private int id;
private String name;
private double salary;
public Employee2(int id, String name, double salary) {
this.id = id;
this.name = name;
this.salary = salary;
}
// some logic to call database using above values
}
现在我在spring配置文件中有以下配置。
<bean id="emp2" class="com.basic.Employee2">
<constructor-arg name="id" value="" />
<constructor-arg name="name" value="" />
<constructor-arg name="salary" value="" />
</bean>
现在我无法对上面配置中的值进行硬编码,因为它们是动态的。
现在我使用下面的代码以编程方式获取spring bean。 bean范围是singelton 。
Employee2 emp = (Employee2)applicationContext.getBean("emp2");
现在如何将值传递给Employee2构造函数?
谢谢!
答案 0 :(得分:12)
您可以使用ApplicationContext#getBean(String name, Object ... params)方法,
允许指定显式构造函数参数/工厂方法 参数,覆盖。中的指定默认参数(如果有) bean定义。
例如:
Integer param1 = 2;
String param2 = "test";
Double param3 = 3.4;
Employee2 emp =
(Employee2)applicationContext.getBean("emp2", param1, param2, param3);
无论如何,虽然这可能会有效,但你应该考虑使用 Spring EL ,正如问题中的一条评论所述。