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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
I
InfoQ
宝玉的分享
宝玉的分享
G
Google Developers Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
B
Blog RSS Feed
博客园 - 聂微东
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Cloudflare Blog
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏

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
Introducing the ArchUnit Checker for the Clprolf Framework
Charles Koffler · 2026-06-01 · via DEV Community

Charles Koffler

One of the most interesting aspects of architectural frameworks is not the rules themselves, but the ability to verify that those rules are actually being followed.

The Clprolf Framework now includes an ArchUnit-based checker for Java projects. Rather than relying solely on documentation, Clprolf's structural principles can be validated automatically during development.

What is Clprolf?

Clprolf is a lightweight object-oriented framework built around a simple idea:

A class should clearly express its primary role.

To make this explicit, Clprolf distinguishes between business-oriented classes and technical classes.

Classes
--------
Agent
Worker
Draft

Interfaces
----------
Family
Trait
Free

The framework is based on two fundamental principles:

  1. Separate business concerns from technical concerns.
  2. Preserve the conceptual domain through inheritance.

Bringing Architecture into the Build Process

Architectural guidelines are often written down, discussed, and eventually forgotten.

The ArchUnit checker takes a different approach: architectural rules become executable tests.

As a result, violations can be detected automatically from IntelliJ IDEA, Maven, or any CI/CD pipeline supporting JUnit.

Core Rules

The ClprolfArchTest checker validates the framework's core rules.

A class cannot be both Agent and Worker

@ClAgent
@ClWorker
public class InvalidClass {
}

A class must have a single primary role.


Inheritance must preserve the role

A @ClWorker class cannot inherit from an @ClAgent class, and vice versa.

This reflects one of Clprolf's central principles:

inheritance should preserve the conceptual domain.


Family interfaces must match implementation roles

A class implementing a @ClFamily must have a role compatible with the target role of that interface.

For example, an @ClAgent family interface should normally be implemented by an @ClAgent class.


Trait interfaces may only extend other trait interfaces

A trait remains a trait throughout the hierarchy.

This keeps interface inheritance structurally coherent.


Clprolf interfaces must declare a target role

Every @ClFamily and @ClTrait must explicitly declare whether it belongs to the Agent world or the Worker world.

A @ClFamily must declare exactly one target role: @ClAgent or @ClWorker.
A @ClTrait must declare at least one target role: @ClAgent, @ClWorker, or exceptionally both.


Inheriting interfaces must have a role compatible with inherited traits

When a @ClFamily or @ClTrait inherits from a @Trait_interf, its target role must be compatible with the role of the inherited trait.
For example, an @ClAgent family interface may inherit from an @ClAgent trait, but not from a @ClWorker trait.
Traits annotated with both @ClAgent and @ClWorker are considered compatible with either role.
The rule may be overridden using @ClBypass.

Family interfaces must have compatible inherited family interfaces

When a @ClFamily inherits from another @Family_interf, both interfaces must have compatible target roles.
For example, an @ClAgent family interface may inherit from another @ClAgent family interface, but not from a @ClWorker family interface.
This rule preserves the conceptual domain across family interface hierarchies.
The rule may be overridden using @ClBypass.

Direct trait implementation must respect trait roles

Although direct implementation of a @ClTrait by a concrete class is tolerated in non-strict mode, the class must still have a role compatible with the trait.

For example:

@ClAgent
public class Order implements Payable {
}

is valid if Payable is an @ClAgent trait.

However:

@ClAgent
public class Order implements Persistable {
}

is invalid if Persistable is a @ClWorker trait.

Traits annotated with both @ClAgent and @ClWorker are compatible with either type of class.

The rule may be overridden using @ClBypass.


Optional Strict Validation

A second checker, ClprolfStrictArchTest, provides stricter validation rules.

These rules are optional and intended for teams that want complete Clprolf classification across their codebase.

Every class should declare a Clprolf role

Each class should explicitly be:

@ClAgent

or

@ClWorker

or

@ClDraft


Every interface should declare a Clprolf role

Each interface should explicitly be:

@ClFamily

or

@ClTrait

or

@ClFree


Classes should not directly implement trait interfaces

Traits are intended to be inherited through family interfaces rather than implemented directly by concrete classes.


Classes should implement only one primary family interface

Clprolf encourages a structure where a concrete class implements a single primary family interface.

This does not remove multiple interface inheritance. Instead, multiple inheritance is moved to the family interface itself.

For example:

@ClAgent
@ClFamily
public interface Horse
        extends Animal,
                Mammal,
                Payable {
}

The concrete implementation remains simple:

@ClAgent
public class HorseImpl implements Horse {
}

This preserves the expressive power of multiple interface inheritance while maintaining a coherent structure for concrete classes.

Why It Matters

Many frameworks provide architectural recommendations.

Clprolf goes one step further by making those recommendations automatically verifiable.

The result is a framework whose structural rules can be checked continuously throughout development, helping teams maintain consistency as projects evolve.

For developers interested in architecture, ArchUnit, or lightweight approaches to object-oriented design, the Clprolf checker provides an interesting example of how architectural principles can become executable rules.