0
votes
0answers
29 views

Hibernate/JPA - @AttributeOverride usage in multiple level inheritance

We are attempting to create the following structure: SuperClass, MiddleEntity extends SuperClass ,LowLevelEntity extends MiddleClass. MiddleEntity and LowLevelEntity have different reference columns ...
0
votes
1answer
27 views

Does the length field on the javax.persistence @Column define max?

I have this code: public class Item { @Column(name = "serialNo", length = 12) public String getSerialNo() { return this.serialNo; } public void setSerialNo(String serialNo) ...
0
votes
1answer
55 views

Hibernate mapping a map <enum, Integer>

i am using Hibernate and JPA annotations to map my classes. I am having a problem when hibernate trys to map this class @Entity @Table(name = "social_item") public class SocialItem extends Item { ...
0
votes
1answer
39 views

JPA Lazy Fetch Custom Query

I am using JPA/JFreeChart to display data I collected with a microcontroller, however, I measure 14 sensors every 10 seconds. I have been measuring for over 2 months and I have over 7000000 sets of ...
1
vote
1answer
41 views

Grails / GORM - equivalent to JPA @ElementCollection

I have a composition pattern where a parent object has a list of child objects, e.g., Order and LineItem. It behaves similar to cascading with delete orphans, but the child objects are @Embeddables ...
1
vote
1answer
131 views

Play!Framework 2 Java model string field length annotations

To achieve best performance and validation convenience, which of these annotations are needed for a String field? database: MySQL A field to store district name @Column(length=50) // ...
1
vote
1answer
57 views

QueryDsl, combining standard JPA and Hibernate's - class level @Where annotations?

I'm wondering if I could team up hibernate annotations, and particularly those class level annotations, with standard JPA annotations in QueryDsl. Like so... @javax.persistence.Entity ...
0
votes
1answer
58 views

OneToMany composite primary key on same entity

I want to do the following: @Entity @Table(name="things") public class Thing { @Id private String id; @OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY) private ...
1
vote
2answers
32 views

Can JPA entity inherit @Version from an interface method?

I defined a Versioned interface, expecting that I could implement it on any persisted entity that I wanted to use the JPA versioning features (e.g., comparing version for mid-air collisions, ...
2
votes
0answers
68 views

Problems with calculated properties and inheritiance using @Formula in hibernate

Hi I'm pretty new to Hibernate so I might be doing some silly stuff. I have an entity @Entity @Table(name="criterion") @Inheritance(strategy = InheritanceType.JOINED) public abstract class ...
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 ...
2
votes
0answers
85 views

Generate JPA Entities with Annotations using XML [closed]

I am trying to find a way to generate JPA Entities with some javax.validation Annotations using XML. Basically I modify an XML file and with some magic it'll generate the JPA java classes with the ...
0
votes
1answer
135 views

JPA Annotations - How to retrieve a single value from a different table than the current object?

How do you map a single value from a column in another table to the current object? Example: class Foo { @Id @Column(name="FOO_ID") private String fooId; @Column(name="FOO_A") ...
0
votes
0answers
37 views

How to retrieve a subset of objects indirectly related to original object via annotations?

How best to solve this problem (is annotations even feasible?) Two tables: Foo has fields foo_id, foo_code Bar has fields bar_id, foo_code, ref_bar_id In my Foo class, I need to retrieve a set of ...
-2
votes
1answer
42 views

what are JPA references [closed]

I've been learning Java for about 3 months now and have come across the term 'JPA references'. Could someone give me a really simple explanation of what this means? I came across the term whilst ...
0
votes
1answer
52 views

EclipseLink Annotations cannot be resolved

I'm trying to create a simple EclipseLink POC. Unfortunately, it doesn't seem to include important, basic classes within the JAR. For example, the following fails within eclipse (and eclipselink is ...
2
votes
4answers
365 views

Hibernate not updating child object while updating parent object

I have two tables parent and child has @oneTomany relationship between them. following is my table structure. Table Structure CREATE TABLE `parent` ( `id_parent` int(11) NOT NULL AUTO_INCREMENT, ...
0
votes
1answer
45 views

How to specify Hibernate mappings from code without JPA

I'm using Hibernate native SQL queries that map the results to a POJO. However, I need a mapping XML file that binds column names to property names. Is it possible to specify the mapping directly from ...
0
votes
1answer
127 views

I want to map a Map<Long, List<POJO>> through JPA

I want to map a Map<Long, List<ItemAttribute>> inside an @Entity class where ItemAttribute itself is an @Entity defined separately. Here is the code that I am using for mapping: @Entity ...
0
votes
2answers
189 views

Annotation reflection (using getAnnotation) does not work

I have to following code to check whether the entity in my model has a nullable=false or similar annotation on a field. import javax.persistence.Column; import ..... private boolean isRequired(Item ...
0
votes
3answers
563 views

java.lang.NoSuchMethodError: org.hibernate.cfg.Configuration.addAnnotatedClass

I am new to JPA & hibernate, when I try this tutorial . I added the following provider in my persistence.xml, <provider>org.hibernate.ejb.HibernatePersistence</provider> and I am ...
0
votes
0answers
43 views

@ForeignKey at a simple attribute

The environmnet is OpenJPA 2.2.1. I have a mapping like this: @Column(name = "salutations_id") @Element(name = "title_id", data = true, required = false) private Long salutations_id; There is a ...
0
votes
1answer
87 views

JPA 2: How many methods are allowed in one entity with @Prepersist annotation?

in jpa 2 , home many methods are declare with annotations like @prepersist and in which order these methods are execute . Some time we also create different class for listener and apply this class on ...
0
votes
1answer
76 views

JPA annotation Map with hibernate, and best relational model

I'm trying to annotate this : public class Keyword { @Id @GeneratedValue private Integer id; //Missing annotation private Map<Keyword, ...
0
votes
1answer
67 views

Hibernate Annotation - 1 to 1 with no auto_increment

How do I proceed in terms of Hibernate Annotation (JPA) when a table's primary key column is a foreign key to another table with no auto_increment (MySQL). Thanks.
-1
votes
2answers
83 views

ORM one to many types

Maybe isn't correct the title, please suggest a better one! What I would like to have: table1: field1 field2 ..... userID The user id should be one of the 5 tables: User, Person, Sales, Managers, ...
2
votes
1answer
337 views

GenericDAO + Spring + JPA2 no unique bean

having looked at several similar problems here and applied the logic to my situation, I'm still stumped with a dependency injection failure in my Spring/JPA app. The premises of the application are: ...
0
votes
1answer
59 views

Inherit from field/method targeted annotation

I'm annotating my classes here and there and I find myself repeating the following: public class Example { @Basic @Convert("converter") private AnotherExample ae; } To save me some ...
0
votes
1answer
61 views

How do I make a service method that invokes another service method transactional?

I'm using Spring 3.1.1.RELEASE, Hibernate 4.1.0.Final, JPA 2.0, and MySQL 5.5 I define transactions within my Spring application context file like so: <jee:jndi-lookup ...
0
votes
0answers
166 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
157 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
164 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
1answer
90 views

JPA 2: Benefits of @TableGenerator

What are the benefit of @TableGenerator Technique to generate the primary keys? Why we use this technique and how to fetch the data using third table that use to store the sequence name and value of ...
0
votes
1answer
59 views

unique id generation for all DB vendors

I have a project which is developed using hibernate- jpa annoatation. I have chance to create id using JPA which are AUTO, Increment, sequence and table. Auto is working fine for all DB vendors but, ...
0
votes
3answers
152 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
221 views

JPA mapping for one to many with inheritance mapping

I have one scenario. @Entity @Table(name = "someTable") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @Access(AccessType.FIELD) @DiscriminatorColumn(name = "someDisc") public abstract class ...
1
vote
1answer
186 views

Relationship between deprecated Entity Beans in Java EE and the @Entity annotation?

There's a whole lot of beans and vegetables in Java, and it's beginning to confuse me some. I've read a couple of newly published books on Java EE 6, and they all say that "entity beans" has been ...
0
votes
1answer
205 views

Dynamic Schema in JPA annotation

I am Using OpenJPA in My Project with DB2 Database. Our DBA , does not allowing Synonyms. we have multiple schema in database (e.g for different schema for DEV & QA ) My Entity class looks like ...
0
votes
0answers
203 views

Hibernate: delete the data from multiple tables using @Cascade(cascade=CascadeType.All )

in my code i want to delete the data from table using cascade property, bu when i use 'CascadeType.All' the data is delete from only one table but in second table data are no deleted . when i try ...
0
votes
2answers
420 views

Hibernate : Diffrence between @ Embedded annotation technique and @OneToOne annotation Technique

What is the difference between @Embedded annotation technique and @OneToOne annotation technique because in Embedded the java class contain "Has a" relashionship in class and with the help of ...
0
votes
1answer
100 views

@TableGenerator : how to use

i will try to generate the primary keys using table generator. but when i insert the 6 records in my table, the primaryKey table show only one on value. here is the following code My Entity class ...
0
votes
1answer
66 views

Mapping a Map or List multiplies parent result

I am having a problem with mapping a entity that contains a list (or map). I've tried various combinations of annotations but the two variations that work the 'best' both have this behavior. If the ...
1
vote
1answer
74 views

Hibernate Annotation based Query executing Error?

Actually in my Hibernate Annotation based Application have theree ValueObject classes(Bean class) these are.. public Class CourseVO{ @Column(name="NAME") private String name; } ...
1
vote
0answers
270 views

How to extends Spring Data JPA @Query Method Annotation

How to extends Spring Data JPA @Query Method Annotation ? From this article http://www.javacodegeeks.com/2012/08/hibernate-native-sql-features-into-your.html i learn how to extends Spring data JPA ...
1
vote
2answers
204 views

JPA annotation with association table

I'm using JPA annotation with Hibernate and I don't really know how to manage association table. Here is my database : | COUNTRY | | COUNTRY_MOVIE| | MOVIE | |---------| ...
1
vote
2answers
173 views

Can I load JPA mappings from Java annotations and save them back as XML?

Is it possible to define JPA mappings with annotations only, and then programmatically save this mapping data back to some orm.xml file? There is discussion in the team as to whether to use ...
0
votes
1answer
109 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
1answer
65 views

How to determine if an Entity has a NamedQuery

Again, posting and answering a question for the benefit of others based on a problem I had the other day. Hopefully this saves someone a bit of time. I was a little surprised this wasn't built into ...
1
vote
3answers
195 views

Set where clause on field

I have a base entity that holds a enum field called State. public enum State { DELETED(0), ACTIVE(1) ; private int value; private State(int value) { this.value = ...
0
votes
1answer
228 views

JPA Multiple Embedded fields with prefix?

With JPA annoations, I want to reuse same embedded object like this : @Entity public class User { @Embedded public Address homeAddress; @Embedded public Address workAddress; } ...

1 2 3 4 5