| Summary: | NullPointerException for combination of complex Primary Key and JOINED Inheritance type | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Piotr Wawrzyniak <piotr> | ||||||
| Component: | Eclipselink | Assignee: | Nobody - feel free to take it <nobody> | ||||||
| Status: | NEW --- | QA Contact: | |||||||
| Severity: | major | ||||||||
| Priority: | P2 | CC: | tom.ware | ||||||
| Version: | unspecified | ||||||||
| Target Milestone: | --- | ||||||||
| Hardware: | PC | ||||||||
| OS: | Windows XP | ||||||||
| See Also: | https://bugs.eclipse.org/bugs/show_bug.cgi?id=333749 | ||||||||
| Whiteboard: | |||||||||
| Attachments: |
|
||||||||
|
Description
Piotr Wawrzyniak
Created attachment 189081 [details]
The log file
Created attachment 189082 [details]
The zipped eclipse project
Script for create database in src/jpa/test.sql
Can be avoid if add the duplicated reference to key entity in derived classes (ChildX and ChildY) in project.
Like this:
@ManyToOne
@JoinColumn(name="a_id")
public A getA_() {
return getA();
}
public void setA_(A a) {
setA(a);
}
but occurs error at read data, see bug 337297
Setting target and priority. See the following page for the meanings of these fields: http://wiki.eclipse.org/EclipseLink/Development/Bugs/Guidelines Community: Please vote for this bug if it is important to you. Votes are one of the main criteria we use to determine which bugs to fix next. The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink |