ObjectDB Database Search
151-200 of 200 resultsjakarta.persistence.Convert.attributeName period-separated path identifying the converted attribute relative to the annotated program element. For example: if an entity class is annotated @Convert(attributeName = "startDate") , then the converter is applied to the field or property named startDate of the annotated entity class, if an embedded | |
BeanCreationException in spring data JPA with objectDB.ClassTypeInformation at org.springframework.beans.factory. annotation ... .springframework.beans.factory. annotation .InjectionMetadata.inject(InjectionMetadata.java:84) at org.springframework.beans.factory. annotation .AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues | |
jakarta.persistence.AttributeConverter class must be annotated Converter or declared as a converter in the object/relational mapping ... and properties of the target type. The Convert annotation may be used to apply a converter | |
jakarta.persistence.CollectionTable.joinColumns of the referenced primary key column.) However, if there is more than one join column, a JoinColumn annotation must be specified for each join column using the JoinColumns annotation . In this case, both the name and referencedColumnName elements must be specified by each such JoinColumn annotation . Default: {} Since: Jakarta Persistence (JPA) 1.0 | |
Spring LTW Problem. annotation .AnnotationParser.parseSig(AnnotationParser.java:390) at sun.reflect. annotation .AnnotationParser.parseClassValue(AnnotationParser.java:371) at sun.reflect. annotation .AnnotationParser.parseMemberValue(AnnotationParser.java:300) at sun.reflect. annotation .AnnotationParser.parseAnnotation | |
What role is the JDO in ObjectDB? indexes is currently missing in JPA. It be added in JPA 2.1. Meanwhile - use JDO annotations ... annotations for indexes. So if your application is based on JPA - the only place in your code ... to other JPA providers by adding their @Index annotations , e.g. @javax.jdo | |
Migration problem; import lombok.Getter; import lombok.Setter; import org.hibernate. annotations .ColumnDefault; import org ... . annotation .CreatedBy; import org.springframework.data. annotation .CreatedDate; import org.springframework.data. annotation .LastModifiedBy; import org.springframework.data. annotation .LastModifiedDate; import org | |
Cascade type annotaion on an embeddable type, the @Embedded annotation "Specifies a persistent field or property of an entity whose value is an instance of an embeddable class. The embeddable class must be annotated as Embeddable ." So the Location class is annotated as instructed, but what difference will it make if we would annotate | |
jakarta.persistence.GeneratedValue.generator TableGenerator annotation which declares the generator. The name defaults to the entity name of the entity in which the annotation occurs. If there is no generator with the defaulted name, then the persistence | |
jakarta.persistence.DiscriminatorValue.value Jakarta Persistence (JPA) Method in jakarta.persistence.DiscriminatorValue String value (Optional) The value that indicates that the row is an entity of the annotated entity type. If the DiscriminatorValue annotation is not specified and a discriminator column is used, a provider-specific function | |
jakarta.persistence.EntityGraph the name of a named EntityGraph (an entity graph defined by means of the NamedEntityGraph annotation , XML | |
jakarta.persistence.TypedQueryReference Jakarta Persistence (JPA) Interface jakarta.persistence.TypedQueryReference Type Parameters: - an upper bound on the result type of the query A reference to a named query declared via the NamedQuery or NamedNativeQuery annotations . See Also: EntityManager.createQuery(TypedQueryReference | |
jakarta.persistence.AccessType Jakarta Persistence (JPA) Enum jakarta.persistence.AccessType java.lang.Object ∟ java.lang.Enum ∟ jakarta.persistence.AccessType Implemented Interfaces: Constable , Comparable , Serializable Used with the Access annotation to specify an access type to be applied to an entity class, mapped | |
jakarta.persistence.PersistenceConfiguration, that is, a list of classes annotated Entity , Embeddable , MappedSuperclass , or Converter . Returns | |
jakarta.persistence.PessimisticLockScope or used with the NamedQuery annotation . Since: Jakarta Persistence (JPA) 2.0 Enum Constants EXTENDED | |
jakarta.persistence.PersistenceContexts.value Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceContexts PersistenceContext[] value (Required) One or more PersistenceContext annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.metamodel.StaticMetamodel.value Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.StaticMetamodel Class value Class being modelled by the annotated class. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.TableGenerator.name Jakarta Persistence (JPA) Method in jakarta.persistence.TableGenerator String name (optional) A unique generator name that can be referenced by one or more classes to be the generator for id values. Defaults to the name of the entity when the annotation occurs on an entity class or primary key | |
jakarta.persistence.Table.uniqueConstraints and JoinColumn annotations and constraints entailed by primary key mappings. Defaults to no additional | |
jakarta.persistence.IdClass.value Jakarta Persistence (JPA) Method in jakarta.persistence.IdClass Class value The primary key class, which must declare fields or properties with names and types that match the Id fields and properties of the annotated entity class. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.GeneratedValue.strategy Jakarta Persistence (JPA) Method in jakarta.persistence.GeneratedValue GenerationType strategy (Optional) The primary key generation strategy that the persistence provider must use to generate the annotated entity primary key. Default: AUTO Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.ForeignKey.value or columns to which the foreign key annotation is applied. ConstraintMode.NO_CONSTRAINT specifies | |
jakarta.persistence.NamedEntityGraph.subclassSubgraphs Jakarta Persistence (JPA) Method in jakarta.persistence.NamedEntityGraph NamedSubgraph[] subclassSubgraphs (Optional) A list of subgraphs that will add additional attributes for subclasses of the annotated entity class to the entity graph. Specified attributes from superclasses are included in | |
jakarta.persistence.NamedNativeQueries.value Jakarta Persistence (JPA) Method in jakarta.persistence.NamedNativeQueries NamedNativeQuery[] value (Required) Array of NamedNativeQuery annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.NamedEntityGraph.name Jakarta Persistence (JPA) Method in jakarta.persistence.NamedEntityGraph String name (Optional) The name used to identify the entity graph in calls to EntityManager.getEntityGraph . If no name is explicitly specified, the name defaults to the entity name of the annotated root entity. Entity graph | |
jakarta.persistence.NamedEntityGraph.includeAllAttributes Jakarta Persistence (JPA) Method in jakarta.persistence.NamedEntityGraph boolean includeAllAttributes (Optional) Includes all of the attributes of the annotated entity class as attribute nodes in the NamedEntityGraph without the need to explicitly list them. Included attributes can still be fully | |
jakarta.persistence.NamedStoredProcedureQueries.value Jakarta Persistence (JPA) Method in jakarta.persistence.NamedStoredProcedureQueries NamedStoredProcedureQuery[] value (Required) Array of NamedStoredProcedureQuery annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.NamedQueries.value Jakarta Persistence (JPA) Method in jakarta.persistence.NamedQueries NamedQuery[] value (Required) An array of NamedQuery annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyColumn.unique Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyColumn boolean unique (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column | |
jakarta.persistence.MapKeyJoinColumn.unique Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn boolean unique (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. Default: false Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyJoinColumns.foreignKey elements are specified, the behavior is undefined. If no foreignKey annotation element is specified in | |
jakarta.persistence.JoinColumn.referencedColumnName is in the table of the source entity. When used inside a JoinTable annotation , the referenced key column | |
jakarta.persistence.JoinColumn.unique Jakarta Persistence (JPA) Method in jakarta.persistence.JoinColumn boolean unique (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. It is not necessary | |
jakarta.persistence.JoinColumns.foreignKey are specified, the behavior is undefined. If no foreign key annotation element is specified in | |
jakarta.persistence.JoinTable.foreignKey is undefined. If no foreign key annotation element is specified in either location, a default foreign key | |
jakarta.persistence.JoinTable.inverseForeignKey are specified, the behavior is undefined. If no foreign key annotation element is specified in either location | |
jakarta.persistence.SecondaryTable.foreignKey, the behavior is undefined. If no foreign key annotation element is specified in either location | |
jakarta.persistence.SecondaryTable.uniqueConstraints specified by Column and JoinColumn annotations and constraints entailed by primary key mappings. Defaults | |
jakarta.persistence.SequenceGenerator.name Jakarta Persistence (JPA) Method in jakarta.persistence.SequenceGenerator String name (Optional) A unique generator name that can be referenced by one or more classes to be the generator for primary key values. Defaults to the name of the entity when the annotation occurs on an entity class or | |
jakarta.persistence.Converter.autoApply Jakarta Persistence (JPA) Method in jakarta.persistence.Converter boolean autoApply Specifies whether the annotated converter should be automatically applied to attributes of the target type. Default: false Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.SqlResultSetMappings.value Jakarta Persistence (JPA) Method in jakarta.persistence.SqlResultSetMappings SqlResultSetMapping[] value One or more SqlResultSetMapping annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.EntityGraph.getName() Jakarta Persistence (JPA) Method in jakarta.persistence.EntityGraph String getName() Return the name of a named EntityGraph (an entity graph defined by means of the NamedEntityGraph annotation , XML descriptor element, or added by means of the EntityManagerFactory.addNamedEntityGraph method | |
jakarta.persistence.Column.unique Jakarta Persistence (JPA) Method in jakarta.persistence.Column boolean unique (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column | |
jakarta.persistence.CollectionTable.foreignKey is undefined. If no foreign key annotation element is specified in either location, a default foreign | |
jakarta.persistence.PersistenceUnits.value Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceUnits PersistenceUnit[] value (Required) One or more PersistenceUnit annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.PrimaryKeyJoinColumns.value Jakarta Persistence (JPA) Method in jakarta.persistence.PrimaryKeyJoinColumns PrimaryKeyJoinColumn[] value One or more PrimaryKeyJoinColumn annotations . Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.PrimaryKeyJoinColumns.foreignKey of the PrimaryKeyJoinColumn elements are specified, the behavior is undefined. If no foreign key annotation element | |
jakarta.persistence.PersistenceConfiguration.managedClasses() Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceConfiguration List managedClasses() The configured managed classes, that is, a list of classes annotated Entity , Embeddable , MappedSuperclass , or Converter . Returns: all configured managed classes. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.AssociationOverride.foreignKey. If no foreign key annotation element is specified in either location, the persistence provider's | |
Unexpected exception (Error 990) com.objectdb.o.InternalException(PatternApplicationServiceImpl.java:1) at com.btc.ep.base.transactions. annotations .TransactionAspect.ajc$around$com_btc_ep_base_transactions_ annotations _TransactionAspect$1$adc4043cproceed(TransactionAspect.aj:90) at com.btc.ep.base.transactions. annotations .TransactionAspect.ajc$around$com_btc_ep_base |