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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:05:04+00:00 2026-05-29T07:05:04+00:00

I am relatively new to Hibernate (4) and ORMs in general, and would like

  • 0

I am relatively new to Hibernate (4) and ORMs in general, and would like to know which is the easiest or most convenient way to find object(s) by attributes.

class Foo {

    private Long id;

    private String name;

    private Integer age;

    private Integer favoriteNumber;

    private String catchphrase;

}

Say I have an instance of Foo, the attributes are set arbitrarily, or in other words, I do not know which attributes are set (id might not have been set).

Based on the attributes that are not null, I would like to find any matching object(s) from the database.

Ideally I would want to use a method like this:

session.getCurrentSession().find(foo); which returns a list of Foo.

PS. I do not want to use reflection to accomplish this!

  • 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-29T07:05:05+00:00Added an answer on May 29, 2026 at 7:05 am

    The best approach to your use case is to use a query by example:

    session.getCurrentSession()
         .createCriteria(Foo.class).add(Example.create(foo)).list();
    

    UPDATE:
    Querying by example doesn’t include the id attribute in the search. I assumed here that you are not interested in a query by id. If you know the id and you are interested by a query by id you need to do a separate:

    (Foo) session.getCurrentSession().get(Foo.class, fooId);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Relatively new to Python.. I would like to know how to check if a
im relatively new to ROR, and would like some help with the following code.
Please excuse my ignorance on the topic, as I am relatively new to Hibernate
I'm relatively new with hibernate so please be gentle. I'm having an issue with
I have inherited a piece of code which calls NHibernateUtil.Initialize. I am relatively new
relatively new programmer here. Look at the two classes defined below. I'd like to
I'm relatively new to hibernate and was wondering if someone could help me out.
Given a Hibernate domain object, is there some way I can determine if it
Being relatively new to mongo, I read in the mongo manual about Optimizing Object
I am relatively new to rails and have been working my way through the

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.