91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring中實例化bean無效怎么解決

發布時間:2022-02-25 11:33:24 來源:億速云 閱讀:364 作者:iii 欄目:開發技術

這篇文章主要講解了“spring中實例化bean無效怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“spring中實例化bean無效怎么解決”吧!

spring中實例化bean無效

在做Struts2和Spring整合時遇到Spring實例化無效的情況,

Action中代碼如下

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";
    }
}

applicationContext.xml中配置如下

<?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順序問題,導致注入失敗

我們可以通過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無效怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

韶山市| 鄂伦春自治旗| 安陆市| 都兰县| 八宿县| 潼关县| 阿克陶县| 墨竹工卡县| 三亚市| 封开县| 桓台县| 泉州市| 枣阳市| 高阳县| 颍上县| 邵阳市| 雅安市| 乐都县| 芒康县| 昌宁县| 金沙县| 鹤山市| 池州市| 鄂托克前旗| 杭锦后旗| 沧州市| 台南县| 民丰县| 慈利县| 厦门市| 浮山县| 钟山县| 金秀| 蕉岭县| 基隆市| 清镇市| 突泉县| 天峨县| 呼图壁县| 南平市| 綦江县|