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

溫馨提示×

溫馨提示×

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

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

netty中spring對象注入失敗怎么解決

發布時間:2022-02-15 09:19:09 來源:億速云 閱讀:160 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“netty中spring對象注入失敗怎么解決”,內容詳細,步驟清晰,細節處理妥當,希望這篇“netty中spring對象注入失敗怎么解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

netty中spring對象注入失敗

今天在做項目的時候發現在netty中注入service失敗,百度許久后也找不到答案(@Component,@PostConstruct)未起作用,后靈光一現

發現了問題所在

如圖:

netty中spring對象注入失敗怎么解決

netty中spring對象注入失敗怎么解決

這些地方都必須通過spring注入才能實現其他依賴注入,之前這里都是采用new的,所以導致spring注入失敗

在netty中注入spring成份

前不久,在Netty中使用到數據庫數據,由于Netty服務啟動后的上下文與 Spring的上下文不同,所以在Netty中獲取DAO數據很頭痛,無法使用@Autowired注入。

Aware本義就是"自動的",顧名思義Spring自動做了些事情。在此某些特殊的情況下,Bean需要實現某個功能,但該功能必須借助于Spring容器,此時就必須先獲取Spring容器,然后借助于Spring容器實現該功能。

為了讓Bean獲取它所在的Spring容器,可以讓該Bean實現ApplicationContextAware接口。

可以通過以下方式

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
 
/**
 * 
 * @author shilei
 *
 * @time 2019年6月19日 下午5:17:50
 *
 * @desc Netty中注入 Spring Autowired
 */
@Component
public class ToolNettySpirngAutowired implements ApplicationContextAware { 
	private static ApplicationContext applicationContext; 
	@Override
	public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
		if (ToolNettySpirngAutowired.applicationContext == null) {
			ToolNettySpirngAutowired.applicationContext = applicationContext;
		}
	}
 
	// 獲取applicationContext
	public static ApplicationContext getApplicationContext() {
		return applicationContext;
	}
 
	// 通過name獲取 Bean.
	public static Object getBean(String name) {
		return getApplicationContext().getBean(name);
	}
 
	// 通過class獲取Bean.
	public static <T> T getBean(Class<T> clazz) {
		return getApplicationContext().getBean(clazz);
	}
 
	// 通過name,以及Clazz返回指定的Bean
	public static <T> T getBean(String name, Class<T> clazz) {
		return getApplicationContext().getBean(name, clazz);
	} 
}

在使用時 可在某業務Handler中添加以下代碼:

private static NodeServService nodeServService; 
static {
    nodeServService = ToolNettySpirngAutowired.getBean(NodeServService.class);
} 
private static NodeJpaRepository nodeDao; 
static {
    nodeDao = ToolNettySpirngAutowired.getBean(NodeJpaRepository.class);
}

讀到這里,這篇“netty中spring對象注入失敗怎么解決”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

海门市| 湘潭县| 汶上县| 江山市| 红河县| 布尔津县| 阳泉市| 梨树县| 鸡西市| 中阳县| 抚顺县| 民勤县| 得荣县| 建湖县| 南岸区| 临城县| 兰州市| 鲁山县| 缙云县| 苍溪县| 牙克石市| 汝城县| 榆社县| 安阳市| 正阳县| 河源市| 电白县| 兴城市| 胶南市| 堆龙德庆县| 南木林县| 万年县| 娱乐| 都匀市| 新津县| 德清县| 海盐县| 彰化县| 古蔺县| 肇庆市| 通河县|