The sessionfactory tag has no wiki summary.
0
votes
2answers
4k 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 ...
2
votes
3answers
2k 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;
....
...
0
votes
1answer
3k 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 ...
1
vote
2answers
770 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
519 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 ...
2
votes
1answer
1k 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
170 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
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 ...
0
votes
1answer
327 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
2k 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
724 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"
...
1
vote
2answers
124 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
1k 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 ...
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 ...
1
vote
4answers
6k 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
1k 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 ...
1
vote
2answers
593 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 ...
2
votes
1answer
349 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 ...
0
votes
1answer
2k views
Spring AutoWired and SessionFactory
Here is My Exception
Exception in thread "main" java.lang.IllegalArgumentException: Property 'sessionFactory' is required
at ...
2
votes
2answers
2k 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 ...
3
votes
1answer
674 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 ...
0
votes
1answer
709 views
How to configure this code as spring Bean?
I have this code:
SessionFactory sessionFactory = new Configuration().configure("hibernate.cfg.xml");
How i may to configure this as bean?
hibernate.cfg.xml contain this:
<?xml version="1.0" ...
2
votes
3answers
2k 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 ...
0
votes
1answer
125 views
Java app as windows service with database connection
i'm trying to run java application as a windows service with tomcat 7. in this application i have database connection to MySql with Hibernate. when i ran the tomcat it stops in this line:
...
0
votes
2answers
1k views
Hibernate is giving Session is closed exception
I am using Hibenate along with Struts 1.3 I am getting an error "org.hibernate.SessionException: Session is closed".
Here is the HibernateUtil:
private static Logger log = ...
2
votes
1answer
1k views
Programmatically create SessionFactory in Spring
Suppose I programmatically create a AnnotationSessionFactoryBean and set the various properties correctly. How can I then extract the Hibernate SessionFactory, since all methods that pertain to ...
0
votes
3answers
460 views
Castle.Windsor and data access object with webforms asp.net
I've create a sample project trying out some new patterns, namely Dao and IoC.
My Dao is defined as follows:
public class Dao<T> : IDao<T>
{
protected NHibernate.ISessionFactory ...
0
votes
1answer
639 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
1answer
222 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, ...
0
votes
2answers
184 views
NHibernate: does building the session factory involve connecting to the database?
Following a migration of a database to a new server, my working copy cannot connect to the database anymore. But I'm experiencing something I didn't expect. Whenever a page in the application attempts ...
1
vote
3answers
2k 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
0answers
257 views
Accessing ISessionFactory using Castle ActiveRecord's SessionScopeWebModule
I have a website using an old build of Castle ActiveRecord (NHibernate 1.2). Upgrading at this time is not really an option but I'm trying to work through some performance issues. I have been using ...
0
votes
2answers
442 views
Fluent NHibernate? Am I doing this correctly?
I am new to using Fluent NHibernate and NHibernate for the first time. I've used a custom written mapper since about 2000 that was written in house. Made a switch to LinqToSQL about 2 years ago, and ...
40
votes
2answers
13k 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?
0
votes
1answer
656 views
Named singleton instance in StructureMap with multiple nHibernate Session factories (StructureMap 2.5.4)
I have the exact identical scenario as described in Named singleton instance in StructureMap (Multiple nHibernate session factories)
If I implement this using StructureMap 2.6.2 - great!
However, I ...
4
votes
1answer
917 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
...
1
vote
1answer
1k 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 ...
0
votes
2answers
2k views
Hibernate and Spring - load operations do the trich, update/delete operations don't
I've been following this tutorial:
http://www.scribd.com/doc/25244173/Java-Struts-Spring-Hibernate-Tutorial
The setup (described ahead) was working fine with the tutorial files, but when I have made ...
5
votes
3answers
16k 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 ...
4
votes
1answer
1k 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
3answers
4k 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 ...
0
votes
1answer
548 views
nhibernate sessionfactory instance more than once on web service
I have a web service that use nhibernate. I have a singleton pattern on the repositorry library but on each call the service, it creates a new instance of the session factory which is very expensive. ...
0
votes
1answer
598 views
Nhibernate Error: BuidSessionFactory() Deadlock / Dropping Connection
Good afternoon,
I have been stuck on this issue for a number of days now and I don't feel my understanding of Nhibernate / SQL Server is of enough so that I might figure it out.
The issue is that ...
5
votes
4answers
7k 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 ...
1
vote
1answer
929 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: ...
2
votes
1answer
11k views
Spring+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 ...
0
votes
1answer
602 views
Spring Config for Hibernate Session
Hi
I'm trying to obtain hibernate's Session through Spring's injection.
Here's my spring context xml:
<!-- hibernate's session factory -->
<bean id="sessionFactory"
...
-1
votes
3answers
600 views
0
votes
1answer
301 views
Castle Windsor: master controller not resolving the registered components in the container
Having the code below in my Global.asax.cs and two controller (one based on a the other: MasterController) I don't seem to find how can I resolve the repository register in my WindsorContainer from ...
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 ...
