1
vote
3answers
33 views
Hibernate and order by using column values
Is there a way I can pull off the below query (order by followed by a like) using hibernate criteria api?
select * from table where first_name like 'bar%' order by first_name like 'bar%' desc
0
votes
1answer
13 views
Thread deadlock blocked on Hibernate transaction
I have one process which creates a database entity and then launches a second process. It then waits on the second process to find and update the database entity before completing its processing, and …
0
votes
2answers
33 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 …
1
vote
5answers
121 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;
…
1
vote
1answer
141 views
Hibernate session problem for transactions.
Hi all,
I am new to hibernate and trying integrate hibernate with an existing spring based application.
I configured session factory and transaction manager, transaction proxy template.
I am also …
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
356 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
114 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 …
1
vote
3answers
67 views
Generating simple crud applications in Spring based off existing database or hibernate configurations?
I'm attempting to learn Spring MVC but have been spoiled by Grails. While I am able to get a basic web application working I was wondering if there were any tools that could do some of the work to …
1
vote
5answers
45 views
Hibernate, save the previous state of an object
Is there any generally accepted, proven-to-work way using hibernate, that keeps a history of an entitys changes in the database?
We need to keep track of quite some objects and we want to be able to …
0
votes
1answer
17 views
Hibernate sort by properties of inner bean ?
In my domain model I have following Classes.A 'UserProfile' has one 'SecurityPrincipal'
class SecurityPrincipal{
private String loginId;
private String password;
private Date registeredData;
…
-1
votes
2answers
56 views
An erlang database schema generator
Is there a way I can generate a database schema from an erlang application like I can do with hibernate.
0
votes
1answer
64 views
+100
managing classes when everything is relative to a user in nhibernate (orm)
Firstly I have three entities.
Users, Roles, Items
A user can have multiple Roles.
An item gets assigned to one or more roles.
Therefore a user will have access to a distinct set of items.
Now …
1
vote
2answers
36 views
Hibernate displaytag big lists
Hi there,
I'm using displaytag to build tables with data from my db. This works well if the requested list isn't that big but if the list size grows over 2500 entries, fetching the result list takes …
0
votes
1answer
238 views
What’s the default value of the Hibernate property hibernate.jdbc.factory_class?
I want to provide a custom Batcher for Hibernate to use (for this reason: http://stackoverflow.com/questions/83093/hibernate-insert-batch-with-postgresql), but I want to create a modification of …
