Hi,
i want to use the ContextLoaderPlugInf for Struts, defined in the struts-config.xml:
This works fine. But in myWebApp Context i have a bean, that needs a reference of another beanCode:<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"> <set-property property="contextConfigLocation" value="/WEB-INF/myWebApp.xml"/> </plug-in>
, defined in another context-file which is inside a jar-file, located in the lib folder. Is it possible to use a context-file of a jar file? I always get an exception, that the file can't be find.Code:<bean name="/customerOverview" class="at.demolsky.customer.struts.CustomerOverviewAction"> <property name="customerDAO"> <ref bean="customerDAO"/> </property> </bean>
Thanks
markus


Reply With Quote