The sessionfactory tag has no wiki summary.
0
votes
0answers
23 views
Hibernate doesnt save files to database
I am trying to save files to derbi database (tables are not created).
My cfg.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
...
0
votes
0answers
5 views
Hibernates-4.2 -Initial SessionFactory creation failed.java.lang.ExceptionInInitializerError c.C.S.C.D.D.DBConnector.sendQuery.173
below is the snippet code from my Java file but after printing label:1 , its giving me exception.
try{
logger.debug(Logger.formatLog("label:1"));
...
4
votes
4answers
139 views
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/hiber nate/cfg/Configuration
I created a project in Eclipse and executed it succesfuly (It's a normal project, without Maven or Beans, really simple), I created a .jar with the project and tried to execute it but it throws the ...
0
votes
1answer
40 views
Spring Hibernate database query not working
Got this line to get list of "modules" by "course_id" from the database:
return sessionFactory.getCurrentSession().createCriteria(Module.class).add(Restrictions.eq("course_id",course_id)).list();
...
0
votes
1answer
69 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
36 views
Hibernate session management
I'm using hibernate and have some trouble in how to use session, which is best method :
-> use one session and open it in singleton
public static CommonServiceImpl getInstance() {
if (session ...
1
vote
1answer
48 views
Error after .getCurrentSession() with Hibernate Spring
When getting Session with .getCurrentSession() getting the following error.
Error:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'miniVLEController': ...
0
votes
1answer
67 views
Hibernate SessionFactory Annotation Error
Getting this error. Tried everything to resolve it. Looked through tonns of similar questions, but no result. Maybe one of you guys may spot the error? Thank you in advance.
Error log:
...
1
vote
1answer
66 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 ...
0
votes
1answer
162 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 ...
1
vote
1answer
42 views
ISessionFactory object thru Appdomain bondaries
(I'm a little hopeless about this question, since I haven't found any article pointing to what I want).
Anyways:
Is there any way to share a single ISessionFactory (SessionFactoryImpl) between ...
0
votes
0answers
63 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
1answer
49 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
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 ...
1
vote
0answers
35 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
4answers
126 views
SessionFactory injection isn't working
My SessionFactory isn't being injected to SessionFactory variable. My configuration is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
1
vote
0answers
436 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
1answer
27 views
NHibernate Override ISession for Faking the Database during testing
I am working on a project that has over 2000 integration tests that full circles the database. I want to speed up the process so I thought why not fake the database.
We are using Fluent NHibernate as ...
0
votes
1answer
108 views
how does hibernate sessionfactory manage session?
all! I have just got the relationship between Hibernate Session and Connection.
But now, I get another question: how does hibernate sessionfactory manage session?
In the following code segment: ...
0
votes
1answer
73 views
SessionFactory bean creation failed (ClassCastException is thrown)
I am trying to create a SessionFactory bean. My code is as follows:
@Bean
public SessionFactory sessionFactory() {
return new ...
0
votes
0answers
42 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
43 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
1answer
183 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
206 views
Access sessionFactory using Jboss Jndi lookup e.g. java:/hibernate/SessionFactory
I'm trying to access sessionFactory using Jboss7.1.1.Final Jndi lookup under maven.
While deploying it I'm getting in log following
17:28:33,670 INFO [org.hibernate.cfg.Configuration] ...
0
votes
0answers
54 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
84 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:
...
1
vote
2answers
234 views
Configure sessionFactory with Spring, Hibernate and LocalSessionFactoryBuilder
I'm trying to create sessionFactory bean using spring 3.2 and hibernate 4. I used the following code for that. But the problem is buildSessionFactory() is deprecated and the ...
0
votes
0answers
356 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 ...
1
vote
1answer
150 views
Autowired Hibernate Template lost session in when used in threads
I am working on a spring hibenrate application and stuck at a point.
I have only 1 controller having only one service. service update the data in the database and returns it updated id to the client ...
1
vote
0answers
149 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
votes
1answer
151 views
'Configuration().configure().buildSessionFactory()' returns a SessionFactory's object which is an interface not implemented by Configuration class? [closed]
How does the line Configuration().configure().buildSessionFactory() returns a SessionFactory's object which is an interface not implemented by Configuration class?
0
votes
1answer
86 views
Creating sessionFactory in Hql-Initialization
I have create a dbadapter for delaing with hibernate.Actually my class looks like this..
public class DBAdapter {
private static SessionFactory factory;
private static final ...
0
votes
1answer
94 views
Hibernate hql and session management
this week i learned to program hibernate and i'm not shure if my approach is the right. I read a lot of articles and every hibernate article looked a bit different. I'm using Hibernate 4, is this the ...
0
votes
0answers
143 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
3answers
549 views
Spring + Hibernate with annotations: how to bind Hibernate Session to thread?
I am new to Spring and I am trying to create a login page that uses Apache Tomcat 7, SQL Server, Spring MVC, and Hibernate 3. The error I am getting is this:
message Request processing failed; ...
0
votes
1answer
180 views
Insert into database after spring hibernate sessionfactory is created
I want to insert some data in a table of database after the SessionFactory of spring hibernate has been created.
I have a CUSTOMER table and I want to insert a particular Customer into this table if ...
0
votes
1answer
368 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
0answers
459 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: ...
1
vote
3answers
454 views
How do I access Hibernate statistics from an entitymanager?
I'm using Spring 3.1.1.RELEASE, JUnit 4.8.1, and Hibernate 4.1.5.Final. I'm trying to test whether my second level cache is configured correctly, but am unsure of how to do it. I'm using the JPA ...
0
votes
0answers
170 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 ...
3
votes
1answer
213 views
Hibernate Sessionfactory restart | Spring
My requirement is as follows:
I need to restart(or rebuild) hibernate session factory in my Spring web application at frequent intervals with the new HBM files I get from outside.
Currently my ...
3
votes
1answer
656 views
SessionFactory not getting autowired while trying to Unit test a DAO class
I'm stuck up in a weird situation in which a sessionFactory I've defined is getting autowired to a DAO class when i run it as a web app.
However, when i try to unit test this DAO class, spring is not ...
1
vote
1answer
72 views
Why am I getting Grails SessionFactoryProxy?
I have inherited an older Grails 1.2 application, and I am trying to upgrade it to the latest Grails 2.1.2. Something has changed in Grails because this code from resources.groovy used to work:
...
0
votes
1answer
509 views
Hibernate SessionFactory becomes null when trying to use it by invoking a method of the same DAO from the Spring MVC controller class
I'm using the Spring version 3.0.2. I want to manage transactions through the @Transactional annotation.
In the applicationContext.xml file, I have the following data source configuration.
<bean ...
0
votes
1answer
317 views
I can't get any data from my database using NHibernate sessionfactory object in ASP.Net 3.5
I have checked that I can connect and get data from the DB using regular C#, which I can. However, when I try to extract data from my DB via session/ sessionfactory, I get nothing. I am a newbie and ...
0
votes
0answers
183 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
1answer
141 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
0answers
103 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
1answer
287 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");
...



