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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:35:32+00:00 2026-05-30T13:35:32+00:00

I have a simple JPA project running (with IBM RAD 7.5 on WebSphere 7).

  • 0

I have a simple JPA project running (with IBM RAD 7.5 on WebSphere 7).

I have a Customer that has many Orders. Looks like this …

@Entity
public class Customer /* in table CC_CUSTOMER */
  @Id
  BigDecimal customerId;
  @OneToMany(fetch=FetchType.EAGER)
  private List<Order> orderList;

…

@Entity
public class Order /* in table CC_ORDER */
  @Id
  BigDecimal orderId;
  Customer customer;

The problem I have is when I try to retrieve a Customer, I get an error because the SQL that’s being generated by JPA contains a select for a non-existant table called: CC_CUSTOMER_CC_ORDER

What am I doing wrong?

Thanks!

Rob

  • 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-30T13:35:33+00:00Added an answer on May 30, 2026 at 1:35 pm

    You have a missing @ManyToOne annotation at Customer customer; and mappedBy=”customer” at @OneToMany annotation

    Customer entity

    @OneToMany(fetch=FetchType.EAGER, mappedBy="customer")
    private List<Order> orderList;
    

    Order entity

    @ManyToOne
    Customer customer;
    

    Because of that JPA thinks that your relationship is unidirectional and this is solved by join table named CC_CUSTOMER_CC_ORDER. If you let your provider generate the schema the table should be generated.

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

Sidebar

Related Questions

I have a simple project built with Eclipse 3.4 (aka IBM RAD) on WebSphere
I have simple HTML code with some JavaScript. It looks like: <html> <head> <script
I have a simple JPA entity that uses a generated long ID as its
I have a simple jpa entity 'ApplicationForm' with a one to many list in
I have a simple data model in JPA (hibernate) consisting of many to one
I have created a simple java web (Vaadin) application project using JPA and it
I have createa simple CRUD application utilize JPA and Hibernate. I have entity annotated
I have simple win service, that executes few tasks periodically. How should I pass
I have a simple question regarding Entity declaration in JPA. I have an entity
I have a simple entity, Code, that I need to persist to a MySQL

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.