cd /news/developer-tools/how-modern-teams-separate-business-l… · home topics developer-tools article
[ARTICLE · art-42343] src=dev.to ↗ pub= topic=developer-tools verified=true sentiment=· neutral

How Modern Teams Separate Business Logic from Application Code

A developer argues that open-source rules engines like Drools and Camunda solve the technical problem of separating business logic from application code but fail to address the organizational challenge of who owns and changes the rules. The post highlights how rule complexity leads to ownership dissolution, business user disengagement, and compounding rule debt. It suggests that tools like Nected, which allow business users to modify rules without developer involvement, better align technical and organizational needs.

read7 min views1 publishedJun 28, 2026

Every few years, a team runs into the same wall. Their discount logic, eligibility checks, and fraud thresholds have become load-bearing code. They can't change a rule without touching a deployment. A sprint ticket. A code review. Someone's weekend.

So they go looking for a rules engine.

They implement Drools. Or they write their own YAML-driven decision tree. Or they drop Camunda into the stack. And two years later, the discount logic is still owned by engineering — it's just written in a different syntax now.

This is the part nobody warns you about. Open-source rules engines solve the technical problem of separating logic from application code. They don't solve the organizational problem of who still has to touch it.

A business rules engine (BRE) is a system that evaluates conditions and returns decisions — separate from the application that calls it. Instead of if (user.tier === 'gold' && cart.total > 500) applyDiscount(0.15)

living inside your order service, that rule lives in an external system. The application asks: "Should this order get a discount?" The engine answers.

That's the whole idea. Separate the what from the how.

The appeal is obvious. Rules change constantly. Pricing strategies shift every quarter. Compliance thresholds get updated. Fraud patterns evolve weekly. If every change requires a developer, a code review, a deployment, and a rollback plan — you've made your business rules as hard to change as your database schema.

A rules engine is supposed to fix that. The question is whether it actually does.

The cost isn't usually visible until the rules get complex. One condition is fine. Five conditions are manageable. At thirty conditions, across four teams, with rule interactions nobody fully understands anymore, things get bad in a specific way.

First: ownership dissolves. Nobody knows which engineer originally wrote the eligibility logic for the premium tier. The person who did left eight months ago. The rules are correct — probably — but nobody will touch them without extensive testing because nobody is sure what they interact with.

Second: business users stop asking. They learn that changing a rule takes two weeks minimum. So they stop trying to optimize. They route around the rules instead of fixing them. You end up with pricing exceptions handled manually in spreadsheets because the rules system is too painful to update.

Third: rule debt compounds. Every time the logic is "too risky to refactor," a new condition gets appended to the end of an already-complex function. The function grows. The edge cases multiply. This is where the monsters live — the if

chains that span two hundred lines and haven't been fully read by any one person in years.

None of this is unique to small teams. I've seen it at companies with hundreds of engineers. Hardcoded business logic is a gravitational force. It resists change by accumulating complexity.

What actually breaks the pattern isn't just "use a rules engine" — it's ensuring that whoever understands the rules can also change them, without a ticket, without a deployment. When I started looking at what that could look like in practice, that's where I found tools like Nected — a visual rule builder where business users compose conditions and outcomes themselves, with full audit history on every decision and the engine running as an independent service. No DSL to learn. No developer required for a threshold change. It's the first time the organizational and technical pieces actually aligned.

The open-source ecosystem attacked this problem seriously. Drools (now part of Red Hat's KIE suite), Easy Rules, RuleBook, OpenL Tablets — these are real tools built by people who understood the problem.

What they got right: externalizing rules from application code. With Drools, your pricing logic lives in .drl

files, not in Java classes. You can version those files, audit them, and in theory update them without redeploying the application. The architecture is sound.

Where they stalled: the DSL.

Drools Rule Language is not something a product manager changes on a Tuesday afternoon. It has syntax, operators, and binding semantics that require context to use correctly. The result is a system where the rules are technically external to the application — but still owned by whoever can write DRL. Which is usually a developer.

You've changed the file format. You haven't changed the bottleneck.

Easy Rules and similar lightweight Java libraries take a different approach — simpler APIs, less ceremony. They're easier to integrate, and for straightforward rule trees they work well. The trade-off is that you're essentially writing rule definitions in code, which brings back the same ownership problem.

OpenL Tablets is interesting because it uses Excel as the rules interface — a deliberate attempt to let non-technical users own the logic. It's one of the few open-source options that honestly tried to solve the organizational piece. The operational overhead is real though: you're still running a server, managing Excel files in version control, and building tooling around a format that wasn't designed for it.

None of this is a knock on the tools. They're solving a hard problem. But it's worth being honest about what "open source rules engine" actually gets you versus what it promises. If you want a side-by-side of how these options stack up against commercial alternatives — including where each one actually breaks — Open Source Business Rules Engine goes through the comparison in detail.

When rule externalization succeeds, it usually has a few things in common.

The rule store is genuinely separate from the application code. Not in a /rules

folder inside the same repo — actually separate, with its own deployment lifecycle. The application queries the engine over an API. This is non-negotiable. If rules and application code share a deployment, the separation is cosmetic.

The rules are versioned with audit trails. You need to know what rule was active when a decision was made. "Why did this customer not get the discount on March 4th?" is a question you should be able to answer by querying history, not by guessing which commit was deployed at that timestamp.

Business users can write and test rules without developer involvement. This is the hard one. It requires an interface that hides implementation complexity without hiding logical complexity. That's not a spreadsheet. It's not a DSL. It's a purpose-built rule builder that shows conditions, outcomes, and precedence in a form that maps to how business users think about decisions.

When that third piece is missing, the engine becomes an operational artifact that developers maintain on behalf of the business. The business still can't move fast. The developer is still the gatekeeper. The rules are just harder to read than before.

Not every project needs one. If your rules are stable and owned by a small team, a well-structured strategy pattern in your application code may be cleaner than introducing an external system.

A rules engine earns its place when:

The rules change faster than your deployment cycle. If pricing logic changes weekly and deployments are bi-weekly, the mismatch itself is the problem. Externalizing the rules breaks that dependency.

Multiple teams need to change rule subsets independently. When the fraud team and the pricing team both need to modify conditions in the same logical space, centralized code ownership becomes a coordination problem. A rules engine lets you partition authority.

You need historical auditability of decisions. "What logic was applied to this application on this date?" is a compliance question, not a nice-to-have. If you can't answer it from your current setup, you have an audit risk.

The people who understand the rules are not the people who can change them. This is the clearest signal. If a product manager has to write a Jira ticket every time they need to adjust a threshold, you have an organizational misalignment that code alone won't fix.

The technical architecture of separating business logic from application code is well understood. Drools figured out the hard parts twenty years ago.

The organizational architecture — who can change rules, how fast, with what confidence — is where most implementations fail quietly.

The right tool for separating business logic from code is one that makes the business users independent. Not one that makes the code cleaner while the business still waits on a ticket queue.

If your rules engine still requires a developer to change a pricing threshold, you've bought a more sophisticated form of the same problem.

── more in #developer-tools 4 stories · sorted by recency
── more on @drools 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/how-modern-teams-sep…] indexed:0 read:7min 2026-06-28 ·