Tagged Questions
0
votes
1answer
286 views
spring 3.1 hibernate 4 without persistence.xml - multiple datasources (no web application)
I am trying like this:
Properties hibernateProperties = new Properties();
hibernateProperties.setProperty("hibernate.dialect", "org.hibernate.dialect.MySQLDialect");
...
0
votes
1answer
592 views
buildSessionFactory in Hibernate alternatives
I am following this tutorial on Hibernate. The tutorial is quite old already since it still uses the old buildSessionFactory().
My Question is how would I use the latest ...
0
votes
0answers
53 views
Unable to retrieve changes in hibernate entity
I am writing a TestNG test to test an update method that I wrote.
The test is annotated with this annotation:
@TestExecutionListeners({ TransactionalTestExecutionListener.class })
The test ...
1
vote
0answers
1k views
Spring + Hibernate + JPA: How to reload EntityManagerFactory at runtime
I have been searching for this the last few hours maybe some of you can help me.
I try to achieve a reload of my mapping info in EntityManagerFactory (or SessionFactory) at runtime in spring
The ...
2
votes
1answer
1k views
ORM library jar into spring application to define a 'sessionFactory'
Problem
I can't define a correct sessionFactory bean in my project and fails web application initialization.
Log output
Caused by: org.springframework.beans.factory.BeanCreationException: Error ...
0
votes
1answer
638 views
Can't find Hibernate's SessionFactory in my Glassfish app server
I'm just playing around with implementing Hibernate as persistence provider in Glassfish application server. I already configured JNDI datasource, connection pool etc. My Hibernate config is as ...
1
vote
2answers
146 views
ISession per Request (Only when necessary)
I'm developing an application (asp.net mvc) and I'm using ISession per request (in globa.asax I use Bind and Unbind in Begin_Request event and End_Request event). Everything works fine but sometimes ...
2
votes
2answers
383 views
Runtime one-way mapping of n tables to 1 class in Hibernate
I have data in different tables but in the same database, all of which have the same schema. Depending on some runtime variable, I want to choose which table to use when querying Hibernate. Is this ...