About Container
Java EE 6 Web Tutorial
This tutorial demonstrates how to create and run a full Java EE 6 MVC (Model View Controller) web application in Eclipse - using GlassFish, ObjectDB and JPA.... need a web application that can run on a simple servlet container (such as Tomcat or Jetty) see the JPA Web App Tutorial . ...
Eclipse/JPA Java EE 6 Tutorial
Step by step tutorial that demonstrates how to build a simple Java EE web application (with Servlet, JSP and an EJB Session Bean) in Eclipse using JPA. This is the Eclipse version of the Java EE JPA tutorial. It demonstrates how to create and run a full Java EE 6 MVC (Model View Controller) web application in Eclipse - using GlassFish, ObjectDB and JPA. The demo web a ...
NetBeans/JPA Java EE 6 Tutorial
Step by step tutorial that demonstrates how to build a simple Java EE web application (with Servlet, JSP and an EJB Session Bean) in NetBeans using JPA. This is the NetBeans version of the Java EE JPA tutorial. It demonstrates how to create and run a full Java EE 6 MVC (Model View Controller) web application in NetBeans - using GlassFish, ObjectDB and JPA. ...
Working with JPA Entity Objects
Explains the entity object lifecycle and the persistence context. Entity objects are in-memory instances of entity classes (persistable user defined classes), which can represent physical objects in the database. Managing an ObjectDB Object Database using JPA requires using entity objects for many oper ...
contains(cls, primaryKey)
Whether the cache contains data for the given entity.(Method of javax.persistence.Cache)
Shared (L2) Entity Cache
Explains how to set and use the EntityManagerFactory's shared cache (L2 / level 2) in JPA 2. Every EntityManager javax.persistence.EntityManager JPA interface Interface used to interact with the persistence context. See JavaDoc Reference Page... owns a persistence context , which is a collection of all th ...
contains(entity)
Check if the instance is a managed entity instance belonging to the current persistence context.(Method of javax.persistence.EntityManager)
embed the .odb file in tomcat webapp container
hi all new at objectdb, just wondering if i put the odb file inside tomcat webapp, how do i change the "$objectdb/db/fm.odb"? thanks #1 2011-07-06 09:17 hi all new at objectdb, just wondering if i put the odb file inside tomcat webapp, how do i change the&nb ...
lock(entity, lockMode)
Lock an entity instance that is contained in the persistence context with the specified lock mode type.(Method of javax.persistence.EntityManager)
Conflicting modifiers .... (javax.persistence.Id, javax.persistence.ManyToOne)
I have two classes a Container type class and another class that is 'contained' by that class. The contained class, CompoundKeyMapItem, represents an alternate implementation of an object held in a Map, and uses a Compound Primary Key. The contained class therefore uses an @IdClass. This all works fine on Eclipselink. However when I try and run this in ObjectDb I get the following error; ... I have two classes a Container type class and another class that is 'contained' by that ... uk.co.his.experiment8.cmdline.objdb.CompoundKeyMapItem.container (javax.persistence.Id, javax.persistence.ManyToOne) (error 322) at ...