Я новичок в Spring.
Это код для bean регистрации:
<bean id="user" class="User_Imple"> </bean>
<bean id="userdeff" class="User"> </bean>
и это мой класс bean:
public class User_Imple implements Master_interface {
private int id;
private User user; // here user is another class
public User_Imple() {
super();
}
public User_Imple(int id, User user) {
super();
this.id = id;
this.user = user;
}
// some extra functions here....
}
и это мой основной метод для выполнения действий:
public static void main(String arg[]) {
ApplicationContext context = new ClassPathXmlApplicationContext("/bean.xml");
Master_interface master = (Master_interface)context.getBean("user");
// here is my some operations..
int id = ...
User user = ...
// here is where i want to get a Spring bean
User_Imple userImpl; //want Spring-managed bean created with above params
}
Теперь я хочу вызвать этот конструктор с параметрами, и эти параметры генерируются динамически в моих основных методах. Это то, что я имею в виду, потому что хочу передать динамически - не статически, как объявлено в моем файле bean.config
.