การฉีดการพึ่งพาในการใช้งานจริง
เรียนรู้การใช้ `@Autowired` และการฉีดผ่านคอนสตรักเตอร์เพื่อจัดการการพึ่งพาภายในแอปพลิเคชัน
การฉีดการพึ่งพาในการใช้งานจริง เป็นบทเรียน Spring Boot 4 Complete Guide ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Spring Boot 4 Complete Guide และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Spring Boot 4 Complete Guide มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
DI in Practice: Intro
Welcome to Dependency Injection in Practice! In Spring Boot, we don't manually create objects. Instead, Spring handles this for us, 'injecting' what an object needs.
This lesson focuses on the two primary ways to ask Spring to inject dependencies into your components: Field Injection and Constructor Injection.
What's a Dependency?
Think of dependencies as the 'ingredients' an object needs to do its job. For example, a CoffeeMaker might need a WaterHeater and a CoffeeBeanGrinder.
- Dependency: An object that another object relies on.
- Injection: Spring providing these required objects automatically.
This keeps your code cleaner and easier to test!
Field Injection with @Autowired
Field injection is the simplest way to tell Spring to inject a dependency. You place the @Autowired annotation directly above the field that needs the dependency.
Spring will then find a suitable bean (an object managed by Spring's IoC container) and assign it to that field.
Field Injection Example
Let's see field injection in action. Here, MyService needs an instance of MyComponent.
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
class MyComponent {
public String greet() {
return "Hello from Component!";
}
}
@Component
class MyService {
@Autowired
private MyComponent component;
public void performAction() {
System.out.println(component.greet());
}
}
public class Main {
public static void main(String[] args) {
// In a real Spring app, Spring manages this.
// For this example, we simulate it.
MyComponent comp = new MyComponent();
MyService service = new MyService();
// Simulate injection (Spring does this automatically)
service.component = comp;
service.performAction();
}
}Field Injection: The Downsides
While easy, field injection has some drawbacks:
- Testing: It's harder to unit test components without a Spring context because you can't easily pass mock dependencies.
- Immutability: Fields can't be declared
final, making objects mutable after creation. - Tight Coupling: It obscures the object's dependencies, making it less clear what it needs.
Most Spring developers prefer an alternative...
Constructor Injection: The Preferred Way
Constructor injection is generally considered the best practice for dependency injection. Here, dependencies are provided as arguments to the class's constructor.
This makes dependencies explicit and ensures that an object is fully initialized and valid upon creation.
Constructor Injection Example
Notice how MyService now requires MyComponent as a constructor argument. Spring automatically provides it!
import org.springframework.stereotype.Component;
@Component
class MyComponent {
public String greet() {
return "Hello from Component!";
}
}
@Component
class MyService {
private final MyComponent component;
// Spring automatically injects MyComponent here
public MyService(MyComponent component) {
this.component = component;
}
public void performAction() {
System.out.println(component.greet());
}
}
public class Main {
public static void main(String[] args) {
// In a real Spring app, Spring manages this.
// For this example, we simulate it.
MyComponent comp = new MyComponent();
MyService service = new MyService(comp); // Manual injection for demo
service.performAction();
}
}@Autowired on Constructor?
When a class has only one constructor, Spring 4.3+ automatically treats it as a constructor for dependency injection. You don't need to add @Autowired explicitly.
If there are multiple constructors, you would use @Autowired on the specific constructor you want Spring to use for injection.
Which Injection Type to Choose?
Here's a quick guide:
- Constructor Injection: Recommended for most cases. Promotes immutability, easier testing, and clear dependencies.
- Field Injection: Avoid if possible. Can be used for optional dependencies or in very specific legacy scenarios.
- Setter Injection: Useful for optional dependencies that might change during the object's lifecycle. Less common than constructor injection.
Test Your Knowledge!
Which statement best describes the primary benefit of Constructor Injection over Field Injection in Spring Boot?
Recap: DI in Practice
You've learned about practical dependency injection in Spring Boot!
- Field Injection uses
@Autowireddirectly on fields, but has drawbacks. - Constructor Injection is the preferred method, making dependencies explicit and promoting immutability.
- Spring automatically handles constructor injection for single constructors.
Using the right injection type leads to more robust and testable applications. Next, we'll look at externalizing application properties!
คำถามที่พบบ่อย
บทเรียน “การฉีดการพึ่งพาในการใช้งานจริง” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การฉีดการพึ่งพาในการใช้งานจริง” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Spring Boot 4 Complete Guide ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Spring Boot 4 Complete Guide มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การฉีดการพึ่งพาในการใช้งานจริง”
เรียนรู้การใช้ `@Autowired` และการฉีดผ่านคอนสตรักเตอร์เพื่อจัดการการพึ่งพาภายในแอปพลิเคชัน คุณปฏิบัติ Spring Boot 4 Complete Guide ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Spring Boot 4 Complete Guide หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Spring Boot 4 Complete Guide บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “การฉีดการพึ่งพาในการใช้งานจริง” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Spring Boot 4 Complete Guide นี้ได้ไหม
ได้ บทเรียน Spring Boot 4 Complete Guide ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- ทำความเข้าใจคอนเทนเนอร์ IoC ของ Spring
- การฉีดการพึ่งพาในการใช้งานจริง
- การแยกคุณสมบัติแอปพลิเคชันออกจากโค้ด
- ขอบเขตบีนและการจัดการวงจรชีวิต