Do you use Struts 1 or 2?
If you are using Struts 1, there are several ways to do this. I prefer to do this using org.springframework.web.struts.DelegatingActionProxy. You will need spring -webmvc-struts.jar in the classpath.
spacers-config.xml:
<action path="/faq" type="org.springframework.web.struts.DelegatingActionProxy" name="faqForm" parameter="method">
<forward name="List" path="faq.list" />
</action>
applicationContext.xml:
<bean name="/faq" class="com.mypackage.FAQAction" autowire="byType" />
, , spring.
, , 1 spring. developerWorks developerWorks, , google " Struts Spring" (, , ).