我现在的配置文件就一个(spring.xml),想用注解方式实现struts2的拦截器功能。想不增加struts2的配置文件,只在spring.xml中添加配置,应该怎么写
引入struts2(struts-2.2.3)相关jar包;引入Spring(spring-framework-2.5.6)相关jar包
class="com.test.action.cost.FindCostAction">
/WEB-INF/cost/findCost.jsp
struts.xml配置里,如果class=类的全名称时,插入事务会使bean对象无法注入。
@Controller("findCostAction")
@Scope("prototype")
@Transactional(readOnly=true)//插入事务时,bean无法注入给ICostDAO接口
public class FindCostAction {
@Resource
private ICostDAO dao;
。。。。。
}