Fw: [請益] Spring boot的依賴注入降低耦合的例子
※ [本文轉錄自 Soft_Job 看板 #1YHQT2E2 ]
作者: ntpuisbest (阿龍) 看板: Soft_Job
標題: [請益] Spring boot的依賴注入降低耦合的例子
時間: Thu Mar 31 21:06:08 2022
文章有點長
先說說我對依賴注入的理解
Spring boot
依賴注入大致有三種方式
透過建構子的 透過setter的 或是 field
這三種都可以透過@Autowired註解來達到依賴注入的效果
我自己想到的建構子的舉例是
假設有兩個類 Address 和 Employee好了
1.
public class Address {
String Country;
String City;
String Street;
public Address(String country, String city, String street) {
Country = country;
City = city;
Street = street;
}
}
2.
public class Employee {
String sex;
String name;
Address address;
// 沒有依賴注入的方式
public Employee(String Country,String City,String Street,String
sex, String name ) {
this.sex=sex;
this.address = new Address( Country, City,Street );
this.name=name;
}
// 有依賴注入的方式
public Employee(String sex, String name, Address address) {
this.sex = sex;
this.name = name;
this.address = address;
}
}
在上面的例子當中可以發現,如果哪一天
Address這個類新增了一個屬性叫 phoneNumber好了
沒有依賴注入的方式,必須要更改 Employee 的
this.address =new Address(Country,City,Street,phoneNumber)
而有依賴注入的方式確實降低了耦合
因為他不用更改Employee的建構方式
所以我理解依賴注入可以降低耦合
所以我理解依賴注入可以降低耦合
所以我理解依賴注入可以降低耦合
但我的問題是Spring boot 的 autowird annotation 有幫助我們降低耦合嗎
在常見的開發中 我們經常都會有 Dao 以及 Service
假設我有兩個 Dao 好了 分別是 Dao1 和 Dao2
以及一個Service
Dao1
public class Dao {
public void sayhi() {
System.out.println("hello");
}
}
Dao1
public class Dao {
public void sayhi() {
System.out.println("hello");
}
}
Dao2
public class Dao2 {
public void saygoodbye() {
System.out.println("say goodbye");
}
}
如果我不在service上面使用autowired
我的service會是
public class Service {
Dao1 dao=new Dao1();
Dao2 dao2=new Dao2();
public void sayhi() {
dao.sayhi();
}
public void saygoodbye() {
dao2.saygoodbye();
}
}
如果我使用了@Autowired註解
那我只是將
Dao1 dao=new Dao1();
Dao2 dao2=new Dao2();
替換成
@Autowired
Dao1 dao
@Autowired
Dao2 dao2
我想請問所以我使用了Autowired註解
我知道我可以不需要使用new 來建構實體
但 Spring 真的有幫我降低耦合嗎
即使我換成 setter 配合 autowired的方式好了
那個 setter也是要我自己去撰寫
Spring 幫我降低了耦合甚麼?
我的問題簡單來說就是
我知道依賴注入可以降低耦合
但Spring boot透過 @Autowired註解幫我降低耦合在哪
謝謝
p.s 因為面試的時候常常被面試官問說懂不懂甚麼是
控制反轉還有DI,我基本上舉例都舉 Address還有 Employee的例子
但當我反問下面例子的時候,他們好像也說要再回去想一下...
只有其中一個就說更複雜的例子會用到,但也沒說甚麼是更複雜的例子QQ
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 118.167.157.11 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/Soft_Job/M.1648731970.A.382.html
※ 編輯: ntpuisbest (49.216.186.239 臺灣), 03/31/2022 21:14:38
推
03/31 21:27,
2年前
, 1F
03/31 21:27, 1F
推
03/31 21:29,
2年前
, 2F
03/31 21:29, 2F
→
03/31 21:29,
2年前
, 3F
03/31 21:29, 3F
→
03/31 21:29,
2年前
, 4F
03/31 21:29, 4F
→
03/31 21:29,
2年前
, 5F
03/31 21:29, 5F
→
03/31 21:29,
2年前
, 6F
03/31 21:29, 6F
→
03/31 21:29,
2年前
, 7F
03/31 21:29, 7F
→
03/31 21:29,
2年前
, 8F
03/31 21:29, 8F
→
03/31 21:29,
2年前
, 9F
03/31 21:29, 9F
→
03/31 21:29,
2年前
, 10F
03/31 21:29, 10F
推
03/31 21:33,
2年前
, 11F
03/31 21:33, 11F
推
03/31 21:35,
2年前
, 12F
03/31 21:35, 12F
→
03/31 21:39,
2年前
, 13F
03/31 21:39, 13F
→
03/31 21:42,
2年前
, 14F
03/31 21:42, 14F
推
03/31 21:43,
2年前
, 15F
03/31 21:43, 15F
→
03/31 21:44,
2年前
, 16F
03/31 21:44, 16F
→
03/31 22:00,
2年前
, 17F
03/31 22:00, 17F
→
03/31 22:01,
2年前
, 18F
03/31 22:01, 18F
→
03/31 22:03,
2年前
, 19F
03/31 22:03, 19F
→
03/31 22:03,
2年前
, 20F
03/31 22:03, 20F
推
03/31 22:04,
2年前
, 21F
03/31 22:04, 21F
→
03/31 22:05,
2年前
, 22F
03/31 22:05, 22F
→
03/31 22:07,
2年前
, 23F
03/31 22:07, 23F
→
03/31 22:07,
2年前
, 24F
03/31 22:07, 24F
→
03/31 22:08,
2年前
, 25F
03/31 22:08, 25F
→
03/31 22:08,
2年前
, 26F
03/31 22:08, 26F
→
03/31 22:10,
2年前
, 27F
03/31 22:10, 27F
→
03/31 22:10,
2年前
, 28F
03/31 22:10, 28F
※ 發信站: 批踢踢實業坊(ptt.cc)
※ 轉錄者: ntpuisbest (118.167.157.11 臺灣), 03/31/2022 22:12:12
→
04/01 10:17,
2年前
, 29F
04/01 10:17, 29F
→
04/01 10:18,
2年前
, 30F
04/01 10:18, 30F
→
04/01 10:19,
2年前
, 31F
04/01 10:19, 31F
→
04/01 10:20,
2年前
, 32F
04/01 10:20, 32F
→
04/01 10:21,
2年前
, 33F
04/01 10:21, 33F
→
04/01 10:22,
2年前
, 34F
04/01 10:22, 34F
→
04/01 10:23,
2年前
, 35F
04/01 10:23, 35F
→
04/02 17:41,
2年前
, 36F
04/02 17:41, 36F
java 近期熱門文章
PTT數位生活區 即時熱門文章