Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7087315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:39:33+00:00 2026-05-28T07:39:33+00:00

Using the generic dao pattern, I define the generic interface: public interface GenericDao<T extends

  • 0

Using the generic dao pattern, I define the generic interface:

public interface GenericDao<T extends DataObject, ID extends Serializable> {
    T save(T t);
    void delete(ID id);
    T findById(ID id);
    Class<T> getPersistentClass();
}

I then implemented an default GenericDaoImpl implementation to perform these functions with the following constructor:

public GenericDaoImpl(Class<T> clazz) {
    this.persistentClass = clazz;
    DaoRegistry.getInstance().register(clazz, this);
}

The point of the DaoRegistry is to look up a Dao by the class associating to it. This allows me to extend GenericDaoImpl and overwrite methods for objects that requires special handling:

DaoRegistry.getInstance().getDao(someClass.getClass()).save(someClass);

While it works, there are a few things that I don’t like about it:

  • DaoRegistry is an singleton
  • The logic of calling save is complicated

Is there a better way to do this?

Edit
I am not looking to debate whether Singleton is an anti-pattern or not.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:39:34+00:00Added an answer on May 28, 2026 at 7:39 am

    It could be better to use instance of DaoRegistry instead of static methods. It would make it more manageable for test configurations. You could implement it as

    @Component("daoRegistry")
    public class DaoRegistry {
      @Autowired
      private List<GenericDao> customDaos;
    
      private GenericDao defaultDao = new GenericDaoImpl();
    
      public <T> T getDao(Class<T> clazz) {
        // search customDaos for matching clazz, return default dao otherwise
      }
    }
    

    Also you could add save method to it and rename accordingly. All customised daos should be available as beans.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement the repository pattern using a generic repository like the one
I have a generic interface for a mathematics library, something like this: [ContractClass(typeof(MathsDoubleContracts))] public
If I have a class using generic type such as public class Record<T> {
Consider this code: public interface Foo extends Comparable<Foo> {} public enum FooImpl implements Foo
How to use createNativeQuery using jpatemplate, because jpatemplate.getEntityManager() is returning null: public class GenericDAO<T,
About five years ago I started using Generic lookup Tables for applications I was
I made in my web a menu using generic_view - simple 'django.views.generic.list_detail.object_list' in urls.py
Is there any shorthand way of defining and using generic definitions without having to
I have to work on some code that's using generic lists to store a
I m populating data for different entities into set of lists using generic lists

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.