0
votes
1answer
29 views

Multiple form execution in struts2

I am working ona struts2 and hibernate integration application where i have to make employee registration system like Employee name details jsp page Employee education detail page. Employee ...
0
votes
1answer
23 views

tomcat 6.0.35 Acquisition Attempt Failed!!! Clearing pending acquires. No suitable driver at java.sql.DriverManager.getDriver(DriverManager.java:243)

Apache Tomcat 6.0.35 Hibernate Problem com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask@352e71c4 -- Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed ...
2
votes
2answers
65 views

Injecting EntityManager with a producer in tomcat

I am running a project using Hibernate and Weld CDI on tomcat 7. I have write a ServletContextListener to create the EntityManagerFactory and EntityManager during application startup. public class ...
0
votes
2answers
48 views

usage of different Hibenate Config files for defining a datasource

I am struggling with four configuration file in my hibernate project on tomcat ( web.xml , context.xml, hibernate.cfg.xml and persistence.xml) to define my data source to H2 database. The usage of ...
0
votes
0answers
8 views

Get tomcat hibernate apps and non hibernate apps to share 3CP0 connections

On Tomcat with have a jndi connection to a postgresql database using 3CP0 as a connection pool. I have two different apps that have parts written using jdbc and parts written using Hibernate. When I ...
0
votes
2answers
62 views

Hibernate & Tomcat - won't close socket

When I keep sending http requests to my webserver, it stops responding and I'm stuck in a white screen saying, 'waiting for xxx'. It goes unresponsive. Also I don't see any exception on stacktrace. I ...
0
votes
1answer
38 views

Tomcat hangs if C3P0 can't get a database connection

I've an application that uses Spring+Hibernate+C3P0 as the connection pool. If I start the application and the database is down, Tomcat hangs for a long log time withouth giving any feedback. Is there ...
0
votes
0answers
51 views

Hibernate with c3p0 and Tomcat: too many connections

I have a hibernate persistence layer with c3p0 and it runs on Tomcat. I have an issue with too many connections. After just a few users get on the site, it starts to mushroom the connections to the ...
0
votes
1answer
59 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 ...
1
vote
1answer
105 views

How to configure Tapestry5, Hibernate, Tomcat7, JNDI, Mysql

I've been trying to figure out how to configure Tapestry5, Hibernate, Tomcat7, and Mysql, but have not been able to get it to work. Could someone possible tell me what I'm doing wrong? To began ...
1
vote
0answers
50 views

Jsp page is not showing images on page fetching from a folder placed on WebRoot\file folder

My Images name A(1),A(2).......A(n) is placed into root/file folder. Tomcat is telling, image can not be displayed, it has error, if we giving the image URL in address bar... This is Show.jsp page. ...
1
vote
1answer
217 views

Hibernate4 + c3p0 + Derby - Memory Leak on Tomcat stop or web application reload

I have a very simple application template which includes an embedded apache derby database through hibernate. I have the following configuration: <property name="hibernate.dialect"> ...
0
votes
0answers
106 views

During Tomcat shudown - Unknown service requested [org.hibernate.event.service.spi.EventListenerRegistry]

Any ideas why we get this exception during Tomcat shutdown? In the code there is execution of tx.commit(); This is internal thread started by one of the context listeners to handle some business ...
1
vote
2answers
391 views

How to setup Tomcat 7 Postgresql datasource for Hibernate?

