Ths ListFactoryBean is a simple factory for shared List instance. The list element is defined in the xml bean definitions. The setSourceList method set the source List which is written in xml list element. The SetTargetListClass method set the class to use target List.
Week.java
package list.factory.example;
import java.util.List;
public class Week {
private List days;
public List getDays() {
return days;
}
public void setDays(List days) {
this.days = days;
}
@Override
public String toString() {
return "Days [lists=" + days + "]";
}
}
AppMain.java
package list.factory.example;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class AppMain {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext(
new String[] { "context.xml" });
Week weekday = (Week) context.getBean("week");
System.out.println(weekday);
}
}
context.xml
<?xml version="1.0" encoding="UTF-8"?>
|
| Days [lists=[Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]] |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.