今日收穫-context:component-scan

来源:https://www.cnblogs.com/songzhenyi/archive/2018/07/20/9339485.html
-Advertisement-
Play Games

一、要有命名空間 xmlns:context="http://www.springframework.org/schema/context" 二、作用:直接上解釋吧! Scans the classpath for annotated components that will be auto-reg ...


一、要有命名空間 xmlns:context="http://www.springframework.org/schema/context"

二、作用:直接上解釋吧!

Scans the classpath for annotated components that will be auto-registered as Spring beans. By default,
the Spring-provided @Component, @Repository, @Service, @Controller, @RestController,
@ControllerAdvice, and @Configuration stereotypes will be detected. Note: This tag implies the effects
of the 'annotation-config' tag, activating @Required, @Autowired, @PostConstruct, @PreDestroy,
@Resource, @PersistenceContext and @PersistenceUnit annotations in the component classes, which is
usually desired for autodetected components (without external configuration). Turn off the 'annotation-
config' attribute to deactivate this default behavior, for example in order to use custom
BeanPostProcessor definitions for handling those annotations. Note: You may use placeholders in
package paths, but only resolved against system properties (analogous to resource paths). A
component scan results in new bean definitions being registered; Spring's
PropertySourcesPlaceholderConfigurer will apply to those bean definitions just like to regular bean
definitions, but it won't apply to the component scan settings themselves. See javadoc for
org.springframework.context.annotation.ComponentScan for information on code-based alternatives to
bootstrapping component-scanning.

Content Model : (include-filter*, exclude-filter*)

三、實例

<!-- 配置自動掃描的包 -->
<context:component-scan
base-package="com.it.aop"></context:component-scan>

@Component("arithmeticCalculator")
public class ArithmeticCalculatorImpl

ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
ArithmeticCalculator arithmeticCalculator = (ArithmeticCalculator) ctx.getBean("arithmeticCalculator");

-- 釋放資源

((ConfigurableApplicationContext)ctx).close();
 int result = arithmeticCalculator.add(1, 2);System.out.println("result:" + result);


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • <sup> 標簽可定義上標文本。 包含在 <sup> 標簽和其結束標簽 </sup> 中的內容將會以當前文本流中字元高度的一半來顯示,但是與當前文本流中文字的字體和字型大小都是一樣的。 提示:這個標簽在向文檔添加腳註以及表示方程式中的指數值時非常有用。如果和 <a> 標簽結合起來使用,就可以創建出很好的 ...
  • 最近項目需要在頁面彈窗的時候需要點擊彈窗區域外的地方,其實也就是點擊頁面HTML就可以關閉彈窗, 首先在controller通過js獲取到html的dom節點,然後綁定點擊事件,話不多說上代碼: var htmlEl = angular.element(document.querySelector( ...
  • 最近從網上學習關於node爬蟲的知識,整理了一下分享一下扒去糗事百科的過程。博主新人,剛學習,勿噴。後期會整理好學習node的學習資源分享給大家。VUE學習資源在文章最後。 從零開始: 1、首先需要的是安裝node環境 具體的安裝過程就不詳細闡述了~請看這篇教程: Node.js 安裝配置 node ...
  • https://blog.csdn.net/qq_28929589/article/details/79445354 ...
  • 可以用手機安裝的微信和支付寶掃描下方二維碼測試 JavaScript判斷是否為微信瀏覽器或支付寶瀏覽器 判斷是否為微信瀏覽器或支付寶瀏覽器 可以用手機安裝的微信和支付掃描測試 ...
  • 打開 Chrome 瀏覽器,進入需要截圖的網站頁面,截取整個頁面 1.等待頁面載入完畢後,通過下麵方法打開開發者工具:在頁面任何地方點擊滑鼠右鍵,在彈出菜單中選擇“檢查(Inspect)”選項。 或者使用快捷鍵組合:Alt + Command+ I (Mac) 或 Ctrl + Shift + I  ...
  • 使用js進行圖片下載是很常見的需求,但是解決起來卻不是那麼順利。 伺服器返回了一個圖片地址,網上一搜基本都是用a標簽的download屬性,但是相容性實在是很差。這裡推薦使用blob。 上代碼: xhr.responseType 返回類型指明blob, 這樣返回的xhr.response 就是一個b ...
  • 簡單工廠模式Simple Factory Pattern【Simple Factory Pattern】是設計模式里最簡單的一個模式,又叫靜態工廠模式【Static Factory Pattern】,這個模式沒有收錄在GOF 23 個模式中,因為他非常簡單,在項目中使用也非常廣泛,所以就用它來開篇。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...