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

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

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
Porting a Config Validator to Java for Minimal Environments
MournfulCord · 2026-05-03 · via DEV Community

MournfulCord

My previous Python config validator was great for local development, but it hit a wall in minimal "distroless" containers and hardened environments where Python isn't much of an option.

Sometimes you can't control the environment; you can only control the tool. To ensure our validation logic could run anywhere from a CI runner to a bare-bones production box, I rewrote the tool in Java. This version focuses on portability, zero external dependencies, and "fail-fast" logic.

Why a Java version?

A few reasons kept coming up:

  • Zero external dependencies: no pip, no venv, no system packages

  • Easy to bundle: one JAR or native image

  • Runs anywhere: CI, containers, internal tooling

Teams already familiar with JVM tooling

The logic is the same as the Python version:
load config, check structure, fail fast.

The difference is the runtime assumptions.

The CLI structure

The tool is intentionally small:

ConfigLoader: loads YAML/JSON.

Validator: checks required keys and types

HostValidator: regex validation for hostnames

DatabaseValidator: nested key checks

Main: CLI entrypoint

Nothing fancy. No frameworks, just enough structure to keep it readable.

Loading YAML or JSON in Java

I kept the loader simple. I'm using Jackson (jackson-databind and jackson-dataformat-yaml) to handle the parsing logic:

ObjectMapper yamlMapper = new ObjectMapper(new YAMLFactory());
ObjectMapper jsonMapper = new ObjectMapper();

public Map<String, Object> loadConfig(Path path) throws IOException {
    if (!Files.exists(path)) {
        throw new FileNotFoundException("Config file not found: " + path);
    }

    String text = Files.readString(path);

    if (path.toString().endsWith(".yaml") || path.toString().endsWith(".yml")) {
        return yamlMapper.readValue(text, Map.class);
    } else if (path.toString().endsWith(".json")) {
        return jsonMapper.readValue(text, Map.class);
    }

    throw new IllegalArgumentException("Unsupported file type: " + path);
}

Enter fullscreen mode Exit fullscreen mode

Same behavior as the Python version, just typed differently.

Required keys and type checking

Java doesn’t have Python’s dynamic feel, so I defined expected types like this instead:

Map<String, Class<?>> REQUIRED_KEYS = Map.of(
    "service_name", String.class,
    "port", Integer.class,
    "debug", Boolean.class,
    "allowed_hosts", List.class
);

Enter fullscreen mode Exit fullscreen mode

And the validator walks through them:

List<String> validate(Map<String, Object> cfg) {
    List<String> errors = new ArrayList<>();

    for (var entry : REQUIRED_KEYS.entrySet()) {
        String key = entry.getKey();
        Class<?> expected = entry.getValue();

        if (!cfg.containsKey(key)) {
            errors.add("Missing required key: '" + key + "'");
            continue;
        }

        Object value = cfg.get(key);
        if (!expected.isInstance(value)) {
            errors.add("Invalid type for '" + key + "': expected "
                + expected.getSimpleName() + ", got "
                + value.getClass().getSimpleName());
        }
    }

    return errors;
}

Enter fullscreen mode Exit fullscreen mode

Hostname validation

Same regex, same idea:

Pattern HOST_REGEX = Pattern.compile("^[a-zA-Z0-9.-]+$");

void validateHosts(Map<String, Object> cfg, List<String> errors) {
    Object hosts = cfg.get("allowed_hosts");
    if (!(hosts instanceof List<?> list)) return;

    for (Object h : list) {
        if (!(h instanceof String s) || !HOST_REGEX.matcher(s).matches()) {
            errors.add("Invalid host value: '" + h + "'");
        }
    }
}

Enter fullscreen mode Exit fullscreen mode

Nested database validation

void validateDatabase(Map<String, Object> cfg, List<String> errors) {
    Object dbObj = cfg.get("database");
    if (dbObj == null) return;

    if (!(dbObj instanceof Map<?, ?> db)) {
        errors.add("Invalid type for 'database': expected Map");
        return;
    }

    if (!db.containsKey("host")) {
        errors.add("Missing 'database.host'");
    }

    if (!db.containsKey("port")) {
        errors.add("Missing 'database.port'");
    } else if (!(db.get("port") instanceof Integer)) {
        errors.add("Invalid type for 'database.port'");
    }
}

Enter fullscreen mode Exit fullscreen mode

Same checks, different language.

Running it

The CLI is uncomplicated:

java -jar validator.jar config.yaml

Enter fullscreen mode Exit fullscreen mode

If something’s wrong, it prints errors and exits with a non‑zero code.
If everything’s fine, it keeps quiet.

That’s all there is to it.

Why this matters

A validator doesn’t need to be complex to be useful.
It simply needs to run reliably in the environments you care about.

Python works great until you’re on a host that doesn’t have Python.
Java works great until you’re on a host that doesn’t have Java available.
But the language isn’t the point; The point is catching failures before they turn into outages. This Java CLI is just another way to do that.

What’s your 'go-to' language when you need a tool to run absolutely anywhere? Do you stick with the JVM, or have you moved toward Go/Rust for these types of CLI tools? I'd love to hear about the constraints you're working with.