Tagged Questions
The sessionfactory tag has no wiki summary.
10
votes
1answer
3k views
Hibernate SessionFactory vs. EntityManagerFactory
I am new to Hibernate and am unclear of whether to use a SessionFactory or EntityManagerFactory to obtain the hibernate session. What is the difference between the two? Pros & Cons?
4
votes
5answers
8k views
Multiple Session Factories under Spring/Hibernate
I have been given a requirement where I need to support multiple databases in the same instance, to support multi-tenancy. Each DB has an identical schema. The user logs into a specific database by ...
3
votes
1answer
104 views
Select distinct with Spring Hibernate Sessionfactory
this would be my query:
SELECT DISTINCT name FROM city;
this is my code at the moment:
public List<City> listCities() {
return sessionFactory.getCurrentSession().createQuery("from ...
3
votes
1answer
367 views
How to make this thread-safe
I have the following SessionFactory for Fluent NHibernate.
I am getting an error of
An invalid or incomplete configuration was used while creating a SessionFactory.
with an InnerException of
...
3
votes
1answer
425 views
Multithread issues in using Hibernate SessionFactory
Have a table 'temp' ..
Code:
CREATE TABLE `temp` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`student_id` bigint(20) unsigned NOT NULL,
`current` tinyint(1) NOT NULL DEFAULT '1',
...
3
votes
2answers
2k views
Ensure NHibernate SessionFactory is only created once
I have written an NHibernateSessionFactory class which holds a static Nhibernate ISessionFactory. This is used to make sure we only have one session factory, and the first time OpenSession() is called ...
3
votes
2answers
670 views
FluentNHibernate Session Management in ASP.NET
New to NHibernate(my disclaimer). I came across a similar and interesting article regarding MVC, however, I'm more curious as to what general best practices are for managing NHibernate sessions within ...
3
votes
1answer
2k views
Hibernate: Is it okay to not bind SessionFactory to a JNDI name?
There is a way to set the JNDI name of a SessionFactory in the hibernate.cfg.xml file. However, if I'm not explicitly using JNDI lookup to get my SessionFactory at all in my web app, is it okay to NOT ...
2
votes
1answer
105 views
NHibernate: Get all opened sessions
I have an ASP.NET application with NHibernate, for some reason few developers forgot to close the sessions in some pages (like 20 I think), I know that the best solution is to go through each page and ...
2
votes
3answers
164 views
NHibernate SessionFactory Thread safe Issue
So here is the problem. I have a common class library that holds all the repositories, domain and mapping files so the library can be reused within other web beased applications. Now within this class ...
2
votes
2answers
4k views
Spring + Hibernate with annotations: No Hibernate Session bound to thread
I'm new to Spring and I was trying to create a webapp with the following stack:
Apache Tomcat 7, MySQL, Spring MVC, Hibernate 3 with JPA annotations.
I am trying to learn by following the book ...
2
votes
4answers
1k views
How can I set Datasource when I'm creating Hibernate SessionFactory?
I'm creating SessionFactory and I have my datasource as object in code where I'm creating SessionFactory, but i cannot set datasource to Hibernate Configuration object. So how can I set my datasource ...
2
votes
1answer
3k views
Sping+Hibernate, Autowire sessionFactory into hibernate DAO
i have an hibernate DAO, in according with hibernate API 3 and spring 3.x I use simply a sessionFactory and NOT an HibernateDaoSupport+getHibernateTemplate() - i hope this is a good choice... -
Now ...
2
votes
2answers
407 views
SessionFactory - one factory for multiple databases
We have a situation where we have multiple databases with identical schema, but different data in each. We're creating a single session factory to handle this.
The problem is that we don't know ...
2
votes
3answers
296 views
how can i automatically generate a non id value in hibernate?
I am using hibernate annotations, spring, a sessionFactory and defining everything in a context.xml (like so..)
<bean id="mySessionFactory" ...
2
votes
1answer
200 views
What is a good way to setup CRUD methods and SessionFactory in Nhibernate?
I currently have a NHibernateHelper class which creates a session factory. I keep recieving errors saying 'Session Closed!'. Am I going about this in the wrong way? The error occurs when I call the ...
2
votes
2answers
4k views
Problems using eclipse Hibernate plugin - could not locate sessionfactory in JNDI
I'm using the reverse engineering capabilities built into the eclipse hibernate plugin to generate dao's and hbm.xml files for each table.
It does it quite well but when I try to use the generated ...
1
vote
2answers
46 views
Spring 3 integration testing - sessionFactory inicialization exception
When i run my spring junit test i got this error message :
Caused by:
java.lang.NoSuchMethodError: org/slf4j/impl/StaticLoggerBinder.getSingleton()Lorg/slf4j/impl/StaticLoggerBinder;
....
...
1
vote
2answers
77 views
No Hibernate session bound to the thread while using multiple transation managers
I have created two transaction managers(one for READ requests and another for READ-WRITE requests) and two session factories for the same.
Important snippets are as follows:
<tx:annotation-driven ...
1
vote
2answers
53 views
BeanCreationException while using two instances of Session factories
I have created two transaction managers(one for READ requests and another for READ-WRITE requests) and two session factories for the same.
Important snippets are as follows:
<tx:annotation-driven ...
1
vote
1answer
105 views
NHibernate & WCF: Performance (session reuse) vs. concurrency (simultaneous requests)
We are working on different integrations to a swarm of identically structured legacy databases that basically cannot be altered. For this, we added an auxiliary database for holding things like ...
1
vote
1answer
23 views
Manage multiple session factories for read replica and primary DB
In our application, we have two databases, one primary and the other read-replica, which is used just for reporting purpose.
Some part of our application reads-writes to primary DB whereas the ...
1
vote
2answers
54 views
Query Exception in Hibernate
I am using hibernate. I am using the given query to fetch information from db
Query q = session.createQuery("select m.menuId,m.menuType,it.itemId,it.name,it.price,it.currency," +
...
1
vote
1answer
111 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 ...
1
vote
2answers
97 views
“Property 'sessionFactory' is required” in Spring?
I have a problem with sessionFactory in Spring.
public abstract class GenericDao<T,PK extends Serializable>
extends HibernateDaoSupport
implements IGenericDao<T, Serializable> {
private ...
1
vote
2answers
100 views
Select single item from database with Spring Hibernate Sessionfactory
This is in my DAO:
public List<Weather> getCurrentWeather() {
return sessionFactory.getCurrentSession().createQuery("from Weather").list();
}
This gets all of the elements from table ...
1
vote
1answer
123 views
NHibernate: Recreate Database with SchemaExport
I have a question about correctly handling a recreation of a database.
In my dev environment I often recreate the database by using
_schemaExport.Drop(true, true);
_schemaExport.Create(createResult, ...
1
vote
3answers
512 views
Nhibernate session management strategy for web application with background-workers?
For a web application, it seems like a good way to handle the session is to use the setting <property name="current_session_context_class">managed_web</property>, call ...
1
vote
1answer
522 views
How to run multiple Hibernate SessionFactories with the SAME db schema using a distributed Ehcache
We have a system with n number of clients (55 at this time) where each client gets their own database all of which have the exact same schema. We are running hibernate 3.6.1 backed by a distributed ...
1
vote
3answers
1k views
getting hibernate default schema name programmatically from session factory?
I was wondering if there is a way to get the default schema name from session factory, somehow? The reason I need to get it is because I have to use a one native SQL and I have multiple session ...
1
vote
2answers
510 views
NHibernate - Distributed transactions and providing your own connection result in exception
NHibernate is throwning an exception when particpating in a distirbuted transaction and you've opened a session by specifying your own connection object.
Unhandled Exception: ...
1
vote
2answers
122 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 ...
1
vote
2answers
247 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 ...
1
vote
1answer
225 views
Instantiation failure and singleton-behaviour interaction [NInject1]
I have set up a NInject (using version 1.5) binding like this:
Bind<ISessionFactory>().ToMethod<ISessionFactory>(ctx =>
{
try
{
// create session factory, might fail ...
1
vote
1answer
2k views
Hibernate SessionFactory: how to configure JNDI in Tomcat?
that's how the session factory should be gotten:
protected SessionFactory getSessionFactory() {
try {
return (SessionFactory) new InitialContext()
...
1
vote
2answers
594 views
multiple session factories, one connection?
To avoid XA overhead I prefixed some table names from project A and rolled it out to be inside the same mysql database as project B so I can use the same connection - and hope to get full atomicity ...
1
vote
2answers
2k views
In Grails how do I access the hibernate session inside of a domain class static method?
I've read various articles on the web, but they seem rather scattered on this point. Exactly what do I need to do in my configuration and in my method to get the hibernate session. I'm trying to ...
1
vote
4answers
2k views
org.hibernate.HibernateException: No session currently bound to execution context
I'm trying to integrate Spring Security with Hibernate. I'm new to both technologies so I'm almost certainly taking too many steps at once here, but I'm at the point where I want to authenticate a ...
1
vote
2answers
226 views
Connect NHibernate to different databases with same schema
We are in the process of splitting our db into several smaller ones. The schemas will be exactly the same and we will control which db the system connects to when the client logs in. I receive an ...
1
vote
3answers
482 views
nhibernate session for different database servers with same entity
We use two databases in our web-application. One is located in USA and one is in Canada. You should see only the data based on your country. Now I think there will be a problem when it comes to create ...
0
votes
1answer
29 views
JBoss Hibernate conflict with SessionFactory and JNDI
I am starting a project using ICEFaces and Hibernate on a JBoss AplicationServer and now I am stuck getting Hibernate to work.
The problem is that my DAO classes cant get the SassionFacade.
I think ...
0
votes
1answer
45 views
Hibernate opening/closing session, the correct approach for DAO
I have written this Hibernate object DAO, however with this approach, it is using session per update approach (which I don't think it's right).
The reason why I don't think its right because I am ...
0
votes
0answers
22 views
Override default transaction manager from junit functions
We have 2 transaction managers.
<bean id="txManagerReadRequest"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ...
0
votes
0answers
78 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 ...
0
votes
1answer
42 views
Database not getting dropped with hibernate3-maven-plugin
I'm using the hibernate3-maven-plugin to generate my schema before running tests, and it is successfully creating the schema, but is not successfully dropping it.
My plugin configuration:
...
0
votes
1answer
157 views
migrating from HibernateTransactionManager to JpaTransactionManager
I changed the sessionFactory bean creation in an existing application because of various reasons from :
<bean id="sessionFactory"
...
0
votes
2answers
62 views
Initializing a sessionfactory after web application startup
in common, hibernate sessionfactory is created in spring configuration file (eg spring-dao.xml) like;
<bean id="mySessionFactory"
...
0
votes
1answer
91 views
InvalidDataAccessApiUsageException after switchin from sessionFactory to EntityManager
there were an existing application, which everything worked fine. But for various reasons I had to switch from sessionFactory "org.springframework.orm.hibernate3.LocalSessionFactoryBean" to the ...
0
votes
3answers
146 views
Spring Hibernate SessionFactory
How do you create a SessionFactory using the java config?
@Bean
public SessionFactory sessionFactory(){
AnnotationSessionFactoryBean sessionFactoryBean = new AnnotationSessionFactoryBean();
...
0
votes
1answer
112 views
how to use multiple datasouce and sessionFactory during a junit runtime test
How to use multiple datasouce and sessionFactory during a junit runtime test?
I use hibernateDaoTemplate for persistence, and my structure is right down here:
I just want to get, say, products from ...