在wen.xml文件中配置:
<context-param>
<param-name>modelmapping-config</param-name>
<param-value>jdonframework.xml</param-value>
</context-param>
<listener>
<listener-class>
com.jdon.container.startup.ServletContainerListener
</listener-class>
</listener>
,然后可以通过WebAppUtil.getService("testServcie", request)................
但是我想使用Spring这样的方式
ApplicationContext context = new ClassPathXmlApplicationContext(
new String[] { "applicationContext.xml"});
context.getBean("testService");
请问在jdon中如何来做呢?