Tagged Questions
0
votes
2answers
32 views
Issues with my criteria query when calling SQL created function
In my Postgres 9.1 database I have a li table that is mapped by ORM (Hibernate) in the following Li class:
package a.b;
@Entity
@Table(name = "li", schema = "public")
...
2
votes
1answer
111 views
Cannot insert NULL values into database
We use JPA to load/persist our entities in a prostges database. In one case i must persist a entity with a native query. Heres is the code:
String sql = "INSERT INTO recording ...
2
votes
2answers
183 views
Mapping postgreSQL JSON column to Hibernate value type
I have a table with a column of type json in my postgreSQL DB (9.2). I have a hard time to map this column to a JPA2 Entity field type.
I tried to use String but when I save the entity I get an ...
3
votes
2answers
159 views
Why should I specify @Column( nullable = false )?
I have an entity annotated with @Entity.
If I am responsible for creating the CREATE TABLE scripts why should I specify @Column( nullable = false ) when I can create a column in the database with the ...
0
votes
1answer
187 views
How to use a native db operator (postgres ~ ) with JPA criteria builder?
I am using JPA 2.0 criteria to build the following query (simplified):
select n from notif n where n.message ~ 'b.*la'
I am using postgresql db, and I really need the ~ operator,not like. Is there ...
1
vote
1answer
164 views
JPA 2.0 native annotations for cascading deletes of a one-way relationship
This question is related to this in relation to the fact that I have a one-way @ManyToOne relationship between child and parent. There are hundreds of thousands of child entries, and I do not want the ...
0
votes
1answer
727 views
How to map postgresql “timestamp with time zone” in a JPA 2 entity
I have a JPA 2 application ( with Hibernate 3.6 as the JPA implementation ) that uses Postgresql ( with the 9.0-801.jdbc3 JDBC driver ).
I am having trouble mapping "timestamp with time zone" fields ...
0
votes
2answers
231 views
Using UUID with EclipseLink and PostgreSQL
I want to use the PostgreSQL uuid type for objects' primary keys.
For that I've created a converter (implementing the Converter interface).
Bellow is the relevant code:
@Override
public ...
0
votes
1answer
191 views
MySQL or PostgreSQL for Hibernate + JPA2 project [closed]
I want to confirm which is better, I have seen that polls say that PostgreSQL is way ahead of MySQL in terms of speed with JPA/Hibernate.
Want some feedback based on speed, reliability, compatibility ...
1
vote
2answers
577 views
How to do a like case-insensitive and accent insensitive in PostgreSQL and JPA 2?
I have a Java EE project using PostgreSQL 9.X and JPA2 (Hibernate implementation).
How can I force a like query to be case insensitive and accent insensitive?
I'm able to change the charset of the DB ...
2
votes
1answer
462 views
hibernate 4.1.7.Final with unknown table id in order by mapping
i am trying to upgrade to hibernate 4.1.7.Final from 4.0.1 and i am getting the following errors:
Failed to start service jboss.persistenceunit."****/********": org.jboss.msc.service.StartException ...
2
votes
2answers
215 views
JPA2 Criteria API creates invalid SQL when using groupBy
JPA2 with the Criteria API seems to generate invalid SQL for PostgreSQL. For this code:
Root<DBObjectAccessCounter> from = query.from(DBObjectAccessCounter.class);
Path<DBObject> object = ...
0
votes
2answers
137 views
Adding entity doesn't refresh parent's collection
the question and problem is pretty simple, though annoying and I am looking for a global solution, because it's application-wide problem for us.
The code below is really not interesting but I post it ...
0
votes
1answer
287 views
JPA Postgres insert Bit(4) with default value
I've got Postgres DB, Java with JPA 2.0 and eclipseLink.
In my To object:
@Column(name = "mask")
private Boolean mask;
IN DB:
mask bit(4) DEFAULT B'1000'::"bit",
When I ...
3
votes
3answers
329 views
How access a @Lob field from an EJB3 extended persistence context
We're developing a project in JaveEE6, using EJB3 beans and JPA2 annotations.
We have some stateful EJB3 beans that use extended persistence context in order to display the database entities to the ...
1
vote
1answer
287 views
Store JSON as a field in PostgreSQL with Spring Data JPA
I want to have a specific table with two columns, an ID and a field in which I'll store a JSON object. And I'm using Spring Data JPA.
I'm thinking of something in this line, but I'm not sure:
...
1
vote
1answer
484 views
What database and java library to use for Spatial Analysis?
I have been working on a web project that stores locations for users. The project uses currently MySql 5.5 and JPA 2 for mapping the relation database, together with EJB 3.1 as the middle tier. I ...
5
votes
2answers
380 views
Store Map<Enum, Enum> as String
I need help with storing a map in JPA2, where both keys and values are enums (Map<Enum, Enum>). With Hibernate as my JPA provider it stores the enums as a blob but I need the data stored as ...
1
vote
2answers
972 views
month() function and year() function in postgresql through jpa2
How to get the month and year of a postgresql date field using jpa2 criteria query or jpql?
Has anybody done this?
2
votes
1answer
163 views
How do I express this constraint with JPA?
I have a class that looks like this:
public enum Scope {
A, B, C...
}
@Entity
public class User {
...
Scope scope; // enum, see above
@ElementCollecton
List<Long> numbers;
...
0
votes
1answer
286 views
EclipseLink refuses to map native query on PostgreSQL to entity
I have a JPA entity class (one of many) and I can run JPQL queries on it, returning that entity without any problem. However, when I attempt to run any named native query that selects all the fields ...
2
votes
2answers
956 views
Hibernate Criteria Query like operator on CLOB (Postgres 8.4)
I have a criteria query not really working. Here the model:
@Entity
public class Flaw extends BaseEntity implements Serializable {
...
@Lob
@Basic(fetch=FetchType.LAZY)
private String ...
2
votes
4answers
3k views
Weird id values in Postgresql with JPA 2 Sequence generation
The entity has the following annotations on the id column:
@Id
@SequenceGenerator(name = "JOB_MISFIRE_ID_GENERATOR", sequenceName="job_misfire_sequence", allocationSize=10)
...
2
votes
2answers
850 views
sql error running JPQL query using the IN operator
i have the following 2 JPA classes:
@Entity
public class AnalysisPolicy {
private Set rules;
//stuff omitted
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
public Set ...
6
votes
3answers
3k views
Triggers vs. JPA @PrePersist for creation and update timestamps pros and cons
I am building a new web app and I am using Spring, JPA/Hibernate, and Postgres. Some of my tables have creation_ts and lastupdate_ts columns which are timestamp columns that track when an insert ...
1
vote
1answer
2k views
jpa Hibernate @ElementCollection
I have a question which bothers me a bit.
When i use @ElementCollection in my entity hibernate (3.5) generates me a table without any constraints.
Important Edit
My Entity is a subclass of ...
3
votes
1answer
2k views
Problem with @Temporal(TemporalType.DATE)
Hi I want to map a field in my Java class
@Column(name = "date_of_birth")
@Temporal(TemporalType.DATE)
private Date dateOfBirth;
to a field in my table :
date_of_birth date,
but now when I try ...
2
votes
1answer
8k views
JPA 2: multiple column usage in foreign keys
I am using Hibernate as persistence provider and modelling my entities with JPA 2.
Now a question came up and i hope you can help me.
In my application you can open up a Game, create groups of ...
4
votes
7answers
5k views
Avoid insert 'null' values to database table via JPA
im starting with JPA2 and feel quite comfortbale so far. But I have a problem when persisting Entities with null property values for NON NULL database fields with default value.
I would like to be ...
3
votes
2answers
1k views
Why is JPA choosing String for JoinColumn regardless of key types?
Using the EclipseLink JPA2 implementation (not sure if it's the same with the Hibernate implementation)
I have a simple structure where an Organization entity has contracts. Here's the sql I ...
1
vote
1answer
1k views
Netbeans code for Postgresql and Eclipselink - identifying relation question
I have the following database tables:
party, with a pk "pty_id" connected to a sequence for generating pk values.
person with a fpk "prs_pty_id" in an identifying relation to party.pty_id.
company ...
4
votes
4answers
6k views
Hibernate schema parameter doesn't work in @SequenceGenerator annotation
I have the following code:
@Entity
@Table(name = "my_table", schema = "my_schema")
@SequenceGenerator(name = "my_table_id_seq", sequenceName = "my_table_id_seq",
schema = ...