0
votes
0answers
5 views
schema2ddl generates wrong datatype for YesNoType
As per docs org.hibernate.type.YesNoType is supposed to generate char(1) during schema2ddl generation. But the following definition generates char(255) by default for databases like H2, MySQL
…
0
votes
2answers
22 views
java.lang.NoSuchMethodException: com.mchange.v2.c3p0.PoolBackedDataSource.setUserOverridesAsString(java.lang.String)
Hi all.
I'm using C3P0 0.9.1.2 to configure data sources for my connection pool.
When context is loading an error is raised. Here is the trace:
java.lang.NoSuchMethodException: …
0
votes
1answer
19 views
Using outer joins in HQL queries
I'm trying to build a query using HQL and OUTER JOINs and just can't get it work. Consider the following mapping
<class name="Parent">
<id name="id" type="integer">
…
1
vote
1answer
4 views
@UniqueConstraint check across multiple tables in JPA
Campus has @OneToMany Buildings Building has @OneToMany Rooms.
Room names needs to be unique within a campus
(e.g. campus-A, block-A, room-A and campus-B, block-A, room-A should be possible to store) …
0
votes
1answer
15 views
Web application with Hibernate and ColdFusion8 goes up to 99% of the CPU.
Hi there.
We have an application with ColdFusion 8 (the latest official release fully updated) in unix environment that the CPU sometimes goes up to 99%.
Sometimes it takes days, and other times it …
0
votes
2answers
45 views
Tool for monitoring Hibernate cache usage
Is there any tool which would allow for monitoring Hibernate 2nd level cache usage? I know that I could use Hibernate API for retrieving such information. But what should I do when I have application …
0
votes
1answer
14 views
unique constraint check in JPA
I am enforcing a unique constraint check in JPA for userid column which is enforced for all records in the user table.
@Table(name = "user",
uniqueConstraints = @UniqueConstraint(columnNames = …
1
vote
1answer
23 views
JPA @VERSION how to use it?
@Entity
public class Person {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
private int salary;
@Version
private long version;
// ...getters and …
0
votes
1answer
18 views
Hibernate problems with Auto Increment ID MYSQL 5
So, I just stood up a Spring Hibernate app and I can't seem to get my mapping file right. I am using MySql 5 and an auto incrementing key. Here is the ID portion of my mapping file.
…
0
votes
2answers
20 views
config ehcache.xml for jpa entity or use annotation?
when using ehcache rather than defining statement like
<cache name="testonly.package.model.TestPOJOcategory"
maxElementsInMemory="200"
eternal="true"
…
0
votes
2answers
32 views
hibernate cache strategy
how to decide whitch CacheConcurrencyStrategy to use? NonstrictReadWriteCache, ReadOnlyCache, ReadWriteCache, TransactionalCache . I read …
1
vote
4answers
62 views
cannot do 2nd level cache
in my applicationcontext.xml
<bean id="annotatedsessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="packagesToScan" …
1
vote
1answer
17 views
Workarounds for unresolved hibernate bug when embedded collections contain collections?
When using hibernate, I get a ConcurrentModificationException when I have an entity A that contains an embedded collection of B, where each element of B contains a collection of Strings. In other …
0
votes
1answer
32 views
autocommit and @Transactional and Cascading with spring, jpa and hibernate
Hi,
what I would like to accomplish is the following:
have autocommit enabled so per default all queries get commited
if there is a @Transactional on a method, it overrides the autocommit and …
1
vote
2answers
23 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 …