For some reasons I've to fine-tune the jdbc connecton, and I've found, the context.xml is the way I can do that. ( ...
0
votes
0answers
31 views

Creating a struts2 app on heroku

I have created a struts2 app using hibernate and tomcat. I want to host this app on heroku, which one of the java templates is recommend to use a Web app with Spring and Tomcat or Containerless web ...
0
votes
1answer
174 views

javax.servlet.ServletException: Servlet.init() exception when running example from “viralpatel.net”

I am getting an error when trying to run the following spring3-mvc-hibernate-maven-tutorial-eclipse-example : HTTP Status 500 - Servlet.init() for servlet fitTrackerServlet threw exception ...
0
votes
1answer
222 views

struts2+hibernate java.lang.reflect.InvocationTargetException

I have a problem when i am trying to list the table using hibernate, I am not getting the problem when i am adding data to table. Problem is when i am retrieving. The Action method ...
0
votes
1answer
169 views

JDBCExceptionReporter - SQL Error: 0, SQLState: 08001

I did a Java appliction using spring , hibernate and Jaxb. JDBCExceptionReporter - SQL Error: 0, SQLState: 08001 JDBCExceptionReporter - Could not create connection to database server. Attempted ...
0
votes
1answer
195 views

c3p0 pooling is not working (with hibernate and a datasource, on tomcat)

We have a java web application running on tomcat 6, which is calling a jar for persistance. This jar is located in the tomcat lib folder, and uses a tomcat datasource : <Resource ...
0
votes
2answers
211 views

Hibernate Error - Already have an associated managed connection

I'm randomly receiving this hibernate error, I can't reproduce it. Already have an associated managed connection and the stack trace as follows ... INFO | jvm 1 | 2013/03/31 18:16:20 | ...
0
votes
0answers
16 views

commons-dbpc and hibernate performance

I have an issue regarding the processing time of selects and updates using hibernate mapping. I'm using Java, Tomcat, Hibernate and apache commons-dbpc pool connector. I got a back-end service doing ...
0
votes
1answer
194 views

Login with Hibernate and store username logged

I'm developing a simple project cloud in which a registered user after login can download and upload files. I'm developing with Eclipse Java EE, JSF and Hibernate. In my project I can sign in to the ...
0
votes
0answers
80 views

Why resource-ref is required for tomcat and not glassfish

I'm migrating an app from Glassfish to Tomcat7 and I'm curious as to why you need to add something like "web.xml example below" to your app WEB-INF/web.xml file with Tomcat7, but with Glassfish, this ...
0
votes
1answer
79 views

Hibernate autoincrement in loadbalancing tomcats?

I have web application using Hibernate deployed in 3 load balanced Tomcats and I am frequently getting the following exception org.hibernate.exception.ConstraintViolationException: Could not execute ...
0
votes
1answer
235 views

Why won't my .war start after deploying to tomcat 7, but running an embedded server works fine?

I am able to run my app on an embedded server with mvn clean install tomcat7:run successfully. I can also deploy successfully by running mvn tomcat7:depoly or mvn cargo:redeploy, but the app fails ...
0
votes
1answer
56 views

Hibernate: Unable to Apply Constrains on DDL

I'm using Struts/Springs/Hibernate with Tomcat 7.0, and I'm getting an issue with hibernate's mapping when attempting to start-up the server. The console will print: Mapping class: path.vo.ObjectVO ...
0
votes
2answers
128 views

Issue with Tomcat pooling with Hibernate. MySQL timeout

I've been developing a struts web app with hibernate3 on tomcat7 using MySQL. At first i've been using c3p0 pooling... then I've swithched to tomcat pooling. But I get the same error after a one day. ...
0
votes
1answer
165 views

JndiException when using Hibernate 4.0 with Tomcat 7 and JSF 2.0

After the application deploye, when method is execute , i am getting below error. Caused by: org.hibernate.service.jndi.JndiException: Unable to lookup JNDI name [java:comp/env/JSF_HIBER/ORACLE] ...
0
votes
1answer
105 views

Grails (v2.2) app starts via run-app, but dies when deploying the war on tomcat 7

I have a grails 2.2 app that runs fine when I do a clean checkout from svn and do grails run-app. (I've already blown away my .grails/2.2.0 and .grails/ivy-cache directories and re-downloaded the ...
0
votes
1answer
124 views

catalina.out increases in size rapidly, using Hibernate

Somehow my catalina.out's sizes is increasing rapidly. After one run of my application the catalina.out is 12MB big and my opendata.log is 1MB big. Why is not everything written to the opendata.log? ...
1
vote
1answer
187 views

Hibernate - Tomcat - MySQL issue

Dear All, I'm testing a Struts webApp using hibernate-mysql on tomcat7... After the 8 hours timeout period my webApp always crashes. I've changed configurations here and there. But no success. I ...
0
votes
0answers
50 views

Issues with Redeploying Webapps in Tomcat, does NOT reopen my hibernate database connection/session

I have a problem I recently discovered while working with Eclipse, Liferay SDK 6.1 and Tomcat 7.0.23. The issue is when I make changes to my project that requires a redeployment of my portlet, the ...
0
votes
1answer
135 views

FieldInterceptionHelper class not found

I have two spring mvc application with similar code. In fact the second application is based on the first one only with different name. However during validation of entity (before insertion) I get the ...
0
votes
2answers
99 views

How to get current logged in user in hibernate event listener

I am using hibernate event listeners to record last modified time. I use a Custom Integrator to register the event listeners. I register my integrator by creating a file with a specific name in ...
0
votes
0answers
378 views

Constructor must call super() or this() before return

I'm using JavaServer Faces and Hibernate 3.2.5 and have problems with compiling this code: package org.tuke.regbudov.entity; import javax.persistence.metamodel.SingularAttribute; import ...
0
votes
2answers
119 views

What is the default connection pool size in c3p0

In the below cofig, If I missed min, max and initial pool size. What will be the default connection pool size in c3p0 <bean class="com.mchange.v2.c3p0.ComboPooledDataSource" ...
2
votes
3answers
619 views

Possible root causes include a too low setting for -Xss and illegal cyclic inheritance dependencies

My app is quit big and using many jars and tools. Platform - windows 2008 server, Spring , hibernate, Quarts, mysql, tomcat-7.35 When I deploy and start the server first time working perfectly, but ...
0
votes
1answer
196 views

Encrypting password for c3p0 ComboPooledDataSource

I currently have a server.xml configuration which has the following in it <Resource auth="Container" description="DB Connection" driverClass="oracle.jdbc.driver.OracleDriver" ...
5
votes
1answer
298 views

Spring Security/JSF/Hibernate Accidental Session Hijacking on Tomcat?

Something very strange and embarrassing happened to me the other day and I don't have words to describe what happened. My app runs Spring 3 integrated with JSF 2.1, Hibernate 4, Spring Security all ...
0
votes
0answers
168 views

NIO (non-blocking IO) with Tomcat/Jetty, and Spring/Hibernate - possible?

I'm considering configuring tomcat (or jetty) to use NIO (non-blocking IO) for several, of my apps using Spring/Hibernate, to improve performance. I am still unsure right now how NIO works, but my ...
0
votes
1answer
306 views

Hibernate table foreign key Insertion: @OneToMany/@ManyToOne relation

I'm working with hibernate 4 and Maven : package tn.onp.mvno.model; @Entity @Table(name="PERSON") public class Person { private int id; private String name; private String surname; private ...
0
votes
1answer
64 views

Error creating bean with jetty

I am having issue when start web application with Jetty, but when i start it with Tomcat-07 there is no such issue, Error : org.springframework.beans.factory.BeanCreationException: Error ...
1
vote
1answer
107 views

hibernate.cfg.xml is not parsed

i'm working with hibernate 4 and Maven : So the problem is when i start the sever ,i can't see it parsing the hibernate.cfg.xml And the table are not created in the dataBase ; hibernate.cfg.xml ...
0
votes
1answer
142 views

Grails - severe IllegalStateException - Method on class [] was used outside of a Grails application

I'm getting a severe IllegalStateException error on prod environment (stacktrace at the bottom). Locally, on dev everything works fine and I never experienced any problem with that piece of code ...
0
votes
1answer
183 views

JPA (Hibernate) + Tomcat + two different databases

I have a webapp using JPA provided by Hibernate and Tomcat. I have no DI framework, no Spring, no Guice, no full Java EE app server. I need JPA to connect to two different databases. I connect to the ...
0
votes
2answers
107 views

Hibernate queries to postgres

I've got jsp webapp on my VPS host with tomcat 7 as server. I'm using Hibernate 3 and PostgreSQL. All methods in my class DBManager (responsible for db services, connection, queries) use almost the ...
1
vote
1answer
114 views

Why is Cobertura not working in my Spring/Hibernate Webapp?

I want to use Cobertura code coverage recording in my web application, but can't get it to work. I suspect, the problem is some conflict between Spring or Hibernate and Cobertura since all three use ...
0
votes
0answers
559 views

Hibernate 4 connection.autocommit=false ignored

We have an application using Java, hibernate 4, guice 3, guice-persist 3 on tomcat 6 connection.autocommit is configured to false in the hibernate.cfg.xml file: <session-factory> ...
1
vote
2answers
1k views

Hibernate: illegally attempted to associate a proxy with two open Sessions

I have 2 methods: public static Ticket issueTicket(User user,Service service,String[] seats) { Session ticSess= DB.factory.openSession(); ticSess.beginTransaction(); Date d= new Date(); ...
3
votes
3answers
2k views

hibernate properties not found

we are integrating the java blazeds hibernate with flex project..First we tested the pure java hibernate in eclipse and it is executing fine. But when we put the same in tomcat for flex integration ...

1 2 3 4 5 6