SSH下Action中無法注入業務bean的解決方案__bean

來源:互聯網
上載者:User

今天嘗試使用spring註解自動注入bean,但是遇到一個問題:無法在Action中使用@Autowired註解自動注入bean,而在業務bean中可以注入Dao bean,非常奇怪,經過尋找解決了問題。

我的Action代碼如下:

@Result(name = "success", location = "hello.jsp") public class UserAction extends ActionSupport { private static final long serialVersionUID = 1L; @Autowired private UserManager userManager; public String execute() { User user = new User(); user.setUsername("cuihaiyang"); user.setPassword("abcd"); ////使用@Autowired無法注入userManager,但是可以從ApplicationContext裡擷取,這說明已經通過註解@Service自動添加了userManager bean到spring容器中 // String[] paths = { "applicationContext.xml" }; // ApplicationContext context = new // ClassPathXmlApplicationContext(paths); // userManager = (UserManager) context.getBean("userManager"); //使用註解@Autowired時此處userManager為null,並未注入 userManager.add(user); return SUCCESS; } }

後來,在http://blog.csdn.net/HMC20071120015/archive/2010/06/22/5686382.aspx中看到替換jar可以解決問題,我試著使用開發項目中的jar替換自己建立項目中的jar,結果注入成功了,這說明配置沒有問題是jar包有問題。接下來通過一點點的對比尋找有問題的jar包,最後發現是缺少了struts2-spring-plugin.jar。自己對SSH機構不熟導致的低級錯誤啊。。。。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.