Tagged Questions
0
votes
1answer
46 views
Can Hibernate be used to lock a database table or row so that other programs can't access it?
I have batch program that gets a primary key value from a database table (Table_A). This batch program does some logic with this primary key value and then adds it to a new table (Table_B). I have a ...
0
votes
1answer
132 views
Using Hibernate to initialize flyway's schema_version table
We are currently using flyway as a standalone component to manage our database migrations of current customers. For new customers, we'd like to start deploying our application with flyway's ...
0
votes
2answers
1k views
hibernate one-to-one (on foreign key) vs one-to-one (on primary key)
i have questions about what is the benefits of using a one-to-one association on foreign key or a one-to-one association on primary key, I've read the documentation of hibernate available at : ...
1
vote
0answers
75 views
Issue with annotations for Primary Keys on Map<String, String>
The following code generates a table where there is a constraint for the PK using the fields "Propriedade" and "doc_id".
I would like to know what is the most appropriate annotation that I can use ...
-1
votes
1answer
812 views
ConstraintViolationException: Duplicate entry for key 'PRIMARY' when using Hibernate and MySQL?
Session session = HibernateUtil.getTestSessionFactory().getCurrentSession();
session.beginTransaction();
session.save(test1);
session.save(test2);
session.save(test3);
...
0
votes
1answer
126 views
How to auto fill a primary key(surrogate) column using hibernate
I have a column named 'uniqueid' for which i need to enter only even numbers in increment fashion. I am using Hibernate for inserting data into the table. I came across this feature in Hibernate where ...
1
vote
3answers
207 views
Generating unique reference number
Tech Stack: Java 1.6, JPA (Hibernate 3), Spring 3, Oracle 11g
I am working on a project where one of the requirement is to give back the customers a ‘ReferenceNumber’.
One option is to return the ...
0
votes
0answers
203 views
Persisting Uni-Directional OneToOne Relations with PrimaryKeyJoinColumn
I have 3 classes in a hierarchy.
Patient.java
...
@Id
@GeneratedValue(generator = "foreign")
@GenericGenerator(name = "foreign", strategy = "foreign", parameters = { @Parameter(name = "property", ...
0
votes
2answers
196 views
Hibernate second id
is it possible to define two keys in hibernate, so i can hit the first-level-cache with both keys?
@Entity
class User {
@Id
int id;
@Id
String username;
}
so session.get(User.class, ...
0
votes
1answer
636 views
@OneToOne bidirectional mapping with @JoinColumn
Let's say I have Person
class Person{
@Id Integer id;
@OneToOne
@JoinColumn(name = "person_id")
Job myJob;
}
and Job
class Job{
@Id Integer id;
Integer person_id;
...
1
vote
0answers
853 views
Hibernate identity primary key generator and foreign keys
Looked in many places and found that the hibernate with postgresql can use an IDENTITY primary key generator which maps into serial/bigserial table column. Suppose i have follow entity:
@Entity
class ...
0
votes
2answers
1k views
Finding the primary key field for Hibernate entity
Is it possible for us to find what are the primary key fields for a Hibernate entity programmatically (similar to JPA's PersistenceUnitUtil)?
0
votes
1answer
146 views
Hibernate Primary key exception
I have created a table in database using hibernate and one of the attribute(username) is a primary key.So when i try to insert duplicate values in the username i'm getting the following exception.Now ...
0
votes
1answer
635 views
Hibernate mapping primary key using the id of another class
I have two MySQL tables: User (with an auto-incremented pk id) and WaitingUser which is a list of a subset of users. WaitingUsers table cannot contain more than one occurrence of a user so the column ...
8
votes
1answer
514 views
Can i use BigDecimal as an id type in hibernate hbm?
i am using hibernate. it has id column with 20 precisions as below but of NUMBER type.
NUMBER(38,20) - this is the size given to id column of the table(Oracle database).
This id is generated by our ...
2
votes
1answer
2k views
Hibernate Single_Table persistence The entity has no primary key attribute defined on subclass
Good evening. I'm trying to map a class hierarchy to a single table using JPA/Hibernate and receive an error on my subclass stating "The entity has no primary key attribute defined". The classes are ...
1
vote
1answer
300 views
Hibernate find by Primary Key In List Direct to L2 Cache
I have an Entity with a simple long primary key.
I do a Query like: Select from table where primary_key IN (....);
Hibernate seems to want to do a query to get the Ids (that I just specified!) and ...
0
votes
1answer
184 views
How to transition an existing DB Schema without AUTO_INCREMENT primary key to a key with AUTO_INCREMENT?
I have an application which was developed with HSQL DB and the problem is that we are migrating it to MySQL with JPA/Hibernate.
The problem is that the old schema doesn't have an AUTO_INCREMENT ...
2
votes
1answer
1k views
Hibernate & postgreSQL with Grails
There is an easy way to set hibernate to use different primary key ids for each table with postgres?
I tried to use postgres dialect in DataSource:
dialect = org.hibernate.dialect.PostgreSQLDialect
...
1
vote
6answers
403 views
Database PK-FK design for future-effective-date entries?
Ultimately I'm going to convert this into a Hibernate/JPA design. But I wanted to start out from purely a database perspective. We have various tables containing data that is future-effective-dated. ...
1
vote
1answer
4k views
Multiple Primary Keys Table - Hibernate NonUniqueObjectException
I have a table with 2 primary keys (so the combination of both of them should be unique). The schema is like this:
TABLE="INVOICE_LOGS"
INVOICE_NUMBER PK non-null
INVOICE_TYPE PK non-null
...
2
votes
1answer
215 views
JPA: is it possible to change the PKs in an inheritance hierarchy?
I have the following DB design:
As you can see States, Countries, and Continents are all sub tables of GeoAreas. The interesting fact here is that States and Countries change their primary keys ...
1
vote
2answers
709 views
Seam/Hibernate/JPA — Duplicate primary key exception?
I've got an object model that is persisted using Seam and JPA (Hibernate). It looks something like this:
@Entity(name = "MyObject")
public class MyObject {
...
@Id
@GeneratedValue(strategy = ...
0
votes
1answer
297 views
Scalable sequential ID generator for related entities using @TableGenerator
I am writing a web-application where some IDs will be visible to the users in the URL. The application is meant to be used by more users having each an Account. An Account can then have Projects, and ...
2
votes
1answer
108 views
Do i need to make sql tables using constraint to work with hibernate
I am using hibernate annotations with spring MVC.
Now i always create table using GUI editor like SQLYOG or phpmyadmin.
So i just create table with columns and even if i have some tables primaray key ...
0
votes
1answer
758 views
Specify initial value of HSQLDB identity via annotation
Can I specify the initial value for an IDENTITY column using Hibernate/JPA annotations on top of an HSQLDB database? The relevant source code looks like this so far:
@Id
...
0
votes
2answers
424 views
Nhibernate PrimaryKey must be unique
I've set up a Nhibernate Project in C# with a Local SQLite Database, and if got an issue while saving my Nhibernate object, it says me that my primarykey is not unique, thats right but i added a ...
1
vote
2answers
982 views
How to create Id on hibernate entity that is a byte[] that maps to a varbinary value in mysql
I am trying to create an Entity that has a byte[12] id in hibernate. It seems like it does not like to have a byte[] as a primary key and as another column it sets it up as a tinyblob in the backing ...
2
votes
4answers
3k views
ManyToMany relationship using JPA with Hibernate provider is not creating primary keys
I've created two JPA entities (Client, InstrumentTraded) using Hibernate as a provider that have a ManyToMany relationship. After letting Hibernate generate the tables for MySQL it appears that the ...
0
votes
0answers
94 views
How do I tell Hibernate to create a primary key for a many-to-many relationship in an .hbm file?
How do I tell Hibernate to create a primary key for a many-to-many relationship in an .hbm file?
2
votes
2answers
2k views
How to create an entity with a composite primary key containing a generated value
Using Hibernate + annotations, I'm trying to do the following:
Two entities, Entity1 and Entity2.
Entity1 contains a simple generated value primary key.
Entity2 primary key is composed by a simple ...
7
votes
2answers
10k views
Hibernate/JPA and PostgreSQL - Primary Key?
I'm trying to implement some basic entities using Hibernate/JPA. Initially the code was deployed on MySQL and was working fine. Now, I'm porting it over to use PostgreSQL. In MySQL, my entity class ...
0
votes
1answer
369 views
Defining a particular strategy of ID generation in Grails
how i can define and use a strategy of ID (primary keys) generation for my domain classes ? I want to put a prefix for the primaryKey of some domain classes like customers and manufacturers based in ...
0
votes
1answer
233 views
Hibernate creates two primary keys when I only want one
I have a Hibernate class called Expression (simplified here for your viewing pleasure):
@Entity
public class Expression {
@Id
@GeneratedValue
private long id;
private String data;
...
1
vote
1answer
985 views
Mapping a Natural Key with Hibernate Annotations
I have a legacy table that uses a column that holds a date as the natural prmary key to the table. I am trying to map this with hibernate, but for the life of me I can't figure out how to get ...
9
votes
4answers
9k views
Hibernate/persistence without @Id
I have a database view thar yields a result set that has no true primary key. I want to use Hibernate/Persistence to map this result set onto Java objects. Of course, because there is no PK, I cannot ...
6
votes
3answers
14k views
Hibernate ID Generator
Anyone know of some good tutorials on how to create a custom ID generator for hibernate?
