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

推荐订阅源

Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Vercel News
Vercel News
Martin Fowler
Martin Fowler
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs

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
Understanding Hibernate ddl-auto in Spring Boot: When to ...
Ayush Shrivastava · 2026-06-01 · via DEV Community

Choosing the wrong spring.jpa.hibernate.ddl-auto setting can lead to unexpected schema changes or even data loss. In this guide, you'll learn what each ddl-auto value does (none, validate, update, create, and create-drop), when to use them, real-world examples, common mistakes, and production-ready best practices using Flyway and Liquibase.

Managing database schema changes is one of the most important responsibilities in any Spring Boot application. Whether you are building a small side project, a SaaS product, or a large enterprise system, understanding how Hibernate interacts with your database is critical.

One configuration property that every Java developer should know is:

spring.jpa.hibernate.ddl-auto

This property controls how Hibernate manages the database schema during application startup.

A wrong configuration can accidentally delete production data, while the correct configuration can improve developer productivity and deployment reliability.

In this guide, we will explore every available value, when to use it, when to avoid it, and real-world examples from production systems.


What is spring.jpa.hibernate.ddl-auto?

Hibernate is an ORM (Object Relational Mapping) framework that maps Java entities to database tables.

When the application starts, Hibernate compares your entity classes with the existing database schema.

The ddl-auto property tells Hibernate what action to perform based on that comparison.

Example:

spring.jpa.hibernate.ddl-auto=update

Depending on the value, Hibernate can:

• Create tables
• Update tables
• Validate tables
• Drop tables
• Ignore schema management completely


Available Values

  1. none

spring.jpa.hibernate.ddl-auto=none

Description:

Hibernate does not perform any schema management operations.

What Happens?

• No table creation
• No table updates
• No schema validation
• No schema modification

Best For:

• Production systems
• Enterprise applications
• Flyway migrations
• Liquibase migrations

Advantages:

• Safe
• Predictable
• No accidental schema changes

Disadvantages:

• Developers must manage schema manually

Real-World Example:

A banking application manages schema changes using Flyway migration scripts.

Hibernate should not modify the schema.

spring.jpa.hibernate.ddl-auto=none


2. validate

spring.jpa.hibernate.ddl-auto=validate

Description:

Hibernate validates that database tables match entity definitions.

What Happens?

• Checks table existence
• Checks column existence
• Checks data types
• Throws exception if mismatch exists

Best For:

• Production
• Staging
• CI/CD validation

Advantages:

• Detects schema issues early
• Prevents runtime failures

Disadvantages:

• Does not create or modify tables

Real-World Example:

Entity:

@entity
public class User {

@Id
private Long id;

private String name;

}

If the database does not contain the "name" column, the application startup will fail immediately.

This prevents deployment of incompatible code.


3. update

spring.jpa.hibernate.ddl-auto=update

Description:

Hibernate updates the schema based on entity changes.

What Happens?

• Creates missing tables
• Creates missing columns
• Updates schema where possible
• Keeps existing data

Best For:

• Local development
• Learning projects
• Internal tools

Advantages:

• Fast development
• Less manual database work

Disadvantages:

• Can create unexpected schema changes
• Not suitable for production
• Cannot handle complex migrations properly

Real-World Example:

Before:

@entity
public class User {

@Id
private Long id;

private String name;

}

After:

@entity
public class User {

@Id
private Long id;

private String name;

private String phoneNumber;

}

Hibernate automatically adds:

ALTER TABLE users
ADD phone_number VARCHAR(255);

without deleting existing data.


4. create

spring.jpa.hibernate.ddl-auto=create

Description:

Hibernate drops all existing tables and recreates them.

What Happens?

• Existing tables removed
• New tables created
• All data lost

Best For:

• Learning
• Demo projects
• Quick prototypes

Advantages:

• Fresh schema every startup
• Useful during rapid experimentation

Disadvantages:

• Deletes all existing data

Real-World Example:

While learning JPA relationships and entity mappings, developers often use:

spring.jpa.hibernate.ddl-auto=create

to rebuild the schema automatically.

WARNING:

Never use create in production.

A single application restart can wipe out all business data.


5. create-drop

spring.jpa.hibernate.ddl-auto=create-drop

Description:

Creates schema during startup and removes schema during shutdown.

What Happens?

• Tables created on startup
• Tables dropped on shutdown

Best For:

• Automated testing
• Integration tests
• Temporary environments

Advantages:

• Clean environment every run
• Perfect for testing

Disadvantages:

• Data does not persist

Real-World Example:

JUnit integration tests often use:

spring.jpa.hibernate.ddl-auto=create-drop

Every test starts with a fresh database.


Comparison Table

Value Creates Updates Validates Drops Data

none No No No No
validate No No Yes No
update Yes Yes No No
create Yes Yes No Yes
create-drop Yes Yes No Yes


Recommended Usage

Environment Recommended Value

Local Development update
Learning Projects create
Unit Testing create-drop
Integration Testing create-drop
QA/Staging validate
Production validate
Production + Flyway none
Production + Liquibase none


Real-World Production Strategy

Most modern applications use Flyway or Liquibase instead of allowing Hibernate to manage schemas automatically.

Recommended Configuration:

spring.jpa.hibernate.ddl-auto=validate

or

spring.jpa.hibernate.ddl-auto=none

Example:

spring.jpa.hibernate.ddl-auto=validate
spring.flyway.enabled=true

Migration Example:

-- V1__create_users.sql

CREATE TABLE users (
id BIGINT PRIMARY KEY,
name VARCHAR(255)
);

Benefits:

• Version controlled database changes
• Better team collaboration
• Easier rollbacks
• Predictable deployments
• Safer production releases


Common Mistakes Developers Make

Mistake #1

Using update in production.

Problem:

Unexpected schema modifications can occur.

Mistake #2

Using create in production.

Problem:

Complete data loss after restart.

Mistake #3

Not validating schema before deployment.

Problem:

Application starts but fails later due to schema mismatch.

Mistake #4

Relying on Hibernate for database migrations.

Problem:

Complex migrations become difficult to manage.


Best Practices

  1. Use update only during development.

  2. Use create-drop for testing.

  3. Use validate in staging and production.

  4. Use Flyway or Liquibase for schema migrations.

  5. Never use create in production.

  6. Keep schema changes version controlled.

  7. Review migration scripts before deployment.


Conclusion

The spring.jpa.hibernate.ddl-auto property plays a critical role in how Hibernate manages your database schema.

Choosing the correct value depends on your environment and deployment strategy.

Quick Summary:

• none → No schema management.
• validate → Only validates schema.
• update → Updates schema automatically.
• create → Recreates schema every startup.
• create-drop → Creates schema on startup and removes it on shutdown.

For most professional Spring Boot applications:

Development → update
Testing → create-drop
Production → validate or none

Combining Hibernate with Flyway or Liquibase provides the safest and most scalable approach for managing database changes in modern applications.