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

  • SEARCH
  • Home
  • 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 8432141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:02:44+00:00 2026-06-10T06:02:44+00:00

I have doubt with Delegate-Service and DAO design pattens. Our team thought we will

  • 0

I have doubt with Delegate-Service and DAO design pattens. Our team thought we will use Singleton patterns for DAOFactory and DAO Objects. DAOFactory will contain all the available DAOs as its attribute and will provide them whenever required.

Now we are having one doubt whether Service say e.g. AuthenticateSerivce shall contain all the required DAO say e.g. UserDAO, RoleDAO etc as attributes? or It should call get**DAO() whenever its need on demand basis and not set as its own attribute.(Attached is java file)

Code Snippet:

public class AuthenticateService {
    UserDao userDao;
    RoleDao roleDao;

    public AuthenticateService(){
        DaoFactory daoFactory = DaoFactory.getInstance();
        userDao = daoFactory.getUserDao();
        roleDao = daoFactory.getRoleDao();
    }


}


public class DaoFactory {

    private static DaoFactory instance = null;

    UserDao userDao;
    RoleDao roleDao;
    AnnualScheduleDao annualScheduleDao;
    WeeklyScheduleDao weeklyScheduleDao;
    ProgramSlotDao programSlotDao;

    private DaoFactory (){
        // Authenticate
        userDao = new UserDaoImpl();
        roleDao = new RoleDaoImpl();

        // Schedule
        annualScheduleDao = new AnnualScheduleDaoImpl();
        weeklyScheduleDao = new WeeklyScheduleDaoImpl();
        programSlotDao = new ProgramSlotDaoImpl();

    }


}

Which approach is better and in which situations?

  • 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-06-10T06:02:46+00:00Added an answer on June 10, 2026 at 6:02 am

    I think the first one is better (i.e., attributes), because it’s easier to manage them. The code is going to be cleaner as well, rather than having calls to the Factory in different methods, or having a dao variable in each method. You can easily modify the Daos to use later on, without having to replace in several areas. If you decide to initialize the Dao there, or to create a custom dao to use, or to use dependency injection later on, then you don’t have to revisit all calls to the DaoFactory.

    The second issue is on the use of singletons for DAO. I’m not sure how each DaoImpl is being done, but there’s a chance of having thread issues when the service is accessed by more than one thread (again, it depends on how you implement your Daos) and they are sharing the same Dao. Or maybe you want to use a Factory that instantiates a new Dao for every request? But if that’s the case, then I’m sure you will go for the first option, since you wouldn’t want to recreate a dao in each method.

    Daos are likely cheap to create (assuming that your team is worrying on performance issues) so they do not need to be instantiated on-demand, but you should do some connection or resource pooling (e.g., reusing Db connections).

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

Sidebar

Related Questions

I have a doubt regarding downloading data from a web service. One way is
I have doubt whether it is possible to stop service , when USB is
I have a modal view controller that takes another UIViewController as delegate. My doubt
This is the text field delegate method but i have doubt about return type
I know how the Singleton pattern works, but I have doubt how it works
I have doubt with android backstack , please consider the scenario I have two
I have doubt when i am reading difference resource for Proxy fetching or No-proxy
I am reading linux device driver book of rubini,corbet and hartmen.I have doubt regarding
Possible Duplicate: What is the difference between const and readonly? i have doubt in
I have some doubt on below code #include<stdio.h> int i=6; int main() { int

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.