IDEA下——Spring入門程式

来源:https://www.cnblogs.com/EWEADN/archive/2018/11/25/10017585.html
-Advertisement-
Play Games

1. 創建一個Maven的項目,我的項目結構如下: 2. 在pom文件里寫下需要導入的依賴: 3. 在Java文件夾下新建package,在package包下新建介面及其實現類 介面: 實現類: 4. 在resources目錄下新建 文件 我們需要在spring容器的配置文件中進行註冊該Bean s ...



  1. 創建一個Maven的項目,我的項目結構如下:
    我的目錄
  2. 在pom文件里寫下需要導入的依賴:
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
         http://maven.apache.org/xsd/maven-4.0.0.xsd">
       <modelVersion>4.0.0</modelVersion>
       <groupId>com.abc</groupId>
       <artifactId>01-first(Spring)</artifactId>
       <version>1.0-SNAPSHOT</version>
       <build>
           <plugins>
               <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-compiler-plugin</artifactId>
                   <configuration>
                       <source>6</source>
                      <target>6</target>
                   </configuration>
               </plugin>
           </plugins>
       </build>
       <properties>
           <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
           <maven.compiler.source>10</maven.compiler.source>
           <maven.compiler.target>10</maven.compiler.target>
           <spring.version>5.1.0.RELEASE</spring.version>
       </properties>
       <dependencies>
           <dependency>
               <groupId>org.springframework</groupId>
               <artifactId>spring-beans</artifactId>
               <version>${spring.version}</version>
           </dependency>
           <dependency>
               <groupId>org.springframework</groupId>
               <artifactId>spring-core</artifactId>
               <version>${spring.version}</version>
           </dependency>
           <dependency>
               <groupId>org.springframework</groupId>
               <artifactId>spring-context</artifactId>
               <version>${spring.version}</version>
           </dependency>
           <dependency>
               <groupId>org.springframework</groupId>
               <artifactId>spring-expression</artifactId>
               <version>${spring.version}</version>
           </dependency>
           <dependency>
               <groupId>org.springframework</groupId>
               <artifactId>spring-jcl</artifactId>
               <version>${spring.version}</version>
           </dependency>
           <dependency>
               <groupId>junit</groupId>
               <artifactId>junit</artifactId>
               <version>4.12</version>
               <scope>test</scope>
           </dependency>
       </dependencies>
       <build>
           <plugins>
               <plugin>
                   <artifactId>maven-compiler-plugin</artifactId>
                   <configuration>
                       <source>1.10</source>
                       <target>1.10</target>
                   </configuration>
               </plugin>
           </plugins>
       </build>
     </project>
  1. 在Java文件夾下新建package,在package包下新建介面及其實現類
    介面:
    public interface SomeService { void doSome(); }
    實現類:

        public class SomeServiceImpl implements SomeService {
        public SomeServiceImpl() {
            System.out.println("創建SomeServiceImpl對象");
        }
    
        @Override
        public void doSome() {
            System.out.println("執行SomeServiceImpl里的doSome()方法");
        }
        }
  2. 在resources目錄下新建applicationContext.xml文件
  • 我們需要在spring容器的配置文件中進行註冊該Bean
  • spring使用的配置文件為xml文件,當然需要引入約束文件,一般將spring的配置文件命名為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"
                xsi:schemaLocation="http://www.springframework.org/schema/beans
               http://www.springframework.org/schema/beans/spring-beans.xsd">    
         <!--註冊Servcie其造價於如下代碼:   SomeServiceImpl someService = new SomeServiceImpl();
                    其底層是通過反射機制創建的someService對象
            Object someService = Class.forName("com.abc.service.SomeServiceImpl").newInstance();-->
                    <bean id="someService" class="com.abc.service.SomeServiceImpl"/>
     </beans>
  • spring的根元素是benas顯然是註冊Bean,子標簽是Bean
  • 註冊:<bean id="someService" class="com.abc.service.SomeServiceImpl"/>
  • id屬性為了唯一確定一個對象,class屬性裡邊應寫類全名
  1. 註冊完畢後我們要在測試類中獲取spring容器,而獲取Spring容器有兩種方式。
    package com.abc.service;
    import org.junit.Test;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    import org.springframework.context.support.FileSystemXmlApplicationContext;

    public class SomeServiceImplTTest {
         // spring容器獲取的兩種方式
         @Test
         public void test01(){
             //在類路徑下載入Spring配置文件
             ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
             //在當前目錄的根下載入該配置文件,路徑應為文件實際存放的目錄
                ApplicationContext ac2 = new FileSystemXmlApplicationContext
                       ("D:\\IDEA-workspace\\01-first(Spring)\\src\\main\\resources\\applicationContext.xml");
                System.out.println(ac2);
          }    
        @Test
        public void test02() {
             // 載入Spring配置文件,創建Spring容器對象
             ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
             //調用spring容器的getBean方法獲取carImpl,方法參數為bean的id
             SomeService service = (SomeService) ac.getBean("SomeService");
             service.doSome();
            }
        }

Spring入門程式到此就結束了


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

-Advertisement-
Play Games
更多相關文章
  • 前言 爬蟲要爬取的信息主要來自於網頁載入的內容,有必要瞭解一些網頁的知識。 當我們在瀏覽器網址欄輸入一個網址——URL,經過TCP/IP協議簇的處理,這個網址請求的信息就被髮送到URL對應的伺服器,接著伺服器處理這個請求,並將請求的內容返回給瀏覽器,瀏覽器便顯示或者下載URL請求相應的資源。這是前一 ...
  • bat處理文件 (一)定義 bat處理文件就是可以一次性執行多個命令的文件。 (二)編寫步驟 只需要打開一個文本文件,將所要執行的命令寫入其中,然後將文件的尾碼改為.bat即可 (三)bat處理文件的常用命令 pause 讓當前控制台停留 echo 向控制台輸出指定內容 echo off 隱藏ech ...
  • Java開發學習心得(一):SSM環境搭建 有一點.NET的開發基礎,在學校學過基礎語法,對JAVA有點興趣,就簡單學習了一下,記錄一下從哪些方面入手的,暫時不打算深入到原理方面,先簡單搭下環境看看,所以有些地方可能講得不慎準確。 1 SSM框架 從網上的討論來看,SSM框架似乎正在慢慢被Sprin ...
  • 1. 帶著問題去閱讀 為什麼說ConcurrentHashMap是線程安全的?或者說 ConcurrentHashMap是如何防止併發的? 2. 欄位和常量 首先,來看一下ConcurrentHashMap中的一些欄位和常量,這些在接下來的操作中會用得到 2.1. 常量 從中,我們可以獲得以下信息: ...
  • a) 一個整型數(An integer) b) 一個指向整型數的指針(A pointer to an integer) c) 一個指向指針的的指針,它指向的指針是指向一個整型數(A pointer to a pointer to an integer) d) 一個有10個整型數的數組(An arra ...
  • 整理了下阿裡近幾年的java面試題目,大家參考下吧,希望對大家有幫助,可以幫大家查漏補缺。 答對以下這些面試題,可以淘汰掉 80 % 的求職競爭者。 1.hashcode相等兩個類一定相等嗎?equals呢?相反呢? 2.介紹一下集合框架? 3.hashmap hastable 底層實現什麼區別?h ...
  • 1.安裝第三方庫(matplotlib,jieba,wordcloud,numpy) 1.1安裝方法:pip命令線上安裝(python3.x預設安裝了pip,pip下載地址:https://pypi.python.org/pypi/pip#downloads) 已經配置好環境變數前提下,在cmd視窗 ...
  • 一、subprocess 註:如果是Windows,那麼res.stdout.read()讀出的是GBK編碼的信息,在接收端需要用GBK解碼且只能從管道里讀一次結果,PIPE稱為管道。 二、粘包現象 1. TCP會粘包,UDP永遠不會粘包 發送端可以是一K一K地發送數據,而接收端的應用程式可以兩K兩 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...