Dave or anyone else for that matter, I've done some more searching and I want to confirm that I've found the right path to go down to resolve this...
Looking at
http://www.javabeat.net/articles/70-integrating-struts-with-spring-1.html
to use the ContextLoaderPlugin
The article talks about doing one of 2 things (I have a choice)
A) Overriding the Struts RequestProcessor with Spring’s DelegatingRequestProcessor.
B) Delegate Struts Action management to the Spring framework.
In the struts.xml file, I declare a plugin and provide as a parameter the location of applicationContext
for overriding the struts request processer add
to struts.xml
or in the second way, I set the type in my struts action
which gives the spring container control over creating the object. The action will need to be declared in applicationContext.
Does this sound correct. I thought this would be easier than this. The examples of struts to spring I had seen previously did not include any of this.
Mike