Tagged Questions
0
votes
0answers
36 views
how to bind the entity through the additional table with a composite key
I have a problem with binding the entity through the additional table with a composite key:
class Product
@Entity
public class Product implements Serializable {
@Id
@Column(name = ...
0
votes
1answer
37 views
How do you join an object with a composite id on another object with a composite id but not the same composite id? (JPA annotations)
How would you map a list of bar objects onto the Foo object, using ONLY the FOO_ID?
@Entity
@Table(name="FOO")
class Foo {
@EmbeddedId
private FooPK primaryKey;
@OneToMany
...
0
votes
1answer
40 views
JPA 2 Mapping inheritance Type JOINED or SINGLE?
I've a test case, that have three tables/classes (Language, Caption and CaptionLanguage).
The Language table stores the languages data.
The Caption table stores the caption index data.
The ...
0
votes
1answer
138 views
JPA 2.0 : what is javax.validation.* package?
what is javax.validation.* package in java ee , how to use this with JPA 2.0 ? i want to validate my Enity with @NotNull annotation . my JPA implementation is Hibernate :
public class Employee ...
0
votes
1answer
137 views
JPA 2 : Implicit column reference in the @MapsId mapping fails
i am try to use Multiple Mapped Attributes . but when i try to run the code , the code will generate the exception, this example is based on Pro JPA 2 , Chapter 10 book . there is following code :
...
0
votes
1answer
76 views
JPA 2: Exception using @Table annotation
when i try to using @Table(" \" Employee \" ") annotation , it generate the exception. there is following exception
Exception in thread "main" javax.persistence.PersistenceException: ...
0
votes
0answers
163 views
JPA2: how to persist data using @MapKeyColumn
In my example I have two entities to persist. But when I try to using @MapKeyColumn annotation , I am confused on how to use this annotation and how to persist the data. This is the example that is ...
0
votes
1answer
155 views
JPA 2: how to declare primary-key columns in @ElementCollection tables
in JPA2 when we are using Embed-able (Basic Type like String.. etc ) object in Entity using with @ElementCollection and @CollectionTable annotation , the new table is created , but in new table how to ...
0
votes
1answer
159 views
How to create dynamic table using JPA 2?
I want to create a dynamic time table using pure JPA 2. Like in hibernate we create the dynamic table using SchemaExport.
The code:
<properties>
<property ...
0
votes
3answers
144 views
JPA: Why the annotations are applied on getter or field
why the jpa annotations are applied on field or on getter methods. if i try to apply the annotations on setter method then compiler generate the error. because compiler ignore the annotation on setter ...
0
votes
1answer
108 views
Unable to generate metamodel definitions using DataNucleus JPACriteriaProcessor from Eclipse
I'm trying to generate the metamodel definitions in Eclipse as documented on:
http://www.datanucleus.org/products/accessplatform/jpa/jpql_criteria.html
My project compiler level is set to 1.6 and the ...
0
votes
4answers
436 views
JPA mapping annotations for Object type
I will implement an entity class, something like:
@Entity
public class XXXEntity {
@Id
private Long id;
private Object entity;
}
But I am not sure how to map the Object type field?
...
1
vote
1answer
1k views
Problems with scalar values in native hibernate/jpa query using annotations
I'm trying to run a simple SQL query containig a group by clause.
HistoryEntity:
@Entity
@NamedNativeQueries(value = {
@NamedNativeQuery(name = HistoryEntity.FIND_ALL_BY_REFERENCE,
...
1
vote
1answer
148 views
Can I use JPA annotations in a non-EE standalone environment?
I'd like to do some rapid prototyping with OpenJPA and I would like to use JPA annotations in my classes. I would like to run standalone (like from a main method). Can this be done?
So far I was able ...
2
votes
2answers
180 views
Annotate m:n relationship with helper class (2 foreign keys + additional attributes) with JPA 2.0
I'm new to JPA 2.0 and have troubles annotating a n:m relationship that uses a foreign key class with additional attributes describing the relationship:
Customers can subscribe to several magazines, ...
1
vote
3answers
337 views
Does @Inheritance default to SINGLE_TABLE, or does it default to “fallthrough” OR SINGLE_TABLE?
Consider the following scenario:
(The following things have been omitted: Constructors, Getters and Setters, @Column annotations, @Basic annotations, @Table annotations, imports and package ...
0
votes
1answer
72 views
How to define cacheable in XML for second level cache in jpa
I have an entity which I want to enable caching for in one scenario but to disable it in another.
For this reason I want to define the caching not via annotation but via a configuration file.
What I'd ...
1
vote
1answer
583 views
@ManyToMany/@OneToMany mappedby attribute for bidirectional association
I'm working on a JPA Compliancy kit for my internship... Part of that kit involves testing correct implementation of corner cases.
@ManyToMany has a mappedBy attribute. JPA states that:
String ...
1
vote
0answers
182 views
@MapKeyJoinColumn table attribute usage
I'm working on a JPA Compliancy Kit for my internship, and part of that is testing for proper implementation of corner cases.
I looked at @MapKeyJoinColumn today.
Meet its table attribute:
...
3
votes
1answer
187 views
Combining @MappedSuperclass and @SecondaryTable - is that allowed?
Working on a JPA 2.0 compliancy kit for my internship. Part of that kit is to cover corner cases.
@MappedSuperclass doesn't have an original table since it's not an entity.
JSR-317 states this ...
2
votes
1answer
286 views
Overriding mappings for a map of basic types
I'm working on a JPA 2.0 compliancy kit for my internship... Part of that kit is testing corner cases.
JSR-317 states on Page 360 that "The AttributeOverride annotation may be applied to an element ...
3
votes
1answer
122 views
Should an error be thrown if a class is annotated with @Entity and @Embeddable?
Working on a JPA compliancy kit for my internship... Part of that kit is testing all corner cases.
I'm looking at @Embeddable today.
No attributes to deal with.
Then I started wondering...
What if ...
5
votes
2answers
783 views
What's the default TemporalType for a temporal map key without a @MapKeyColumn or @MapKeyTemporal annotation?
I'm working on creating a JPA 2.0 Annotation compliancy kit for my internship.
Right now, I'm wondering when a @MapKeyTemporal annotation is required and when it's optional...
I know that when you ...
0
votes
2answers
166 views
Save non-persistant object id in JPA (Hibernate)
I've a static class like:
public class Sex{
private final int code;
private final String status;
public static final int TOTAL = 3;
private Sex(int c, String s) {
code = c;
status = s;
}
public ...
1
vote
1answer
854 views
@OneToOne(optional=false) and @JoinColumn(nullable=false) used together
I've bumped into this example in JPA 2.0 FR Specification, 11.1.37. OneToOne Annotation, page 403:
@OneToOne(optional=false)
@JoinColumn(name="CUSTREC_ID", unique=true, nullable=false, ...
0
votes
1answer
459 views
complex JPA inheritance with JAXB specific contract
Hi guys I've searched everywhere for this, so this is literally a last resort, I am trying to get a nice database structure for the following code:
@Entity
@Table(name = "tasks")
@XmlRootElement(name ...
0
votes
2answers
343 views
JPA - One to One relationship with shared primary key among multiple tables
Consider the below example:
I have 3 tables: Fruit, Orange and Apple
id is generated in fruit table and is the primary key here
id is also primary key for Orange and Apple (shared primary key)
So ...
0
votes
1answer
1k views
JPA: Give a name to a Foreign Key on DB?
I have a simple questions. How can I give a name to the Foreign Key relations that arise from the @ ManyToOne annotation ?
4
votes
2answers
957 views
@Generated annotation
I have an entity which has a non key column which I've set as auto generated in my DB.
I cannot use @GeneratedValue because it works only for key fields as far as my understanding.
Given this case, ...
6
votes
1answer
2k views
The mystery of Java EE 6 annotations inheritance
I'm using inheritance with EJB in a few scenarios, sometimes with annotations in the super class like this generic entityDAO:
public class JpaDAO<T>{
protected Class<T> entityClass;
...
3
votes
1answer
4k views
Cascade deleting from join table with @ManyToMany annotation
Hi I got a problem with mapping my entities. I'm using JPA2 and Hibernate implementation. I got tables with @ManyToMany annotation
http://img204.imageshack.us/img204/7558/przykladd.png
I mapped it ...
8
votes
3answers
3k views
Complex Search Queries JPA
In my Wicket+JPA/Hibernate+Spring project, much of the functionality is based around the Inbox page where, using many filtering options (not all of them have to be used), users can restrict the set of ...
25
votes
3answers
18k views
JPA Criteria Tutorial
I've been trying to find a JPA Criteria API tutorial but haven't been much successful. Do you know about any for beginners? I'd like to start using it in an Java5/Maven app to build complex search ...
1
vote
1answer
3k views
Annotation processing with Maven and Java 5 (JPA)
I would like to use Criteria API in my new project and from what I understood, I also need to do annotation processing. Since there Java 5 on the server, how is this possible using Java 5 and Maven?
0
votes
2answers
500 views
Any way to inject/choose datasource at runtime?
I have a MySQL database with many databases, each named for a specific customer.
A webapp is deployed per customer. The name of the webapp determines the underlying database name. When the webapp ...

