Bài viết cho rằng trong các API web Go, DI động (fx, dig…) thường thừa thãi. Hầu hết API có đồ thị phụ thuộc tĩnh, chỉ cần khởi tạo một lần. Công cụ compile‑time như wire đáp ứng đủ, nhưng gây phức tạp. Giải pháp nhẹ hơn: generator dựa trên tag trường (injector) tạo mã Go thuần, không container, không reflection. Kết luận: DI tĩnh đủ, giữ wiring đơn giản. #Go #DependencyInjection #WebAPI #LậpTrình #CôngCụ #StaticDI #Injector

https://dev.to/mickamy/dependency-injection-in-go-how-much-is-enough-f

Tạm biệt `@Autowired` trên field – đã đến lúc chuyển sang Constructor Injection trong Spring Boot! 🔧 Viết code đúng chuẩn Java hơn: bất biến (immutable), dễ test, phát hiện lỗi sớm và tuân thủ nguyên tắc thiết kế. Dùng `@RequiredArgsConstructor` của Lombok để tiết kiệm công sức. Kiến trúc tốt bắt đầu từ những lựa chọn nhỏ.

#SpringBoot #Java #CleanCode #DependencyInjection #UnitTest #Lombok #Spring #KiếnTrúcPhầnMềm #LậpTrìnhJava #TốiƯuCode

https://dev.to/rajatarora/the-dependency-injection-d

Go Dependency Injection giờ đơn giản hóa với field tags nhờ `injector`. Không cần provider sets, wiring file hay runtime magic. Chỉ cần đánh dấu `inject:""` trên struct field, injector tự sinh code khởi tạo dependency theo đúng thứ tự. Dùng interface dễ, cấu hình gọn, đồ thị phụ thuộc được giải quyết tại compile-time. Ý tưởng: DI nên là công cụ vô hình, không phải trọng tâm code.

#Go #Golang #DependencyInjection #CleanCode #GoLang #DependencyInjection #CI #DevTools

https://dev.to/mickamy/dep

🎉 Dioxide v1.0.0 đã ra mắt! Framework tiêm phụ thuộc (dependency injection) cho Python, viết core bằng Rust, mang lại graph detection mạnh mẽ. Hỗ trợ FastAPI, Django, Flask, Celery, Click… với decorator, Protocol và profile cho test nhanh (Fake adapters). Giấc mơ “đối tượng trừu tượng → triển khai” giờ dễ dàng hơn bao giờ hết. #Python #DependencyInjection #Rust #FastAPI #Django #Flask #TiêmPhụThuộc #TiệnLợi #Mastodon

https://dev.to/mikelane/announcing-dioxide-v100-delightful-dependency-injecti

Let's assume we now have two approaches to #DependencyInjection in our #Swift community:

1. An #Entity where the extension on the container type defines registration. 🔄

2. A #Container that is responsible for the type registration process. 📦

#DevDiary #BuildInPublic #Swift

Implementing Cross-Platform In-App Billing in .NET MAUI Applications - .NET Blog

Learn how to implement in-app purchases in your .NET MAUI apps with our new cross-platform billing sample for Android, iOS, Mac Catalyst, and Windows.

.NET Blog

Ra mắt ioc-arise: DI container không dùng decorator, tự động đăng ký thành phần bằng cách phân tích AST. Khắc phục việc phải import @inject và viết boilerplate. Hỗ trợ đối tượng, factory, lớp (interface/abstract), quản lý vòng đời (singleton/transient) qua comment. Giúp code sạch, hiệu quả hơn.
#ioc_arise #DI #DependencyInjection #AST #Programming #Development #LậpTrình #PhátTriển

https://www.reddit.com/r/SideProject/comments/1pdthva/introducing_iocarise_a_zerodecorator_di_container/

Neue dependency-injection 7.4 kann Systeme brechen

Seit gestern mit Herauskommen der neuen dependency-injection 7.4.0 kommt es auf Systemen mit versionsübergreifenden Extensions zu Problemen. Hier meine Lösun...

Community Hub für TYPO3

🚀 Koin 4.2.0-alpha3 is out!

✅ Navigation 2.x scope support
🧹 Cleaner, better examples
🐛 Fix for Nav3 metadata args

🔗 https://github.com/InsertKoinIO/koin/releases/tag/4.2.0-alpha3

#Kotlin #AndroidDev #Compose #Koin #DependencyInjection #Android
#MobileDev

Release 4.2.0-alpha3 · InsertKoinIO/koin

What's Changed [Feat] navigation 2.x scope by @arnaudgiuliani in #2309 [Maintenance] Cleanup of examples by @GrzegorzBobryk in #2213 Fix nav3 metadata arguments by @arnaudgiuliani in #2313 Full C...

GitHub

Just published a new post on Dependency Injection in Swift.
I compare three approaches: initializer-based, property, and method injection, and show how they affect testability, modularity, and code clarity.

Do you use DI in your Swift/iOS projects?

📖 https://michalcichon.github.io/software-development/2025/11/25/dependency-injection-patterns-in-swift.html

#Swift #iOS #DependencyInjection #CleanCode

Dependency injection patterns in Swift | Michał Cichoń · iOS Software Engineer

When I first learned about it over a decade ago, I started using it everywhere possible. It’s a simple idea with a surprisingly big impact.

Michał Cichoń · iOS Software Engineer