您好,登錄后才能下訂單哦!
這篇文章主要講解了“spring中實例化bean無效怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“spring中實例化bean無效怎么解決”吧!
在做Struts2和Spring整合時遇到Spring實例化無效的情況,
public class UserAction extends ActionSupport { @Resource private UserService userService; public String execute(){ //userService.saveUser(new Object()); System.out.println(userService); System.out.println("struts2spring整合成功"); return "success"; } }
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <!-- 自動掃描與裝配bean --> <context:component-scan base-package="com.bjwl"></context:component-scan> </beans>
通過注解實例化UserService時一直得到的是null。最后經過查找,發現沒有導入Struts2-Spring-plugin.jar的原因。
我們可以通過Spring進行非常方便的管理bean,只需要在類上面加一個注解就可以進行bean的注入,也就是所謂的DI。今天碰到了個小問題,來總結一下。
public abstract class TestBean { public String str; public TestBean(){ this.str = initStr(); } protected abstract String initStr(); } public class TestSon extends TestBean { @Resource public String str; @Override protected String initStr() { return this.str; } }
但是發現這個str始終是null。
在實例化TestBean的時候不能確認str已經實例化,所以是先建立對象,再進行注入str的值。那么創建對象的時候,根據構造方法創建的對象中,還沒有注入str的值,所以只能為null。
我們需要確認在str已經注入進來的情況下再對父類中的str賦值,那么這個時候需要子類實現 InitializingBean 這個接口,實現其中的afterPropertiesSet()
public class TestSon extends TestBean implements InitializingBean { @Resource public String str; @Override protected String initStr() { return this.str; } @Override public void afterPropertiesSet() throws Exception { super.str = this.str; } }
問題成功解決。注入成功
感謝各位的閱讀,以上就是“spring中實例化bean無效怎么解決”的內容了,經過本文的學習后,相信大家對spring中實例化bean無效怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。