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

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
B
Blog
F
Fortinet All Blogs
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
A
About on SuperTechFans
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
B
Blog RSS Feed

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
I scanned 50 open-source Spring Boot projects. More than ...
Julian Paul · 2026-05-09 · via DEV Community

Last weekend I built a small CLI tool to compare Spring Boot config files across profiles.
Then I ran it against a handful of well-known open-source Spring Boot projects on GitHub.

The results were uncomfortable.

Not because the code was bad. The code was fine. But in project after project, application-prod.yml
quietly diverged from what the developers intended — and none of it would have shown up in a code review
or failed a single test.

Here's what I found, and why it matters.


What is config drift?

Spring Boot lets you define configuration per environment using profile files:

application.yml           ← defaults
application-dev.yml       ← overrides for development
application-staging.yml   ← overrides for staging
application-prod.yml      ← overrides for production

Enter fullscreen mode Exit fullscreen mode

Config drift happens when a value in one profile diverges from the others in a way that wasn't intentional.
It usually starts small: someone adds a setting to dev.yml for debugging, forgets about it,
and three weeks later it's in prod.yml because someone copy-pasted the file as a starting point.

The tricky part: drift is silent. Your app starts, your tests pass, your CI is green.
The misconfiguration just sits there, waiting.


The three patterns I see everywhere

1. The Actuator leak

This is the most common one, and arguably the most dangerous.

# application-dev.yml
management:
  endpoints:
    web:
      exposure:
        include: "*"

Enter fullscreen mode Exit fullscreen mode

Completely reasonable in dev — you want all Actuator endpoints available for debugging.
The problem is when this value drifts into staging, and then into prod.

# application-prod.yml (drifted)
management:
  endpoints:
    web:
      exposure:
        include: "*"   # ← exposes /actuator/env, /actuator/heapdump, ...

Enter fullscreen mode Exit fullscreen mode

Your /actuator/env endpoint now returns all environment variables — including secrets.
Your /actuator/heapdump lets anyone download a full JVM heap dump.

Spring Boot's default is health,info. The moment you override it in dev and forget to restrict it in prod,
you've created an information disclosure vulnerability with zero error messages and zero test failures.

2. The database schema destroyer

# application-dev.yml
spring:
  jpa:
    hibernate:
      ddl-auto: update

Enter fullscreen mode Exit fullscreen mode

update is convenient in development: Hibernate automatically adjusts your schema to match your entities.
It's also one of the most dangerous settings you can have in production.

The safe production value is validate or none. But if update drifts from dev to prod and your
entity model changes — Hibernate will silently modify your production schema. No migration script,
no review, no warning.

I've seen this kill a production database.

3. The missing feature flag

# application-dev.yml
feature:
  new-payment-flow:
    enabled: true

# application-staging.yml
feature:
  new-payment-flow:
    enabled: true

# application-prod.yml
# ← key doesn't exist

Enter fullscreen mode Exit fullscreen mode

When a key exists in dev and staging but not in prod, Spring Boot falls back to null
(or throws a NullPointerException at runtime, if you're lucky enough to have one).

This pattern is especially common with feature flags — they get added during development,
tested on staging, and then forgotten when writing the prod config.


Why this is so hard to catch

Code review won't find it. You're not comparing files side by side in a PR.
You're looking at the diff of what changed, not at the relationship between files.

Your tests won't find it. Unit tests run against a single profile. Integration tests typically
run against a test profile. Nobody is running tests that compare what dev.yml says vs. what prod.yml says.

Your CI won't find it. Your pipeline validates that the app starts and the tests pass.
It doesn't validate that prod.yml is consistent with your intentions.

The only way this surfaces is in production. Usually at the worst possible moment.


Building a tool to catch it

I got tired of manually diffing YAML files before deployments. So I built spring-drift:
a CLI that scans your config directory, compares all profiles, and flags drift — specifically
the dangerous kind.

$ spring-drift scan ./src/main/resources
✓ Found 4 profiles: default, dev, staging, prod
✗ 7 drift issues found

[DANGEROUS_DEFAULT] management.endpoints.web.exposure.include
  default:  health,info
  dev:      *
  staging:  *
  prod:     *           ← matches dev — likely accidental

[DANGEROUS_DEFAULT] spring.jpa.hibernate.ddl-auto
  default:  validate
  dev:      update
  prod:     update      ← destructive in production

[MISSING_KEY] feature.new-payment-flow.enabled
  dev:      true
  staging:  true
  prod:     <missing>   ← will fall back to null

Report written to drift-report.md

Enter fullscreen mode Exit fullscreen mode

It runs in 26ms on Linux, outputs a Markdown report you can paste directly into a PR,
and knows about the most common dangerous Spring Boot defaults out of the box.

It's built with Java 21 + Picocli + GraalVM Native Image — single binary, no JRE required.


How to add it to your workflow

The simplest integration is a pre-deployment check:

# Before deploying to staging or prod:
spring-drift scan ./src/main/resources

Enter fullscreen mode Exit fullscreen mode

If you want to fail the build on drift, use the exit code:

spring-drift scan ./src/main/resources || exit 1

Enter fullscreen mode Exit fullscreen mode

Or add it to your GitHub Actions pipeline:

- name: Check config drift
  run: |
    curl -L https://github.com/jolle93/spring-boot-config-drift-detector/releases/latest/download/spring-drift-linux-x64 -o spring-drift
    chmod +x spring-drift
    ./spring-drift scan ./src/main/resources

Enter fullscreen mode Exit fullscreen mode


What I learned from scanning 50 open-source projects

I ran spring-drift against 50 well-known Spring Boot projects on GitHub —
from the official Spring PetClinic to large-scale projects like mall, jhipster-generated apps,
and Apache projects like ShenYu and DolphinScheduler.

26 out of 50 projects had at least one drift issue. That's 53%.

Across 497 individual modules scanned, the tool found:

  • 2,470 total drift issues
  • 167 dangerous defaults — values that are actively unsafe in production
  • 2,172 missing keys — configuration that exists in one profile but not another
  • 131 value drifts — same key, different values across profiles

The most common dangerous default by far was management.endpoints.web.exposure.include,
flagged in 78 modules across multiple projects. Including, notably, the official
Spring PetClinic — Spring's own reference application ships with include: * as a default,
meaning Actuator is fully exposed unless you explicitly override it in your production profile.

The second most common dangerous default: spring.datasource.password — found either
empty or using a dev-only placeholder in production-facing profiles. 83 occurrences.

The pattern that surprised me most was how consistent this was across project sizes.
Small tutorial repos, large enterprise projects, Apache top-level projects — the same
issues appeared everywhere. Config files accumulate decisions. Unlike code, they rarely
get refactored.


Wrapping up

Config drift is one of those problems that feels minor until it isn't.
The three patterns above — Actuator exposure, ddl-auto, missing feature flags —
have caused real outages in real systems. None of them are exotic edge cases.

If you want to try spring-drift on your own project:
👉 julianpaul.dev/spring-drift

The tool is source-available on GitHub
and takes about 30 seconds to run against an existing Spring Boot project.

I'd love to know what you find — especially if you hit a dangerous default I haven't added yet.
Drop it in the issues as a Severity Rule Request.


Built with Java 21, Picocli, SnakeYAML, and GraalVM Native Image.
Available for Linux (x64) and macOS (arm64).