Tagged Questions
1
vote
2answers
73 views
JPA Entity - Specify Persistence Unit?
I have a JavaEE project that makes use of multiple persistence units. Is there any way to specify which persistence unit a particular JPA Entity belongs to? Some entities are in one data source, ...
0
votes
2answers
58 views
Fetch a list in a @OneToMany association?
The thing is, an user has one or more properties, so that's why is this way my entity class user
@Entity
public class User implements Serializable {
private static final long serialVersionUID = ...
0
votes
0answers
131 views
use table prefix with entity classes from database
I want to use an existing database with my java webservice, the databse scheme is already defined. I have some tables without prefies which I can create java classes by using the "enttity classes from ...
0
votes
1answer
59 views
How to synchronize my webapplication to my database?
I have got a Java Webapplication and I'm accessing an Oracle 11g database via JPA2 (EclipseLink)
Now had to make some changes in the stored data, but my Application is still caching the old values.
...
0
votes
1answer
54 views
Securing and unsecuring data from application to DB
In my spring-maven-jpa based web app some of the data must by encrypted just before stored in the DB and then decrypted back when pooled from the DB.
So I created my encrypter service and now I ...
2
votes
1answer
153 views
JPA generate tables from entities not doing anything
I am using Eclipse Indigo with Hibernate's JPA-2 implementation. The problem is that when I use that tool to "Generate Tables from Entities" there is no effect at all. I get 45 errors saying my tables ...
1
vote
1answer
207 views
Create Foreign key ON UPDATE CASCADE in JPA (eclipselink)
I am using CascadeType.MERGE but the generated sql does not contain any ON UPDATE in the foreign key. Here is my code
@Entity
public class Address {
@Id
private int id;
private String ...
0
votes
2answers
123 views
Foreign key ON UPDATE CASCADE in eclipselink
How to create a foreign key with ON UPDATE CASCADE in eclipselink.
Can anyone explain how to create such foreign key
Is this feature available in eclipselink?
srini
2
votes
2answers
453 views
How to implement manually JPA relation OneToMany
I am using JPA annotations and when i have relation OneToMany - ManyToOne, when i see my entity in the ManyToOne, the joinColumn is always with null value.
Next i will show my example, i have ...
0
votes
1answer
215 views
Cannot set lastest id inserted in Entity
I have a table User and another Person, a person is an user, right ?
So I have to persist the user first then get his id so I can set this id in my person entity.
It's pretty simple, but I don't know ...
1
vote
1answer
64 views
JPA Entity that uses join for a username but transparently uses an integer id
Suppose I have an entity class that stores a username:
class Profile {
private String userName;
...
}
Then in the database I have two tables:
--- USERS ---
-> username (varchar)
-> uid ...
0
votes
1answer
358 views
Adding index on a existing table in hibernate
I have OneToMany relationship between Job and Detail entities and both have common parent(BaseEntity)
@MappedSuperclass
public abstract class BaseEntity {
@Id
@GeneratedValue(strategy = ...
0
votes
2answers
97 views
How get the lastest inserted values with JPA?
I need to the get lastest inserted 'product' in my database.
I'm using JPA (EclipseLink) to do that, something like :
public List<Product> search(String name){
// return the lastest results ...
1
vote
1answer
210 views
ManyToMany mapping in JPA
I have a M:N relationship between table Users and Groups. Now I am trying to join those two tables using JPA and I always get this exception:
Multiple writable mappings exist for the field ...
0
votes
2answers
108 views
JPA multi-tier relationship
I have a problem where I am stuck :(. I have to build a relationship of a relationship( strange !).
For example, I have a relation where one entity A can have many B (OneToMany)
A ----> B
Now I ...
0
votes
2answers
1k views
Persistence doesn't create table from entity in database
I build a web application using hibernate JPA 2 + spring. I have problem with creation of domain model. In persistence I declared the automatic creation of database tables from entity. Here is my ...
2
votes
3answers
1k views
Cross database joins in JPA
Is it possible to do cross database table joins in JPA?
I have a users table in one database which has a foreign key to a organizations table in a separate database. Both the databases are on same ...
1
vote
1answer
684 views
JPA Character mappings
I am fairly new to JPA and trying to get a basic entity setup.
I understand that table attributes are mapped to java types, such as varchar being mapped to a String.
In my table I have a column code ...
1
vote
1answer
3k views
JPA 2.0 CriteriaQuery on tables in @ManyToMany relationship
I have two entities in a @ManyToMany relationship.
// Output has 4 other @ManyToOne relationships if that matters
@Entity @Table public class Output {
@Id public String address;
...
0
votes
2answers
780 views
@Version column gets updated even though persist was never called
I've a database with two tables (more actually, but that shouldn't matter in this case). One of the two has a foreign key reference to the other. These could be the mappings:
@Entity @Table public ...
0
votes
1answer
219 views
How to navigate the object graph using JPA Criteria API?
Suppose we have the following class graph:
public final class Address {
private final String streetAddress
public String getStreetAddress() {
return streetAddress;
}
}
public ...
2
votes
1answer
147 views
Best approach to our database design
We have a database for an e-commerce application, we are working with JPA 2.0.
We have these three tables: products(id, code, name, description, price); soldproducts(id, quantity, product_id); ...
0
votes
1answer
1k views
Java + JPA: Search User in Database By first and last name return too many results. Is there a better way?
Right now my implementation is like this, so if the user type is Peter Smith, then I would a split on the query string like this:
String[] name = searchQuery.split(" "); //searchQuery is type String
...
1
vote
1answer
631 views
JPA: Set default column value to sequence in database
I am using Postgres as database and JPA 2.0 as provider.
I had been using @GeneratedValue(strategy = GenerationType.IDENTITY) which generates its own sequence for that column and also executes this ...
2
votes
2answers
723 views
JPA Query - how to get a specific result set?
In an app based on JPA2/Hibernate/Oracle+Spring+Wicket, I use the following model:
public class Item {
private String name;
private Set<Application> apps;
private ...
}
public class ...
2
votes
1answer
4k views
Hibernate : Foreign key has the wrong number of column. should be 0
I am trying to evaluate a mapping in this Hibernate document :
section 2.2.3.1. Generating the identifier property
...
