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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
爱范儿
爱范儿
The Cloudflare Blog
Y
Y Combinator Blog
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - 叶小钗
G
Google Developers Blog
J
Java Code Geeks
P
Proofpoint News Feed
美团技术团队
Engineering at Meta
Engineering at Meta
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
有赞技术团队
有赞技术团队
L
LangChain Blog
N
Netflix TechBlog - Medium
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 【当耐特】

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
Singleton Design Pattern in Java — From Naive to Thread-Safe
kichu · 2026-05-21 · via DEV Community

kichu

What is the need for Singleton Pattern ?

Let's say we need to connect to DB and for every request if we keep creating a new Instance of Db connection to connect to Db this will create a Performance overhead. As it is costly to create a Db connection for every request and it takes time to create the connection which causes delay.

How can we solve this ?

If we keep one connection and use it everytime connecting to DB for every request then while one request is using the connection other requests need to wait. to solve this we need to create a DB connection pool

properties that db connection pool need to satisfy :

  1. it should be a single Instance. Multiple instance creation should not be allowed
  2. single source of truth

How can we design a Singleton pattern ?

package singleton_db_connection;

public class Client {

    public static void main(String[] args){

        Dbc dbc1 = new Dbc();
        Dbc dbc2 = new Dbc();

        System.out.println(dbc1);
        System.out.println(dbc2);

    }

}

Enter fullscreen mode Exit fullscreen mode

package singleton_db_connection;

public class Dbc {

    public Dbc(){

    }

}

Enter fullscreen mode Exit fullscreen mode

in the code we can see if we are able to create a instance of the Class then every time it will change so we shouldnot allow user to create multiple instances. so lets make the constructor private.

public class Dbc {

    private Dbc(){

    }

}

Enter fullscreen mode Exit fullscreen mode

Now we cannot create single instance. we need a single Instance so lets create a Static data member and method

package singleton_db_connection;

public class Client {

    public static void main(String[] args){

        System.out.println(Dbc.getInstance());
        System.out.println(Dbc.getInstance());

    }

}

Enter fullscreen mode Exit fullscreen mode

package singleton_db_connection;

public class Dbc {

    private static Dbc INSTANCE;

    private Dbc(){

    }

    public static Dbc getInstance(){
        if(INSTANCE == null){
            INSTANCE = new Dbc();
        }
        return INSTANCE;
    }

}

Enter fullscreen mode Exit fullscreen mode

Now if we run this every time we get the same Instance of Db connection. But wait will this work if we try to access getInstance concurrently

package singleton_db_connection;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

public class Client {

    public static void main(String[] args) throws InterruptedException {

        Runnable task = () -> {
            System.out.println(Thread.currentThread().getName() + " " + Dbc.getInstance());
        };

        ExecutorService ex = Executors.newFixedThreadPool(5);

        for(int i = 0; i < 100; i++){
            ex.submit(task);
        }

        ex.shutdown();

        ex.awaitTermination(1 , TimeUnit.MINUTES);

    }

}

Enter fullscreen mode Exit fullscreen mode

package singleton_db_connection;

public class Dbc {

    private static Dbc INSTANCE;

    private Dbc(){

    }

    public static Dbc getInstance(){
        if(INSTANCE == null){
            INSTANCE = new Dbc();
        }
        return INSTANCE;
    }

}

Enter fullscreen mode Exit fullscreen mode

this fails as multiple threads try to access the getInstance method at once and multiple instances of Dbc can get created


How about if we make this synchronized ?

public synchronized static Dbc getInstance(){
    if(INSTANCE == null){
        INSTANCE = new Dbc();
    }
    return INSTANCE;
}

Enter fullscreen mode Exit fullscreen mode

if we make it synchronized then at a time only one request can access it then it is like having only one db connection instead of multiple connections at once one thread get's access it will lock and other's need to wait till it gets unlocked


can we make use of class loading ?

what is class loading ?

before running the main method the JVM checks if there are any static variables and assigns them to class

package singleton_db_connection;

public class Dbc {
    private static final Dbc INSTANCE = new Dbc(); // we made it final so only one time it gets assigned value

    private Dbc(){

    }

    public static Dbc getInstance(){ 
        return INSTANCE; // returns the same instance
    }
}

Enter fullscreen mode Exit fullscreen mode

what are the issues with class loading ?

class loading uses eager loading. So if there are more static variables that needs to be assigned to class the initial loading time will be more.

if we initialize the INSTANCE using class loading but no other class is using the INSTANCE then the resource will be wasted


What if we use the lock inside if condition ?

package singleton_db_connection;

import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

public class Dbc {

    private static Dbc INSTANCE;

    private Dbc(){

    }

    private static Lock lock = new ReentrantLock();

    public static Dbc getInstance(){
        if(INSTANCE == null){
            lock.lock();
            INSTANCE = new Dbc();
            lock.unlock();
        }
        return INSTANCE;
    }

}

Enter fullscreen mode Exit fullscreen mode

At start when INSTANCE is null and multiple threads access the getInstance method and they all enter inside if condition , they will create multiple instances of the Dbc class. How can we solve this ?

we need to another if condition inside the lock and only then we allow the create new Dbc instance

public static Dbc getInstance(){
    if(INSTANCE == null){
        lock.lock();
        if(INSTANCE == null) {
            INSTANCE = new Dbc();
        }
        lock.unlock();
    }
    return INSTANCE;
}

Enter fullscreen mode Exit fullscreen mode

inside the lock only one thread can go and it will check again if INSTANCE is null only if it is not null then it will create a new Instance

And this is how a singleton design pattern works

If you found this helpful or have suggestions, drop a comment below! I'm writing notes as I learn design patterns and would love feedback.