Internal Website Search

11-20 of 200 resultsRefresh

Dependency from enhanced classes to the objectDB library

Hello, we have a Question to the dependency from enhanced classes (required for license ... when we have enhanced the entities. java.lang.NoClassDefFoundError: com ... . This test runs only if we allow the usage of not enhanced classes. <

Possible cause for "Enhancement of type ... is old and cannot be used"

] Enhancement of type com.btc.ep.requirement.bl.internal.ScopeRequirementContainerImpl is old ... .btc.ep.requirement.bl.internal.ScopeRequirementContainerImpl is not enhanced. [2015-06-08 13:07:02 #3 type.user] Enhancement of type com.btc.ep.requirement.bl.internal.RequirementReferenceImpl

com.objectdb.o.TEX: Type ... is not found, for a class that's already been enhanced successfully.

to implement Enhancement (because the log always says that the classes are not enhanced). The main ... -java"> static void main(String[] args) { Enhancer.enhance(   "common.app.Model,common ... , it seems like the above code does manage to enhance. Then another process tries to enhance again.

UserException: Package com.example.model is not found by the enhancer

.example.model is not found by the enhancer It occurs on this line: com.objectdb.Enhancer.enhance("com.example.model" + ".*"); during contextInitialization ... how the enhance() method looks up the model path since it will be inside

enhancement issue

Hi, still struggling with the enhancement issue. So, this works fine in development: static void main ( String[] args ) {     com.objectdb.Enhancer.enhance ( "app.model.*" ) ....   } } But in deployment, when the jar files

ObjectDB Object Database Features

automatically. Code enhancer">enhancement is optional (recommended ... /tool/enhancer">Class Enhancer Boosts performance by avoiding reflection and by using smart tracking. Non enhanced classes are also supported (by using reflection). On the fly

Updating JPA Entity Objects

. A more efficient way to detect changes automatically is described in the enhancer">Enhancer section in chapter 5. However, detecting changes to arrays requires using snapshots even if the entity classes are enhanced. Therefore, for efficiency purposes, the default behavior

Unexpected exception during query, if entity is not enhanced

Hello, the entity TCVector is not enhanced and the enhancement check in the objectdb.conf ... > We had expected that the activated enhancement check would throw an exception. In a parallel secondary thread we got the following ObjectDB log entry. ObjectDb Log: Enhancement of type com.btc.ep.vector

Step 3: Add a Context Listener Class

implements ServletContextListener { // Prepare the EntityManagerFactory & Enhance: public void contextInitialized(ServletContextEvent e) { com.objectdb.Enhancer.enhance ... "); emf.close(); } } The code above: Invokes the Enhancer

Step 3: Add a Context Listener Class

the EntityManagerFactory & Enhance: public void contextInitialized(ServletContextEvent e) { com.objectdb.Enhancer.enhance("guest.*"); EntityManagerFactory emf = Persistence ... >Invokes the Enhancer to enhance the entity class and creates an EntityManagerFactory