0
votes
0answers
5 views
Alternative to sharing hibernate session between threads
I am working with Spring 3.0.7 / Hibernate 3.5.0.
I have some code that works with hibernate entity. It works ok. The problem occurs, when I try to make integration test for this code. Below is the ...
1
vote
0answers
14 views
WiFi conflicting with local mysql connection (Java/Spring)
I'm using java/spring to connect to a local mysql database and run some integration tests. Sometimes I get Hibernate errors saying that a connection cannot be established. I've noticed this only ...
1
vote
1answer
22 views
Spring Hibernate - saving a one to many association
I would like to save a one to many relationship into the database. In this case one parent and two children.
DAO code
public void createMatch() {
UserEntity checker = new UserEntity();
...
0
votes
0answers
15 views
Error in concurrent reading/saving of object in Transactional method
Facing problem in saving data with concurrent request thread. detail are as below:
Spring 3.0.5
Tomcat 1.6
Hibernate 3
Simulating the issue through sample application:
DB Detail:
user
...
0
votes
0answers
16 views
Compilation failure Failure executing javac, but could not parse the error: The system cannot find the path specified
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
0
votes
1answer
23 views
Reading already loaded properties in a jsp?
My JSP pages need to display different information depending on which environment they're in (dev, production, sandbox, etc). I want to have a properties file for each of these environments that ...
0
votes
2answers
47 views
How to enter data in two tables at one time in spring mvc hibernate
Article class:
@Entity
@Table(name = "imei")
public class Article {
@Id
//@GeneratedValue
@Column(name = "imei1",nullable = false)
private Long imeiNo;
@Column(name = ...
0
votes
1answer
33 views
HibernateTemplate returning null
Hi! here I am trying to use hibernateTemplate in the dao layer, earlier I have working with sessionfactory for retrieving and it worked fine but now I need to implement hibernateTemplate, When I am ...
1
vote
0answers
30 views
executeUpdate() hibernate and spring return to controller number of rows
I have a problem with return affected rows in Springmvc/Hibernate project(MySQL databse).
This is my DAO file, which must return the size of affected rows in my database.
When i execute this method ...
0
votes
0answers
18 views
Spring JPA loads all associated properties despite marking them as FetchType.LAZY in entity class
I am using JPA + Hibernate. The following is the entity class:
@Entity
@Table(name = "test_details")
public class TestDetailsEntity implements Serializable {
private static final long ...
0
votes
1answer
14 views
setFirstResult and setMaxResult doesn't work well with Order By
What could cause the CriteriaQuery orderBy method stop working?
Here are the implementations:
OpenJPAEntityManager kem = OpenJPAPersistence.cast(entityManager());
...
0
votes
1answer
30 views
Generic DAO - “Never go full generic!”
Ive seen allot of usages of generic dao over the internet.
you gotta love it:
public interface GenericDao <T, PK extends Serializable> {}
public class GenericDaoHibernateImpl <T, PK extends ...
1
vote
1answer
12 views
when I am running test cases that time entity manager is injected successfully but while running web app its throwing NullPointerException
I have a strange problem. I am injecting the entity manager using PersistenceContext using applicatioContext bean. But problem is that when I am running test cases that time entity manager is injected ...
0
votes
1answer
35 views
Error when I start my application - Hibernate+spring mvc
I have application with spring mvc + hibernate. All tests It's working but when I try to start my application with tomcat I get an error:
HTTP Status 500 -
type Exception report
message
...
1
vote
1answer
47 views
Spring + Hibernate + Sql Server connection failing
I am getting the following error when I am using a combination of Spring, Hibernate and SQL Server.
19:17:09,137 ERROR [org.hibernate.tool.hbm2ddl.SchemaValidator] (MSC service thread 1-8) HHH000319: ...
-2
votes
0answers
23 views
Hibernate Entities dosen't work after database modification
i have an application works good ! and i have to change my database structure ! and when i changed it ! and i generate my model classes with hibernate i got this exception !
HCANN000001: Hibernate ...
1
vote
0answers
33 views
Entities are not mapped
i have an application works good and i have to change my database structure and when i changed it and i generate my model classes with hibernate i got this exception:
SEVERE: Servlet.service() for ...
1
vote
3answers
45 views
JPA Entities not scanned during unit test
I have a mature java application using Hibernate/JPA that is working just fine. We are trying to add some unit/integration tests. I am doing this using Spring's TestContext framework, my test class ...
0
votes
0answers
13 views
interface org.hibernate.jdbc.ConnectionWrapper is not visible from class loader
I know that this error is being fixed in some hibernate release.
https://hibernate.atlassian.net/browse/HHH-2281
But could someone explain me the cause of this error and relation to class loader? ...
1
vote
0answers
57 views
Spring-Hibernate Self Referencing Table
Let say I have Category table and each category has parent and subcategory. However the parent is optional, so it may not have a parent.
CREATE TABLE `Category` (
`categoryID` int(11) NOT NULL ...
-3
votes
0answers
22 views
Block concurrent transactions being committed via server code [closed]
In an application, if suppose a user is adding a device on a particular position and if another user from a different location tries to add a device in the same position, there are chances that the ...
0
votes
3answers
25 views
Hibernate with Spring : How to decrypt the database password put in properties file for hibernate configuration
Below is my bean in hibernate-config.xml file
<bean id="myDataSource" class="com.mysql.jdbc.jdbc2.optional.MysqlDataSource">
<property name="url" ...
0
votes
1answer
47 views
Spring+Hibernate(with 2nd level cache enabled) in Tomcat(clustered), do I need JTA?
As the title says, I have a web application which should be able to run on cluster with hibernate 2nd level cache enabled and org.springframework.orm.hibernate.HibernateTransactionManager as a ...
1
vote
1answer
29 views
On Services, Daos and in between - a beginner's dilemma
I'm pretty new to layered architecture, + spring + hibernate
after reading some guides on how the class hierarchy is supposed to be -
i came up with this structure:
public interface GenericDAO {
...
0
votes
1answer
31 views
Invocation of init method failed; nested exception is org.hibernate.HibernateException: Unable to locate current JTA transaction
When I run this code it gives the error:
forInvocation of init method failed; nested exception is org.hibernate.HibernateException: Unable to locate current JTA transaction
I have jta properties ...
2
votes
1answer
34 views
Build path is incomplete. Cannot find class file for javax/servlet/ServletContext
very new to java. Working on a CRUD hibernate spring project (sts). When configuring the xml file i get the error "Build path is incomplete.Cannot find class file for javax/servlet/ServletContext", by ...
0
votes
1answer
46 views
Spring requires @Transactional to be on getter services?
My understanding is @Transactional should only be applied to service methods that need to occur within a transaction (such as setters). Say I have the following two classes (DAO layer and Service ...
0
votes
1answer
35 views
No JDBC Driver class was specified by property hibernate.connection.driver_class
With this Pom.xml:
<!-- Hibernate resources -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
...
0
votes
2answers
26 views
Spring Hibernate : Generic Dao addition causes - org.hibernate.TransactionException: nested transactions not supported
I have a layered architecture in my project.
in order to prevent redundancy i created a very basic generic dao:
public interface GenericDAO {
public <T> T getItemById(long id, ...
0
votes
0answers
29 views
Hibernate Database Generation Error in Spring
I'm having an error when I'm creating my in-memory database.
When I start up my program on my Tomcat Server, it seems to run fine, until I try and insert into the database.
My Tomcat log reveals the ...
0
votes
2answers
45 views
Could not instantiate bean : Constructor threw exception; nested exception is java.lang.NullPointerException
package baseDao;
public interface BaseDao {
public void create(Object obj);
public void delete(Object obj);
public void update(Object obj);
public void get(Object obj);
}
package ...
1
vote
0answers
45 views
Java + Spring + hibernate : Dao implementation that is about to change in the future
I'm currently developing a web server with spring 3 and hibernate 4.
in my server i have the following interfaces:
1) GenericDao
2) UserDao extends GenericDao
3) ProductDao extends GenericDao
4) ... ...
-5
votes
0answers
48 views
how to create a swing application in maven with spring hibernate and server as tomcat [closed]
how to create a swing application in maven with spring hibernate and server as tomcat
I have to create a swing web based application. what should be basic configuration for this in server.
0
votes
1answer
38 views
Migrate Hibernate managed C3P0 Pool to Spring Managed
I'm Spring(yfying) my application that uses Hibernate + C3P0 for the connection pool. I'm using a managed hibernate context for specific reasons. I'm using a utility class "HibernateUtil" for ...
2
votes
4answers
79 views
Hibernate and Spring - Dao ,Services
I've been reading some tutorials and I could see that most of the MVC implementations
are based on:
1) a dao interface for example "IUserDao"
2) a dao impl of that interface - ...
0
votes
1answer
46 views
Spring-based application fails to initialize the entityManagerFactory, NoSuchMethodError
I'm working on a Java Enterprise application using the Spring framework and Maven. I'm following a course for this and I'm stuck on integrating Hibernate JPA. When I run the project it returns the ...
1
vote
1answer
37 views
Spring,Primefaces,Hibernate: Save action is called automatically when I hit the create url
I am trying to show a form and then save it. I am using Spring + primefaces and hibernate.
The problem is that when I try to hit URL DRS/jsf/lodi/createLodi.xhtml, I am expecting it to just show the ...
0
votes
1answer
37 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();
...
3
votes
2answers
65 views
@transactional rollback not working
Below is what I did, I need to implement rollback, using @transactional annotation, but not working as expected, what else need to be done for proper rollback to happen ?? I want that when the code ...
0
votes
1answer
34 views
Spring application and Hibernate upgrade: 3.6.1 to 4.2.1: where to set lobHandler?
I am doing a Spring web application with JPA+Hibernate. I use Spring 3.2.2.
I am hoping to upgrade Hibernate from 3.6.1 to 4.2.1.
I was using ...
0
votes
1answer
31 views
JSON to POJO using Apache Camel and hibernate
Apache camel is using a route wich is listening to a specific url. the json from this url is then transformed to pojo classes and inserted in a mySQL database. Everything is working fine, except my ...
0
votes
0answers
44 views
Bean property is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?
Ok. I'm new in Spring's MVC world. I've faced with many issues when I've tried run my first web application. But this time I feel helpless.
10:46:53,242 ERROR ...
0
votes
1answer
55 views
MySQL: Unknown system variable 'tx_read_only'
I'm working on a Java Swing-based application+ Hibernate+Mysql+Spring.
When I test CRUD operations, I don't have problems with read, but in insert statements system shows the message:
Unknown system ...
0
votes
1answer
51 views
Hibernate & Spring 3 not saving
I am using hibernate 3 and spring 3.0.7, I am trying to get my code to save an entity to the database but it just won't do it.
I have tried everything with it but it seems like there is something I ...
0
votes
1answer
36 views
HQL is generating incomplete 'cross join' on executeUpdate
I am working on a grails project. I have following query that I am trying to execute
String CHECK_FOR_HIGH_TRADE_VOLUME_QUERY = "Update LocationTrade lt set lt.hasVeryHighVolume=true where ...
-1
votes
1answer
76 views
Request processing failed; nested exception is java.lang.NullPointerException
i created a form and on post i want to save those values to the database and show the saved values on the page.
i am new to spring mvc and hence i am not understanding where i am going wrong.
Here is ...
-1
votes
1answer
46 views
WARNING: JSF1069: Disabling the JSF 2.0 Facelets ViewHandler as an older FaceletViewHandler
I created a Java EE web application with Spring, Hibernate and JSF 2 but when I run the application the JSF component (PrimeFaces) does not appear and I got this warning:
WARNING: JSF1069: ...
0
votes
1answer
40 views
Delete rows in a batch using JPA EntityManager
I was trying to delete rows in a batch using JPA EntityManager. I got the following exception.
java.lang.IllegalStateException: Not allowed to create transaction on shared EntityManager - use Spring ...
0
votes
3answers
62 views
org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI
Hi i am new Spring Mvc.
and i am not unable to solve this problem
Dispatcher servlet (servlet-context.xml)
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
1answer
57 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 ...





