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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:51:16+00:00 2026-06-12T00:51:16+00:00

I have 2 classes. The first class Car has a list of passengers. I

  • 0

I have 2 classes. The first class Car has a list of passengers. I need a Hibernate Criteria that will return the Car for which I have a single passenger. So something like this

class Car {

   @Id
   private Long id;
   @OneToMany
   private List<Passenger> passengers;
}

And in the Hibernate class

@Override
public Car retrieve(Passenger passenger) {
    Criteria criteria = super.createCriteria();
    criteria.add(Restrictions.eq("passengers", passenger));
    return (Car  ) criteria.uniqueResult();
}

However the below wont really work. So any suggestions how to do 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-06-12T00:51:18+00:00Added an answer on June 12, 2026 at 12:51 am

    You need to join the Car table with the Passenger table here, which can be done with criteria API’s aliases. you should try the following:

    @Override
    public Car retrieve(Passenger passenger) {
        Criteria criteria = super.createCriteria();
        criteria.createAlias("passengers", "p");
        criteria.add(Restrictions.eq("p.id", passenger.getId()));
        return (Car) criteria.uniqueResult();
    }
    

    Another tip: I think that a passenger can only appear once in a car, so I would prefer Set<Passenger> instead of List<Passenger> .

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

Sidebar

Related Questions

I need to have two classes, one class has two methods each of which
Let's say I have two classes. Each class has one parameter. Parameter of first
I have 2 classes that inherits from a father class. The father class has
I have two classes. First class has TabPage control. I want to change layout
I have 2 classes right now, the first class has the arraylist in it.
I have two classes. In my first class i have table view which contains
my code is like this: i have two classes first class: public class Box<E>
Hi I have 3 classes first and second class are computations and 3rd is
I have a .py file with lots of classes: class First(Second): #code class Third(Fourth):
I have this application with 2 classes, in the first class I define a

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.