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

溫馨提示×

溫馨提示×

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

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

Java依賴注入的方式是什么

發布時間:2022-06-22 13:40:08 來源:億速云 閱讀:139 作者:iii 欄目:開發技術

這篇“Java依賴注入的方式是什么”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Java依賴注入的方式是什么”文章吧。

Spring中的三種依賴注入方式

  • Field Injection :@Autowired注解的一大使用場景就是Field Injection

  • Constructor Injection :構造器注入,是我們日常最為推薦的一種使用方式Setter Injection:

  • Setter Injection也會用到@Autowired注解,但使用方式與Field Injection有所不同,Field Injection是用在成員變量上,而Setter Injection的時候,是用在成員變量的Setter函數上

// Field Injection
@Service("uploadService")
public class UploadServiceImpl extends ServiceImpl<UploadDao, UploadEntity> implements UploadService {
    @Autowired
    private UploadDao uploadDao;
}
// Constructor Injection
@Service("uploadService")
public class UploadServiceImpl extends ServiceImpl<UploadDao, UploadEntity> implements UploadService {
    private UploadDao uploadDao;
	UploadServiceImpl(UploadDao uploadDao){
		this.uploadDao = uploadDao;
	}
}
// Setter Injection
@Service("uploadService")
public class UploadServiceImpl extends ServiceImpl<UploadDao, UploadEntity> implements UploadService {
    private UploadDao uploadDao;
	@Autowired
	public void setUploadDao(UploadDao uploadDao){
		this.uploadDao =uploadDao
	}
}

1.是否進行循環依賴檢測

  • Field Injection:不檢測

  • Constructor Injection:自動檢測

  • Setter Injection:不檢測

可能遇到的問題

循環依賴報錯: 當服務A需要用到服務B時,并且服務B又需要用到服務A時,Spring在初始化創建Bean時,不知道應該先創建哪一個,就會出現該報錯。

This is often the result of over-eager type matching - consider using 'getBeanNamesOfType' with the 'allowEagerInit' flag turned off, for example

class ServerA{
	@Autowired
	private ServerB b;
}
class ServerB{
	@Autowired
	private ServerA a;
}

如果使用構造方式注入,能夠精準的提醒你是哪兩個類產生了循環依賴 .異常報錯信息能夠迅速定位問題:

Java依賴注入的方式是什么

循環報錯解決辦法是使用 @Lazy注解 ,對任意一個需要被注入Bean添加該注解,表示延遲創建即可。

class ServerA{
	@Autowired
	@Lazy
	private ServerB b;
}
class ServerB{
	@Autowired
	@Lazy
	private ServerA a;
}

以上就是關于“Java依賴注入的方式是什么”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

遂川县| 涡阳县| 湄潭县| 武安市| 且末县| 崇左市| 新巴尔虎左旗| 耿马| 古丈县| 宿迁市| 砚山县| 河曲县| 枞阳县| 象州县| 聂拉木县| 东光县| 天台县| 德州市| 梅州市| 西乌| 游戏| 海兴县| 米泉市| 靖远县| 兴和县| 唐海县| 克拉玛依市| 通辽市| 黑水县| 平江县| 鸡西市| 河东区| 恩施市| 襄垣县| 永丰县| 太白县| 仙居县| 鹤峰县| 西安市| 黑龙江省| 广汉市|