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 8048497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T06:27:31+00:00 2026-06-05T06:27:31+00:00

Can the morphia single BasicDAO handle/query multiple collection, may by be by overloading function

  • 0

Can the morphia single BasicDAO handle/query multiple collection, may by be by overloading function with the class parameter.

public class GenericDAO extends BasicDAO<T, K> {

  /* override count impl*/
  public long count(Class<T> clazz) {
     return ds.getCount(clazz);
  }
}

Is there any other way I can query two different collection using single DOA or it is better to make separate DAO for each collection.

Example For User and BlogEntry Collections

public class BlogEntryDAO extends BasicDAO<BlogEntry, ObjectId>
public class UserDAO extends BasicDAO<User, ObjectId>
  • 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-05T06:27:33+00:00Added an answer on June 5, 2026 at 6:27 am

    The simple answer is NO,

    The BasicDAO is made made on the assumption to deal with single collection/Entity as many of the DOA’s function are Entity/Class and _id/primary key type based.

    public class BasicDOA<T,K> implements DOA<T,K>
    

    T should be a specific class
    K should be a specific key (can be separate for different class) e.g ObjectId, String, Long etc

    Example function

    public Class<T> getEntityClass()
    public T get(K id)
    

    If you want to deal with multiple collection in single DAO then create your own generic DAO with custom methods and use DataStore to deal with different/specific collections.

    public class MyDAO {
      protected DatastoreImpl ds;
    
      public count(Class<T> clazz) {
        return ds.getCount(clazz);
      }
    
      public T get(Class<T> clazz, K id) {
         return ds.get(clazz, id);
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to mapp pojo class to mongodb using morphia-0.93-SNAPSHOT.jar but it is
Can somebody help me convert this VB function to Perl (PHP, Ruby or Python
I'm using morphia. As u know for a simple search I can use this:
Can I register a .Net COM class with the SingleUse -flag? The reason I
Can MOSS integrate and get user profiles from multiple Active Directory and/or LDAP stores?
If I have the following class: public class ObjectDAOMongoDBImpl<T> extends GenericDAOMongoDBImpl<T, ObjectId> implements ObjectDAO<T>
Can we write all the control events in a seperate class file in different
Can you provide an example of batch_mutate() function in phpcassa? Cant understand how to
Can I write a hash code function for the following comparer logic? Two instances
Can we change the color of the divider? Apple documentations says, that we can

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.