Internal Website Search

51-100 of 200 results

persistence.xml classes not respected by ObjectDB

Hi! I have the following persistence . xml . The problem is that ObjectDB loads all the classes in P1 (+ their embeddable classes). P2 is created properly, but P1 gets all entity classes (from P2 also). How can this be avoided, so that both P1 and P2 get just the classes that were specified to each

setting activation code in persistence.xml or env file or system properties

Wondering if it's possible to add the activation code either: - in persistence . xml - or in a .env file - or system properties dmoshal David Moshal These options are not supported. However, you can embed the configuration file with the activation code as a resource, e.g. by replacing the objectdb

How to package orm.xml when using EJB in WAR?

;       and the persistence . xml references this orm. xml :     ... ;     both persistence . xml and orm. xml are located in src/main/resources/META-INF ... a resource '/META-INF/orm. xml ' (referenced from persistence . xml ) One partial work

Failed to validate XML

[ObjectDB 2.6.7_05] javax. persistence .PersistenceException Failed to validate xml file /{erased-by-me}/tiro/lib-core/build/resources/test/META-INF/ persistence . xml : (error 211) at com.objectdb.jpa ... /resources/test/META-INF/ persistence . xml : at com.objectdb.o.MSG.d(MSG.java:75) at com.objectdb.o.XMD.n(XMD

How to change properties in urls2.xml?

properties ? Adding ?port=XXXX at the end of the persistence . xml database local url doesn't work ... ?port=XXXX at the end of the persistence . xml database local url doesn't work. ( Tomcat says ... see it exists a file name "urls2. xml ". /var/lib/tomcat7/db/myDb.odb;user=admin;password=admin objectdb

XML and ObjectDB

to persist XML into ObjectDB?  Do you need to generate JAXB JAVA bindings and then persist ... beyonddc Chun Tat David Chu ObjectDB can be used to store any type of data including XML . For example, you can define a generic Element entity and store the XML as a tree of Element nodes

Spring + Maven + persitence.xml

:    com.objectdb    objectdb    2.4.3   Persistence . xml com.objectdb ... the server on port 6136. Did not figured out how to create an empty db! Then I updated persistence . xml like ... : javax/ persistence /spi/PersistenceUnitInfo com.objectdb.o.MSF.UJ(MSF.java:178) com.objectdb.o.SHN.Z

Compress ODB file with XML content

is used by field value in entity class  LogVolatileEntityImpl , which contains XML ... persistent field, e.g compressedValue , and store the compressed content in that field. The old value field

JPA Entity Fields

Fields of persistable user defined classes (entity classes, embeddable classes and mapped superclasses) can be classified into the following five groups: Transient fields Persistent fields Inverse ... , persistent and inverse fields) can be used in both entity classes and embeddable classes . However, the last

How to change properties in urls2.xml ?

properties. I have no control on the port and password used. :( Does it exist a way to change urls2. xml properties ? Adding ?port=XXXX at the end of the persistence . xml database local url doesn't work ... see it exists a file name "urls2. xml ". /var/lib/tomcat7/db/myDb.odb;user=admin;password=admin objectdb

Retrieving JPA Entity Objects

The Java Persistence API (JPA) provides various ways to retrieve objects from the database ... of the database. The persistence context serves as a cache of retrieved entity objects. If a requested entity object is not found in the persistence context a new object is constructed and filled

javax.persistence.Persistence.PERSISTENCE_PROVIDER

JPA Static Field in javax. persistence . Persistence PERSISTENCE _PROVIDER This final String is deprecated and should be removed and is only here for TCK backward compatibility Since: JPA 1.0

JPA Class Enhancer

of compiled classes after compilation. Enhancement is mainly for user-defined persistable classes ... . There is one case, however, where enhancement is required. Non persistable classes that access directly (not through methods) persistent fields of enhanced classes must also be enhanced. It is a good practice

Database Connection using JPA

Working with the Java Persistence API (JPA) consists of using the following interfaces: Overview ... a static factory method of the JPA bootstrap class,  Persistence : EntityManagerFactory emf = Persistence . createEntityManagerFactory ("objectdb:myDbFile.odb"); Another form

javax.persistence.Persistence

JPA Class Persistence java.lang.Object ∟  javax. persistence . Persistence Bootstrap class ... schema generation to occur. The Persistence class is available in a Java EE container environment as ... . The Persistence class is used to obtain a PersistenceUtil instance in both Java EE and Java SE

Working with JPA Entity Objects

Entity objects are in-memory instances of entity classes ( persistable user defined classes ... the database. An entity object becomes Managed when it is persisted to the database via an EntityManager’s persist method, which must be invoked within an active transaction. On transaction commit

javax.persistence.CascadeType.PERSIST

JPA Enum Constant in javax. persistence .CascadeType PERSIST Cascade persist operation Since: JPA 1.0

Entity Management Settings

" ) specifies whether the Enhancer Agent should be loaded to enhance persistable types on the fly ... . The possible values of the reflection attribute represent different policies: "error" - all persistable ... the reference type for holding non dirty entities in the persistence context of the EntityManager

Defining a JPA Entity Class

Point objects from the database: package com.objectdb.tutorial; import javax. persistence .Entity; @Entity public class Point { // Persistent Fields: private int x; private int y; // Constructor: Point ... an entity class. An attempt to persist Point objects in the database without marking the Point class

JPA Exceptions

.Throwable java.lang.Exception java.lang.RuntimeException javax. persistence .PersistenceException javax. persistence .EntityExistsException javax. persistence .EntityNotFoundException javax. persistence .LockTimeoutException javax. persistence .NonUniqueResultException javax. persistence .NoResultException

Paths and Types in JPQL and Criteria API

Instances of user defined persistable classes (entity classes, mapped super classes and embeddable ... defined persistable classes can participate in direct comparison using the = and operators ... expression) and uses the dot ( . ) operator to navigate through persistent fields to other objects

javax.persistence.EntityManager

JPA Interface EntityManager Interface used to interact with the persistence context. An EntityManager instance is associated with a persistence context. A persistence context is a set of entity instances in which for any persistent entity identity there is a unique entity instance

javax.persistence.Query

of entities updated or deleted Throws: IllegalStateException - if called for a Java Persistence query ... - if there is no transaction or the persistence context has not been joined to the transaction QueryTimeoutException ... is found not to be a Java Persistence query language SELECT query or a Criteria API query Since: JPA 2.0

javax.persistence.TypedQuery

: IllegalStateException - if called for a Java Persistence query language SELECT statement or for a criteria query TransactionRequiredException - if there is no transaction or the persistence context has not ... Throws: IllegalStateException - if the query is found not to be a Java Persistence query language

javax.persistence.FlushModeType

JPA Enum FlushModeType java.lang.Object ∟  java.lang.Enum ∟  javax. persistence ... is set on the Query or javax. persistence .TypedQuery object, or if the flush mode setting for the persistence context is AUTO (the default) and a flush mode setting has not been specified for the Query or

javax.persistence.StoredProcedureQuery

: TransactionRequiredException - if there is no transaction or the persistence context has not ... - if the query is found not to be a Java Persistence query language SELECT query or a Criteria API ... IllegalStateException - if invoked on a native query or Java Persistence query language query when the implementation

javax.persistence.EntityExistsException

.Exception ∟  java.lang.RuntimeException ∟  javax. persistence .PersistenceException ∟  javax. persistence .EntityExistsException Thrown by the persistence provider when EntityManager. persist (Object) is called and the entity already exists. The current transaction, if one is active

javax.persistence.OrderColumn

a column that is used to maintain the persistent order of a list. The persistence provider is responsible for maintaining the order upon retrieval and in the database. The persistence provider ... for ordering that is visible as persistent state and maintained by the application. The OrderBy annotation

javax.persistence.PersistenceUnitUtil

the application and the persistence provider managing the persistence unit. The methods ... for this persistence unit or on new entity instances. Since: JPA 2.0 Public Methods Object getIdentifier ... the load state of an entity belonging to the persistence unit. This method can be used to determine

javax.persistence.EnumType

JPA Enum EnumType java.lang.Object ∟  java.lang.Enum ∟  javax. persistence .EnumType Defines mapping for enumerated types. The constants of this enumerated type specify how a persistent property or field of an enumerated type should be persisted . Since: JPA 1.0 The JPA Persistable Types

javax.persistence.PessimisticLockScope

JPA Enum PessimisticLockScope java.lang.Object ∟  java.lang.Enum ∟  javax. persistence .PessimisticLockScope Defines the values of the javax. persistence .lock.scope property for pessimistic ... will be locked if the javax. persistence .lock.scope property is specified with a value

javax.persistence.NamedQuery

, named query in the Java Persistence query language. Query names are scoped to the persistence unit ... of the definition of a named query in the Java Persistence query language: @NamedQuery( name ... must be executed in a transaction and the persistence context joined to the transaction. Since: JPA 2.0

javax.persistence.SynchronizationType

JPA Enum SynchronizationType java.lang.Object ∟  java.lang.Enum ∟  javax. persistence .SynchronizationType Specifies whether the persistence context is always automatically synchronized with the current transaction or whether the persistence context must be explicitly joined to the current

javax.persistence.PersistenceContextType

JPA Enum PersistenceContextType java.lang.Object ∟  java.lang.Enum ∟  javax. persistence .PersistenceContextType Specifies whether a transaction-scoped or extended persistence context is to be used in PersistenceContext . If not specified, a transaction-scoped persistence context is used

Persistence.createEntityManagerFactory(persistenceUnitName,properties) - JPA Static Method

JPA Static Method in javax. persistence . Persistence EntityManagerFactory createEntityManagerFactory ... and return an EntityManagerFactory for the named persistence unit using the given properties. Parameters: persistenceUnitName the - name of the persistence unit properties Additional - properties to use

Persistence.createEntityManagerFactory(persistenceUnitName) - JPA Static Method

JPA Static Method in javax. persistence . Persistence EntityManagerFactory createEntityManagerFactory ... for the named persistence unit. Parameters: persistenceUnitName the - name of the persistence unit Return: the factory that creates EntityManagers configured according to the specified persistence unit Since: JPA 1.0

javax.persistence.ValidationMode

JPA Enum ValidationMode java.lang.Object ∟  java.lang.Enum ∟  javax. persistence .ValidationMode The validation mode to be used by the provider for the persistence unit. Since: JPA 2.0 Enum Constants AUTO If a Bean Validation provider is present in the environment, the persistence provider

javax.persistence.GenerationType

JPA Enum GenerationType java.lang.Object ∟  java.lang.Enum ∟  javax. persistence ... Indicates that the persistence provider should pick an appropriate strategy for the particular database ... Indicates that the persistence provider must assign primary keys for the entity using a database

Step 5: Add a JSP Page

the controller in the previous step). The next step (and the last in this tutorial) is setting the Spring XML configuration .

JPA Web App Tutorial - Maven Project

. xml file) and port 8080 has to be available for the Jetty embedded server. No need to download

Getting Started with JPA - Maven Project

The current directory should be points-console (containing the pom. xml file). No need to download

Spring MVC JPA Tutorial - Maven Project

jetty:run The current directory should be  guestbook-spring (containing the  pom. xml file

Step 5: Add a JSP Page

). The next step (and the last in this tutorial) is setting the  Spring XML configuration .

Step 3: Define an EJB Session Bean

java.util.List; import javax.ejb.Stateless; import javax. persistence .EntityManager; import javax. persistence .PersistenceContext; import javax. persistence .TypedQuery; @Stateless public class GuestDao ... : public void persist (Guest guest) { em. persist (guest); } // Retrieves all the guests: public List

Step 3: Define a Spring DAO Component

; import javax. persistence .EntityManager; import javax. persistence .PersistenceContext; import javax. persistence .TypedQuery; import org.springframework.stereotype.Component; import org.springframework ... void persist (Guest guest) { em. persist (guest); } // Retrieves all the guests: public List getAllGuests

Step 3: Define a Spring DAO Component

.List; import javax. persistence .EntityManager; import javax. persistence .PersistenceContext; import javax. persistence .TypedQuery; import org.springframework.stereotype.Component; import org ... void persist (Guest guest) { em. persist (guest); } // Retrieves all the guests: public List

Step 3: Define an EJB Session Bean

with the following code: package guest; import java.util.List; import javax.ejb.Stateless; import javax. persistence .EntityManager; import javax. persistence .PersistenceContext; import javax. persistence .TypedQuery ... EntityManager em; // Stores a new guest: public void persist (Guest guest) { em. persist (guest

[ODB1] Chapter 7 - JDOQL Queries

. An Extent , for instance, can be used to retrieve all the instances of a specified persistent class ... three components: A candidate collection containing persistent objects (usually an Extent ) A candidate class (usually a persistent class) A filter, which is a boolean expression in a Java like syntax The query

[ODB1] Chapter 5 - JDO Connections

is obtained by the PersistenceManager . On every attempt to modify a persistent object, within an active ... the same persistent object at the same time, and conflicts are detected at commit time ... . javax.jdo.option.NontransactionalWrite Indicates whether or not persistent objects (i.e. objects

javax.jdo.annotations.Persistent.persistenceModifier

JDO Annotation Attribute in javax.jdo.annotations. Persistent PersistenceModifier ... which a member is not persistent but in the non-embedded instances the member is persistent . Note that it is not portable to specify a member to be not persistent in the non-embedded case and persistent in the embedded usage. Since: JDO 2.1