application « POJO « JPA Q&A





2. Mapped POJO object outside the application    forum.hibernate.org

Hello, I'm using the 2.1 version of Hibernate and mapped tables to POJO objects. The architecture is divided into 2 processes: one is running in jboss and has the DB access; and other is servlet running on tomcat and receives mapped to tables POJO objects. The servlet receives the following exception: net.sf.hibernate.collection.Map (no security manager: RMI class loader disabled) The hibernate2.jar ...

3. Mapped POJO object outside the application    forum.hibernate.org

Hello, I'm using the 2.1 version of Hibernate and mapped tables to POJO objects. The architecture is divided into 2 processes: one is running in jboss and has the DB access; and other is servlet running on tomcat and receives mapped to tables POJO objects. The servlet receives the following exception: net.sf.hibernate.collection.Map (no security manager: RMI class loader disabled) The hibernate2.jar ...

4. caching POJO in session vs. DB queries in web application    forum.hibernate.org

Hi, In our webapp, I've been querying the DB for role and group info for every request and putting the information in the servlet request. I'm wondering if performance can be increased by placing the data in the http session instead and only querying the values from the DB when it has changed. It would increase the complexity of the underlying ...