Tagged Questions

4
votes
3answers
124 views

Tomcat Web Application - storing objects as user-defined objects or simple IDs to persist user sessions through server reboot?

Let's say we have a web application backed by a servlet engine/container like Tomcat. A user logs in. The database record for that user (represented by an instance of class User, let's say) is ...
1
vote
4answers
46 views

Safe file-based data persistance in Java EE

Is it possible to have a Java EE application (based on Spring Framework, running in Tomcat container) persisting its data in a file on the server? The scenario is as follows: I have a class with an ...
1
vote
2answers
547 views

Differences when running Tomcat from within Intellij IDEA?

I have a very bizarre problem with a Spring 3.5, Webflow 2.2 application, running in Tomcat (6.0.32) Part of the webflow calls to retrieve a list of objects. This list is placed in a viewScope ...
1
vote
5answers
2k views

Purpose of Serialization in webapplication

1.Where is the usage of serialization in a webapplication. 2.Is it necessary that a form bean is serializable. 3.In tomcat what is the usage of sessions.ser file..
0
votes
1answer
85 views

Tomcat loadbalancing serialize exception PersistenceExceptionTranslationInterceptor : lazy initialization exception

I have to put two tomcat servers (tcat01 and tcat02) in a loadbalancing architecture. I'm using tomcat 6.x and I edited the conf/server.xml like this on tomcat tcat01 : <Engine name="Catalina" ...
0
votes
3answers
393 views

Java Serialization Exception Message

When running an application locally on my box, the application works perfectly. When deployed to QA, the error below is received. I am running Tomcat 5.5.23 locally and in QA. The application also ...
0
votes
1answer
220 views

How do you dependency inject beans marked @Configurable after deserialized by Tomcat from SESSIONS.ser?

Note: this won't make any sense unless you're very familiar with Java, Spring AOP, and Tomcat. The problem is that beans marked @Configurable are not injected when deserialized by Tomcat ...
0
votes
1answer
218 views

grails Sql error

I was getting issue wen using new Sql method in grails . import groovy.sql.Sql def datasource def organization_config = new Sql(dataSource) def orgs = organization_config.rows("select ...