Hi,
the Settings object is a Spring defined bean. So you can write your Java code
and inject the Settings object just like any other Spring bean.
public class MyJava {
private Settings settings;
@Required
public void setSettings(Settings s) {
this.settings = s;
}
}
See also
http://static.springframework.org/spring/docs/2.5.x/reference/beans.html
Kind regards, Hubert Klein Ikkink
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]