惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
J
Java Code Geeks
月光博客
月光博客
博客园_首页
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
B
Blog RSS Feed
博客园 - 聂微东
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
量子位
Martin Fowler
Martin Fowler
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How Dependency Injection Gave Me the Red Pill Moment
Timevolt · 2026-06-21 · via DEV Community

Timevolt

The Quest Begins (The "Why")

I still remember the first time I opened a legacy service and felt like I’d stepped into a maze with no map. The code was a tangled web of concrete classes reaching straight into each other, constructors hard‑coding dependencies, and every tiny change felt like defusing a bomb. I spent an afternoon trying to swap out a logging implementation for a test double, only to watch the whole thing explode because the logger was instantiated deep inside a helper class that I couldn’t touch without rewriting half the file.

That frustration was the dragon I wanted to slay. I kept asking myself: Why does changing one thing feel like rewiring the entire building? The answer hit me when I realized the problem wasn’t the language or the framework—it was the way I was wiring objects together. I was letting classes reach out and grab their collaborators instead of handing them what they needed. The result? Code that was brittle, hard to test, and terrifying to evolve.

The Revelation (The Insight)

The treasure I found was Dependency Injection (DI)—the simple idea that a class should receive its dependencies from the outside, rather than creating them itself. At first it sounded like just another buzzword, but once I started applying it, the shift was immediate.

DI does three things that changed my daily workflow:

  1. It makes intentions explicit. When you see a constructor that takes an ILogger and a IPaymentGateway, you instantly know what the class needs to do its job. No hidden surprises lurking in private fields.
  2. It isolates concerns. The class no longer knows how to build a logger or where to fetch a gateway configuration. It only knows what it needs to do with them.
  3. It unlocks testability. Swapping a real dependency for a fake or mock becomes a matter of passing a different object in the constructor—no containers, no singletons, no monkey‑patching.

The moment I grasped this, it felt like taking the red pill: the world of hidden coupling fell away, and I could see the clean, replaceable pieces underneath.

Wielding the Power (Code & Examples)

Let’s look at a tiny but typical service that processes orders. First, the “before” version—what I used to write when I was still tangled in the maze.

// BEFORE: tight coupling, hard to test
public class OrderProcessor
{
    private readonly Logger _logger;
    private readonly PaymentGateway _gateway;

    public OrderProcessor()
    {
        // The class decides *which* logger and gateway to use.
        _logger = new Logger("logs/order.txt");
        _gateway = new PaymentGateway(
            apiKey: ConfigurationManager.AppSettings["PaymentKey"],
            endpoint: ConfigurationManager.AppSettings["PaymentUrl"]);
    }

    public void Process(Order order)
    {
        _logger.Info($"Processing order {order.Id}");
        var result = _gateway.Charge(order.Amount, order.Card);
        if (!result.Success)
        {
            _logger.Error($"Payment failed for order {order.Id}");
            throw new InvalidOperationException("Payment failed");
        }

        _logger.Info($"Order {order.Id} completed");
    }
}

What’s wrong here?

  • The constructor hides the fact that OrderProcessor needs a logger and a gateway.
  • Swapping the logger for a test double means rewriting the constructor or using some ugly wrapper.
  • If the gateway’s configuration changes, I have to touch this class even though it shouldn’t care about where the settings live.
  • Unit testing this method forces me to touch the file system or hit a real payment endpoint—slow, flaky, and risky.

Now, the “after” version, after I injected the dependencies.

// AFTER: dependencies are injected, intent is clear
public class OrderProcessor
{
    private readonly ILogger _logger;
    private readonly IPaymentGateway _gateway;

    // The class now asks for what it needs.
    public OrderProcessor(ILogger logger, IPaymentGateway gateway)
    {
        _logger = logger ?? throw new ArgumentNullException(nameof(logger));
        _gateway = gateway ?? throw new ArgumentNullException(nameof(gateway));
    }

    public void Process(Order order)
    {
        _logger.Info($"Processing order {order.Id}");
        var result = _gateway.Charge(order.Amount, order.Card);
        if (!result.Success)
        {
            _logger.Error($"Payment failed for order {order.Id}");
            throw new InvalidOperationException("Payment failed");
        }

        _logger.Info($"Order {order.Id} completed");
    }
}

Why this feels like a win:

  • The constructor’s signature is a contract: Give me an ILogger and an IPaymentGateway. No guessing.
  • In production I can wire up the real implementations via a simple container or manual composition root.
  • In tests I pass in a mock logger and a fake gateway that records whether Charge was called—zero I/O, instant feedback.
  • If I ever want to switch to a different logging framework or a sandbox payment provider, I only change the composition root, not the processor itself.

Common Traps to Avoid

  1. Injecting concrete classes instead of abstractions.

    If you pass Logger and PaymentGateway directly, you’ve just moved the coupling from the constructor to the type system. Always depend on interfaces or abstract base classes.

  2. Doing service location inside the constructor.

    Writing var logger = ServiceLocator.Get<ILogger>(); defeats the purpose. It hides the dependency again and makes the class hard to instantiate outside the container.

  3. Over‑injecting:

    Only pass what the class truly needs. If a method only uses a logger, you don’t need to inject the gateway there. Keep interfaces focused.

Why This New Power Matters

Admitting DI into my workflow felt like upgrading from a flickering candle to a steady lantern. Suddenly I could:

  • Refactor fearlessly. Changing a logging implementation no longer required a regression suite that spanned the whole service.
  • Onboard new teammates faster. They could read a constructor and instantly understand the class’s collaborators without digging through private fields.
  • Write tests that actually test logic, not the surrounding infrastructure. My test suite went from flaky, minutes‑long runs to a sub‑second green bar that gave me confidence on every commit.
  • Embrace other patterns naturally—strategy, decorator, observer—because they all rely on the same principle: give objects what they need instead of letting them reach out.

The ripple effect was huge. My team’s velocity went up, bug rates dropped, and the codebase started to feel like a set of Lego bricks: snap them together in new ways, and you get a fresh feature without tearing down the whole structure.

Your Turn

Here’s a little challenge: pick a class in your current project that constructs its dependencies inside its constructor. Refactor it to take those dependencies as parameters (interfaces preferred). Write a test that swaps in a fake implementation and asserts that the class behaves correctly. Notice how the test becomes simpler and faster—and how the class becomes easier to reason about.

Give it a try, and when you see those green lights flashing, you’ll know you’ve just taken your own red pill moment. Happy coding!