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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
A
About on SuperTechFans
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
罗磊的独立博客
量子位
有赞技术团队
有赞技术团队
V
V2EX
Engineering at Meta
Engineering at Meta

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
Checked Exceptions in Java Q &A Advantages and disadvantages
Tapas Pal · 2026-05-17 · via DEV Community
Checked exceptions provide compile-time enforcement and are useful
for recoverable conditions such as IO or network failures, ensuring
callers consciously handle exceptional situations. However, they
often introduce excessive boilerplate, tight coupling across
layers, and poor compatibility with modern functional programming
styles, which is why many modern frameworks prefer unchecked
exceptions for cleaner API design.

Enter fullscreen mode Exit fullscreen mode

  1. Why Java has checked exceptions?
  2. Are checked exceptions good or bad?
  3. Why many modern frameworks avoid them?
  4. When should we use checked exceptions?

To answer well, you need balanced understanding.

What Is a Checked Exception?
A checked exception is an exception that:
must be handled or declared at compile time
Compiler forces handling.

Examples

  • Checked Exception
  • IOException
  • SQLException
  • FileNotFoundException
  • ParseException

Example

FileReader file = new FileReader("abc.txt");

Enter fullscreen mode Exit fullscreen mode

Compiler error unless:
try-catch
OR:
throws IOException used.

Why Java Introduced Checked Exceptions?
Main idea: force developers to think about recoverable failures

Example:

  • file may not exist
  • DB connection may fail
  • network may timeout

Java designers wanted: explicit error handling

ADVANTAGES OF CHECKED EXCEPTIONS
1. Compile-Time Safety

BIGGEST advantage. Compiler forces handling.

Example

public void readFile() throws IOException { }

Enter fullscreen mode Exit fullscreen mode

Caller MUST: catch or rethrow
Benefit Reduces:
ignored critical failures

Without Checked Exceptions Developer may completely forget error handling.
2. Better API Documentation
Method signature clearly communicates: what can go wrong
Example

public void save()  throws SQLException

Enter fullscreen mode Exit fullscreen mode

Immediately tells caller:
DB failure possible

3. Encourages Recovery Logic
Checked exceptions usually represent:
recoverable situations
Example:
retry network call
ask user for another file
reconnect DB

Example

try {
    readFile();
} catch(IOException e) {
    System.out.println( "Please provide valid file"=);
}

Enter fullscreen mode Exit fullscreen mode

Application can continue.

4. Prevents Silent Failures

Forces conscious handling.
Good for:
banking
healthcare
critical enterprise systems

Example:
Ignoring payment gateway failure can be dangerous.
Checked exceptions force handling.

5. Improves Code Contracts

Method contract becomes explicit.
Example

transferMoney() throws InsufficientBalanceException

Enter fullscreen mode Exit fullscreen mode

Clear business-level expectation.

DISADVANTAGES OF CHECKED EXCEPTIONS

Now the important part.

Most experienced developers criticize checked exceptions heavily.

1. Boilerplate Code Explosion

BIGGEST complaint.

Example

try { 
readFile();
} catch(IOException e) {
    throw new RuntimeException(e);
}

Enter fullscreen mode Exit fullscreen mode

Repeated everywhere.
Creates: ceremonial code
Especially Bad In Layered Architectures

Suppose:

  • Repository layer
  • Service layer
  • Controller layer

Checked exception propagates through ALL layers.
Example
throws IOException
throws IOException
throws IOException

Very noisy.
2. Exception Leakage Across Layers

Low-level implementation details leak upward.
Service layer now knows: SQLException
This tightly couples:
business logic
database technology Bad design.

Better Design
Service layer should expose:
BusinessException
not DB exceptions.

3. Developers Often Ignore Proper Handling

Because compiler forces handling,
developers sometimes write:

catch(Exception e) { }
OR:
e.printStackTrace();

Bad practice.

So Checked Exceptions Sometimes Create:
fake handling
instead of meaningful handling.

4. Bad Fit for Functional Programming
Streams/lambdas work poorly with checked exceptions.

list.stream() .map(this::readFile)

Enter fullscreen mode Exit fullscreen mode

If readFile() throws checked exception:

compilation issues
ugly wrappers required
Example Ugly Wrapper

try {
    return readFile();
} catch(IOException e) {
    throw new RuntimeException(e);
}

Enter fullscreen mode Exit fullscreen mode

Very common frustration.

5. Frameworks Prefer Unchecked Exceptions

Modern frameworks:
Spring
Hibernate
Reactor

mostly use: RuntimeException

Why? Cleaner APIs.

Example
Spring converts:
SQLException into: DataAccessException unchecked exception.

6. Reduces API Evolution Flexibility

Suppose API initially: throws IOException
Later you add: SQLException
ALL callers break.
Huge maintenance issue.

7. Deep Call Stack Pollution
Example

Controller
   ↓
Service
   ↓
Repository
   ↓
FileReader

Enter fullscreen mode Exit fullscreen mode

Every layer forced to:
catch or rethrow

Leads to:
throws pollution

Why Runtime Exceptions Became More Popular?

Because:

  • cleaner APIs
  • less boilerplate
  • better framework integration
  • functional programming friendliness

But Does That Mean Checked Exceptions Are Bad?

NO.
They are useful when:

  • caller can realistically recover
  • failure expected and meaningful

Good Use Cases for Checked Exceptions
Scenario Good?
File operations ✅
Network calls ✅
User input parsing ✅
Retryable operations ✅

Bad Use Cases
Scenario Bad?
Programming bugs ❌
NullPointerException ❌
Validation programming errors ❌

These should be:
unchecked exceptions

Golden Design Principle
Use checked exceptions for:
recoverable conditions

Use unchecked exceptions for:
programming errors

Why IOException Is Checked But NullPointerException Is Not?

Because:

  • missing file may be recoverable
  • programming bug usually not recoverable

Why Spring Uses Runtime Exceptions?

Spring philosophy:
developer productivity over forced handling and:
centralized exception handling

  • AOP
  • transaction rollback

work better with unchecked exceptions.
Important Real-World Observation
Most modern enterprise applications:
use checked exceptions very minimally
convert low-level checked exceptions into runtime exceptions
Example

catch(SQLException e) {
    throw new DataAccessException(e);
}

Enter fullscreen mode Exit fullscreen mode

Cleaner service APIs.
Important Senior-Level Insight

Checked exceptions work best when:

  • failure is expected
  • caller has meaningful recovery strategy

Otherwise they create:

  • boilerplate
  • coupling
  • noisy APIs

Q. Can overridden method throw broader checked exception?
NO.

Example

class A {
    void test() throws IOException {}
}
//INVALID
class B extends A {
    void test() throws Exception {}
}

Enter fullscreen mode Exit fullscreen mode

Compile error.

Q. Can overridden method throw narrower checked exception?
YES.
Example

void test() throws FileNotFoundException

Enter fullscreen mode Exit fullscreen mode

Allowed.
Q. Can checked exception be ignored?

Only if:
caught
or declared
Compiler enforces it.