使用@AutoWired替换struts2 Action中的get、set方法

public class LoginAction{


    @Autowired
    private ILoginDao loginDao;
    @Autowired

    private IReportDao reportDao;

......

}


spring applicationContext.xml






 






关于dao的bean配置可以理解,但是action也需配置bean不理解

你可能感兴趣的:(使用@AutoWired替换struts2 Action中的get、set方法)