Tagged Questions

0
votes
1answer
27 views

Do gae datanucleus annotations modify our java code?

I placed this question in Google groups for gae java (http://groups.google.com/group/google-appengine-java/browse%5Fthread/thread/85dc9f10d7e12a3), but sometimes it takes a week for someone to bother …
0
votes
1answer
20 views

JPA Inheritance Multiple DiscriminatorValues

I am trying to implement JPA with inheritance for an existing database. The current db model is the following: Instrument * InstrumentID * Description * InstrumentTypeID InstrumentType * …
0
votes
1answer
19 views

JPA mapping: Reusing entities in multiple relationships

Let's say I have: class Unit { private TextContainer source; private List<TextContainer> targets; } Can I annotate class TextContainer in such a way that it works within both …
0
votes
2answers
35 views

Persisting a new but identical entity with JPA reporting duplicate entry

I have a JPA project connected to a MySQL database where my entity object is mapped to a table with a constraint on 2 columns. That is: @Entity @Table(name = "my_entity") class MyEntity { @Id …
1
vote
6answers
149 views

What is the correct way of overriding hashCode () and equals () methods of persistent entity?

I have a simple class Role: @Entity @Table (name = "ROLE") public class Role implements Serializable { @Id @GeneratedValue private Integer id; @Column private String roleName; …
0
votes
1answer
30 views

In spring, what code is used to inject the value for the @PersistenceContext annotated variables?

Using a ClassPathXmlApplicationContext object I want to get the same EntityManager that is being used by other parts of the app which get it injected via: …
0
votes
1answer
26 views

JPA Merge Is Causing Duplicates

I have the entity classes below. When a user first signs up, only the username and password are supplied, so the list of accounts (think profiles) is empty. Later, when they add an account, the user …
1
vote
1answer
32 views
+100

How to reuse fieldlength in form, validation and ddl ?

I'm working on an Spring application with lots of input forms. I'd like to reuse the field length in the UI-form, validation and JPA annotations. Is there an elegant way to solve this. My solution at …
0
votes
2answers
37 views

To equals and hashcode or not on entity classes, that is the question.

I have been trying to reason about the best way to handle whether it is generally good practice to implement hashcode and equals on entities (I mean entity in the general sense but in most cases it …
3
votes
2answers
32 views

Database Diff Tool

As a Java Developper using JPA/Hibernate, I am looking for a will help diff a database that has been generated by Hibernate with a production database. I've already looked at LiquiBase's abilities …
0
votes
1answer
357 views

Spring + JPA (Hibernate) on Glassfish --> ClassVisitor problem

I'm trying to write a simple web app with Spring 2.5 (core + MVC) and JPA (using Hibernate for the persistence mechanism). Every time I deploy, I'm getting a "Class not found exception" that points …
1
vote
1answer
122 views
+100

Multiple database with Spring+Hibernate+JPA

Hi everybody! I'm trying to configure Spring+Hibernate+JPA for work with two databases (MySQL and MSSQL) my datasource-context.xml: <?xml version="1.0" encoding="UTF-8"?> <beans …
0
votes
1answer
38 views

JPA Spring Hibernate Dao List problem

I am using JPA/Spring/Hibernate as my persistence mechanism for my application. Currently I am running into unit test problems where when I ask for some objects I get the right amount returned from …
1
vote
2answers
19 views

Get fresh data for a list of entities

We're using jpa with Toplink as an implementation and came up with a problem about refreshing lists of entities. Basically this is the scenario: private List<Entity> findAll() { final …
0
votes
2answers
22 views

Backup a database using JPA

I'm working on a database backup engine using JPA. Everything is working fine but I'm having issues figuring this issue. I know is related to how I defined the Entities. First here's a brief on how …

1 2 3 4 5 42 next
15 30 50 per page