溫馨提示×

溫馨提示×

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

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

spring中實(shí)例化bean無效怎么解決

發(fā)布時間:2022-02-25 11:33:24 來源:億速云 閱讀:362 作者:iii 欄目:開發(fā)技術(shù)

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

spring中實(shí)例化bean無效

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

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>

通過注解實(shí)例化UserService時一直得到的是null。最后經(jīng)過查找,發(fā)現(xiàn)沒有導(dǎo)入Struts2-Spring-plugin.jar的原因。 

spring實(shí)例化bean順序問題,導(dǎo)致注入失敗

我們可以通過Spring進(jìn)行非常方便的管理bean,只需要在類上面加一個注解就可以進(jìn)行bean的注入,也就是所謂的DI。今天碰到了個小問題,來總結(jié)一下。

問題如下

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

但是發(fā)現(xiàn)這個str始終是null。

原因

在實(shí)例化TestBean的時候不能確認(rèn)str已經(jīng)實(shí)例化,所以是先建立對象,再進(jìn)行注入str的值。那么創(chuàng)建對象的時候,根據(jù)構(gòu)造方法創(chuàng)建的對象中,還沒有注入str的值,所以只能為null。

解決

我們需要確認(rèn)在str已經(jīng)注入進(jìn)來的情況下再對父類中的str賦值,那么這個時候需要子類實(shí)現(xiàn) InitializingBean 這個接口,實(shí)現(xiàn)其中的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中實(shí)例化bean無效怎么解決”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對spring中實(shí)例化bean無效怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI