国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Spring Boot快速入門(三):依賴注入

hellowoody / 3113人閱讀

摘要:使用依賴注入的方式很簡單,只需要給添加相應的注解即可用于標注業務層組件用于標注控制層組件用于標注數據訪問組件,即組件泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注。

spring boot使用依賴注入的方式很簡單,只需要給添加相應的注解即可

@Service用于標注業務層組件

@Controller用于標注控制層組件

@Repository用于標注數據訪問組件,即DAO組件

@Component泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注。

然后在使用的地方使用@Autowired即可

創建MyComponent,使用@Component
import org.springframework.stereotype.Component;

@Component//泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注。
public class MyComponent
{
    public void hi(String name)
    {
        System.out.println("hi " + name + ",I am MyComponent");
    }
}
創建MyController,使用@Controller
import org.springframework.stereotype.Controller;

@Controller//用于標注控制層組件
public class MyController
{
    public void hi(String name)
    {
        System.out.println("hi " + name + ",I am MyController");
    }
}
創建MyRepository,使用@Repository
@Repository//用于標注數據訪問組件,即DAO組件
public class MyRepository
{
    public void hi(String name)
    {
        System.out.println("hi " + name + ",I am MyRepository");
    }
}
創建MyService,MyServiceImpl,使用@Service
public interface MyService
{
    void doSomeThing();
}
import org.springframework.stereotype.Service;

@Service//用于標注業務層組件
public class MyServiceImpl implements MyService
{

    @Override
    public void doSomeThing()
    {
        System.out.println("i am MyServiceImpl");
    }
}
單元測試

在src/test/java/你的包名/你的項目名ApplicationTests編寫對應的單元測試來驗證是否可以成功注入

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class DiApplicationTests
{
    @Autowired//自動注入
    private MyController myController;
    @Autowired//自動注入
    private MyRepository myRepository;
    @Autowired//自動注入
    private MyComponent myComponent;
    @Autowired//自動注入實現了該接口的bean
    private MyService myService;

    @Test
    public void contextLoads()
    {
        myController.hi("lierabbit");
        myRepository.hi("lierabbit");
        myComponent.hi("lierabbit");
        myService.doSomeThing();
    }

}

運行測試用例

顯示紅圈的4句話證明成功注入

源碼地址:https://github.com/LieRabbit/...
原文地址:https://lierabbit.cn/2018/01/...

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/68266.html

相關文章

  • 后端API從入門到放棄指北

    摘要:菜鳥教程框架中文手冊入門目標使用搭建通過對數據增刪查改沒了純粹占行用的拜 后端API入門學習指北 了解一下一下概念. RESTful API標準] 所有的API都遵循[RESTful API標準]. 建議大家都簡單了解一下HTTP協議和RESTful API相關資料. 阮一峰:理解RESTful架構 阮一峰:RESTful API 設計指南 RESTful API指南 依賴注入 D...

    Jeffrrey 評論0 收藏0
  • 后端API從入門到放棄指北

    摘要:菜鳥教程框架中文手冊入門目標使用搭建通過對數據增刪查改沒了純粹占行用的拜 后端API入門學習指北 了解一下一下概念. RESTful API標準] 所有的API都遵循[RESTful API標準]. 建議大家都簡單了解一下HTTP協議和RESTful API相關資料. 阮一峰:理解RESTful架構 阮一峰:RESTful API 設計指南 RESTful API指南 依賴注入 D...

    sf190404 評論0 收藏0
  • 后端API從入門到放棄指北

    摘要:菜鳥教程框架中文手冊入門目標使用搭建通過對數據增刪查改沒了純粹占行用的拜 后端API入門學習指北 了解一下一下概念. RESTful API標準] 所有的API都遵循[RESTful API標準]. 建議大家都簡單了解一下HTTP協議和RESTful API相關資料. 阮一峰:理解RESTful架構 阮一峰:RESTful API 設計指南 RESTful API指南 依賴注入 D...

    Airmusic 評論0 收藏0
  • Spring Boot 入門(一)

    摘要:簡介簡化應用開發的一個框架整個技術棧的一個大整合開發的一站式解決方案微服務,微服務架構風格服務微化一個應用應該是一組小型服務可以通過的方式進行互通單體應用微服務每一個功能元素最終都是一個可獨立替換和獨立升級的軟件單元環境準備推薦及以上以上版 1、Spring Boot 簡介簡化Spring應用開發的一個框架; 整個Spring技術棧的一個大整合; J2EE開發的一站式解決方案; 2、微...

    zhaochunqi 評論0 收藏0
  • Spring Cloud 參考文檔(Spring Cloud Config快速入門

    摘要:快速入門這個快速入門使用的服務器和客戶端。屬性在端點中顯示為高優先級屬性源,如以下示例所示。名為的屬性源包含值為且具有最高優先級的屬性。屬性源名稱中的是存儲庫,而不是配置服務器。 Spring Cloud Config快速入門 這個快速入門使用Spring Cloud Config Server的服務器和客戶端。 首先,啟動服務器,如下所示: $ cd spring-cloud-con...

    gekylin 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<