The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
6k 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
512 views

Problems with Spring and Hibernate SessionFactory: Domain object scope restricted to session

I have been using the session factory (Singleton Bean injected into the DAO objects) in my Spring/Hibernate application, I am using the service layers architecture, and I have the following issue: ...
1
vote
2answers
638 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
2answers
251 views

Spring DataSource with embedded HSQL in memory database and hibernate create-drop ordering on Linux

I am using Spring 3.1 with annotations to create a DataSource that uses embedded HSQL. @Bean public DataSource dataSource() throws Exception { EmbeddedDatabaseFactoryBean bean = new ...
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', ...
1
vote
1answer
63 views

Setting property reference for a bean programmatically

Right now i am using the following bean entry <bean id="Service" > <property name="target"> <bean class="someClass" lazy-init="false"> <property ...
1
vote
1answer
190 views

Multiple Hibernate data sources

I have a project that currently uses 3 databases on the same database server. One of the databases has now been moved to another physical server and I'm trying to get hibernate to handle this but ...
1
vote
1answer
169 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
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
1answer
54 views

SessionFactory init null pointer spring 3+ hibernate 4+

i have a weird problem spring is returning null when he is trying to init the sessionFactory. I did not inject in my code it throw null when the context is init. import java.util.List; import ...
0
votes
1answer
24 views

Hibernate session management

I'm using hibernate and have some trouble in how to use session, with is best method : -> use one session and open it in singleton public static CommonServiceImpl getInstance() { if (session == ...
0
votes
1answer
135 views

rest webservice - DAO layer and webservice integration, sessionfactory null exception

We develop a project in mvc with Java. we want to add a rest web service to our project, but when we want to access DAO layer we get sessionFactory is null exception. How can we inject DAO over web ...
0
votes
1answer
44 views

Nhibernate BuildSessionFactory Null Exception

I'm getting BuildSessionFactory null exception. Using Nhibernate 3.3.3.4000 , .NET 4.5 , MVC 4 and; ISessionFactory sessionFactory = new Configuration().Configure().BuildSessionFactory(); When ...
0
votes
1answer
154 views

Error creating bean with name 'sessionFactory' - Spring/Hibernate

I'm trying to make Spring and Hibernate 4 work together but those errors appeared : log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader). log4j:WARN ...
0
votes
1answer
345 views

hibernate sessionFactory not found but bean loaded

I've searched internet and debugged for a couple of hours but i'm stuck on finding whats wrong. I have the follwng webapplication setup: Jetty 8.1.0.v20120127 Spring-orm 3.1.2.RELEASE Spring-web ...
0
votes
1answer
140 views

Insert into Multiple Database in same transaction

Hello Folks, I have a requirement like i have to perform CRUD operations in(to) different DataBase say SQL and ORACLE, in same transaction. Is there a way to achieve that ? (1) Is it possible to ...
0
votes
1answer
556 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
1answer
221 views

Hibernate Sessions

I have a problem during studying Hibernate. I wrote UnitTest and there i try to add object into DB. All selects are working properly, but insert not working so. public class HibernateTutorial extends ...
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 ...
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
1answer
124 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
1answer
594 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 ...
2
votes
0answers
226 views

how to use SessionFactory.getCurrentSession() correctly?

@Test public void testGetCurrentSession(){ Session firstSession=HibernateUtil.getSessionFactory().getCurrentSession(); Session ...
1
vote
0answers
33 views

Hibernate - Open session per view with multiple sessionfactories

Does anyone have any examples for how to implement open-session-per-view pattern with multiple sessionfactories. My application queries 3 databases. Some views need to be rendered by calls to all ...
1
vote
0answers
379 views

No matching bean of type [org.hibernate.SessionFactory] found for dependency

I'm a beginner in the Spring MVC. I encounter a problem "No matching bean of type [org.hibernate.SessionFactory] found for dependency: expected at least 1 bean which qualifies as autowire candidate ...
1
vote
0answers
19 views

Better option than multiple SessionFactories for multiple datasets?

I have an import app where the user hands me a dataset(s) (in my case a data-dump of a stackexchange site) and a table prefix, and I need to create the tables and import the data. However the only ...
1
vote
0answers
148 views

HibernateListener-Class not found error

I am trying to create hibernate listener.I was created listener by help of this article.http://www.developer.am/documentation/struts2/?page=struts-2-hibernate-integration-example In web.xml i ...
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 ...
1
vote
0answers
256 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
0answers
58 views

dynamically add entity packages to packagesToScan property of hibernate

I have several jar project which are depended inside, and one transactionManager in Core jar project, So i want to add entity packages to packagesToScan property of hibernate but i do not want to use ...
0
votes
0answers
25 views

How to create EntityManager from DataService?

I have: @ Resource DataService dataService; @ Resource AnnotationSessionFactoryBean sessionFactory; @ Resource HibernateTransactionManager transactionManager; I need an EntityManager. Is there a ...
0
votes
0answers
40 views

Java web service replicating data from master database to slave database

I am writing a Java RESTful web service using Spring 3.0 and Hibernate 3. This web service will replicate a selected master database tables to the same selected slave database tables. I know I will ...
0
votes
0answers
39 views

Configure custom session factory for hibernate in jboss5

The company I'm working for has a custom session factory (yes, they are that creative). In the old jboss4 it was easy to use, within the har file there was a META-INF\jboss-service.xml <mbean ...
0
votes
0answers
52 views

Data is not inserted in database after template.save(object)

I have reinitialize the Session Factory and now I want to insert the data into database using this newly initialized Session Factory using Hibernate , but I am getting Error that "no hibernate session ...
0
votes
0answers
78 views

WrappedDeploymentException: org.hibernate.SessionFactory on WebLogic

everyone! Have received "weblogic.application.WrappedDeploymentException: org.hibernate.SessionFactory" on server start and even don't know where to find the solution. Code with SessionFactory: ...
0
votes
0answers
334 views

No Session found for current thread in Spring mvc 3.1.1 and Hibernate 4.1.9

I try to integrate Spring 3.1.1 with Hibernate 4.1.9 into my web application, and it run good. However, after trying to use Hibernate-generic-dao (I modified it to compatible with Hibernate 4) and ...
0
votes
0answers
140 views

Rebuilding Hibernate 4 SessionFactory at runtime

...is this possible? My app may receive HBM XML at runtime, and we need to add those entities. It's rare, but needs to be a possibility. Worked for Hibernate 3 because we wrapped the real ...
0
votes
0answers
445 views

No matching bean of type [org.hibernat e.SessionFactory] found for dependency

I have been trying to inject dependencies via annotations.For some I have been successful but for one bean GenericDAOHibernateImpl,all my efforts were failures. Here is the stack trace :- SEVERE: ...
0
votes
0answers
165 views

Double abstract class inheritance and failed to create sessionFactory (hibernate)

I'm working on Hibernate and i need two abstract classes. First one, Product is the main one and there should be no table on the database named product. Second abstract class is ComPart(inherited from ...
0
votes
0answers
178 views

Populate a mysql database using POST method of RESTful Web Services

I am trying to create a restful webservice with Hibernate3/JPA that will be used populate a mysql db. I want to know how the post annotation will look like. I am new to Rest web services. I appreciate ...
0
votes
0answers
98 views

BreanCreationException on creating a bean

How come I am getting these error? SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener ...
0
votes
0answers
224 views

Setting Username/Password programmatically at data source (multiple DSs, Spring, Hibernate)

I'm working on a multi-datasource web portal, using Struts2, Spring and Hibernate. I have a problem with setting the user credentials, which are not available on application startup, but on user ...
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 ...
0
votes
0answers
122 views

Spring + Hibernate4 Error CurrentSessionContext is always null

I'm using Hibernate 4 with spring 3.1 in a simple java Apllication. I use the following code to create the Spring SessionFactory and then convert it into a hibernate SessionFactory: pls waht is ...
0
votes
0answers
59 views

Strange 150ms latency after hibernate session is opened

i am using hibernate 3.6, hibernatetemplate, hibernateDaoSupport, opensessioninviewfilter and mysql db, i took a look at my query performance and i found that every query take more or less 300ms to ...
0
votes
0answers
185 views

hibernate sessionfactory returns null session

I am new to hibernate and trying to configure with spring. below code gives nullpointer Session session = sessionFactory.openSession(); While trying to print session , looks like session factory ...
0
votes
0answers
137 views

Web application getting stuck when creating SessionFactory

I'm building a web application on JBoss 4.2.3.GA using Hibernate 4.1.5.SP1. For some reason, my application gets stuck when trying to create my session factory. The code is below … ...
0
votes
0answers
96 views

exception while using @Resource annotation

I am trying to inject hibernateTemplate using @Resource annotation in my dao class but when I run the class I am getting following exception. Caused by: ...
0
votes
0answers
117 views

Error persisting groovy loaded entites

I have a problem in persisting groovy loaded entities. From debugging, I found that the session factory is able to load the classes. But it fails when saving the entity with the following error. ...
0
votes
0answers
191 views

TreeCache issue when creating a new Hibernate session factory

I am using a Hibernate 3.1.13 with jboss-cache 3.2.5 I'm running my application with second level caching enabled and in middle of the application (based on user operation ) I am closing the existing ...

1 2