Can anyone give me a hint how I could marshall a bean from a static XML file (main/resources/config.xml) in Spring? I'd like to get Spring to do all the work for me, hopefully with some magic in the spring applicationContext.xml file.
For example, say I have the following;
@XmlRootElement(name="config")
public class MyConfig
{
private List<FooBar> foobars;
//constructor, getter + setter
}
@XmlType(name="fooBar")
public class FooBar
{
private String name;
private Foo foo;
private Bar bar;
//constructor, getters + setters
}
@XmlType(name="foo")
public class Foo
{
private String name;
//constructor, getters + setters
}
@XmlType(name="bar")
public class Bar
{
private String name;
//constructor, getters + setters
}
.. and I want a bean loading with this XML;
<config>
<fooBar>
<name>foobar1</name>
<foo>
<name>foo1</name>
</foo>
<bar>
<name>bar1</name>
</bar>
</fooBar>
<fooBar>
<name>foobar2</name>
<foo>
<name>foo2</name>
</foo>
<bar>
<name>bar2</name>
</bar>
</fooBar>
</config>
I could just write a constructor and pass in the XML file as a resource, but I have the feeling that Spring has already solved the problem for me, I just can't find out how.