Questions marquées «hibernate»

Hibernate est une bibliothèque de mappage objet-relationnel (ORM) pour le langage Java permettant aux développeurs d'utiliser des modèles de domaine de style POJO dans leurs applications d'une manière allant bien au-delà du mappage objet / relationnel.






4
Confusion: @NotNull vs @Column (nullable = false) avec JPA et Hibernate
Quand ils apparaissent sur un champ / getter d'un @Entity, quelle est la différence entre eux? (Je persiste l'entité à travers Hibernate ). À quel cadre et / ou spécification chacun d'eux appartient-il? @NotNullest situé à l'intérieur javax.validation.constraints. Dans le javax.validation.constraints.NotNulljavadoc, il est dit L'élément annoté ne doit pas être …

14
Comment faire une requête limite en JPQL ou HQL?
Dans Hibernate 3, existe-t-il un moyen de faire l'équivalent de la limite MySQL suivante dans HQL? select * from a_table order by a_table_column desc limit 0, 20; Je ne veux pas utiliser setMaxResults si possible. Cela était certainement possible dans l'ancienne version de Hibernate / HQL, mais il semble avoir …

18
PersistentObjectException: entité détachée passée pour persister levée par JPA et Hibernate
J'ai un modèle d'objet persistant JPA qui contient une relation plusieurs-à-un: an Accounta plusieurs Transactions. A en Transactiona un Account. Voici un extrait du code: @Entity public class Transaction { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @ManyToOne(cascade = {CascadeType.ALL},fetch= FetchType.EAGER) private Account fromAccount; .... @Entity public class Account { …
237 java  hibernate  jpa  entity  persist 

22
Hibernate - Une collection avec cascade = "all-delete-orphan" n'était plus référencée par l'instance d'entité propriétaire
Je rencontre le problème suivant lorsque j'essaie de mettre à jour mon entité: "A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance". J'ai une entité parent et elle a une Set<...>des entités enfants. Quand j'essaye de le mettre à jour, j'obtiens toutes les références à placer …

18
La méthode de configuration buildSessionFactory () est-elle déconseillée dans Hibernate
Lorsque j'ai mis à jour la version Hibernate de 3.6.8 à 4.0.0, j'ai reçu un avertissement concernant la méthode obsolète buildSessionFactory()dans cette ligne: private static final SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory(); Javadoc recommande d'utiliser une autre méthode buildSessionFactory(ServiceRegistry serviceRegistry) mais dans la documentation, j'ai trouvé une variante obsolète :( Pouvez-vous …


9
Hibernate lève org.hibernate.AnnotationException: aucun identifiant spécifié pour l'entité: com..domain.idea.MAE_MFEView
Pourquoi ai-je cette exception? package com.domain.idea; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.JoinColumn; import javax.persistence.OneToOne; import javax.persistence.Table; import org.hibernate.annotations.AccessType; /** * object model for the view [InvestmentReturn].[vMAE_MFE] */ @Entity @Table(name="vMAE_MFE", schema="InvestmentReturn") @AccessType("field") public class MAE_MFEView { /** * trade property is a SuggestdTradeRecommendation object */ @OneToOne(fetch = FetchType.LAZY , …


30
org.hibernate.HibernateException: l'accès à DialectResolutionInfo ne peut pas être nul lorsque «hibernate.dialect» n'est pas défini
J'essaie d'exécuter une application Spring-boot qui utilise hibernate via spring-jpa, mais je reçois cette erreur: Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.determineDialect(DialectFactoryImpl.java:104) at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.buildDialect(DialectFactoryImpl.java:71) at org.hibernate.engine.jdbc.internal.JdbcServicesImpl.configure(JdbcServicesImpl.java:205) at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.configureService(StandardServiceRegistryImpl.java:111) at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:234) at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:206) at org.hibernate.cfg.Configuration.buildTypeRegistrations(Configuration.java:1885) at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1843) at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl$4.perform(EntityManagerFactoryBuilderImpl.java:850) at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl$4.perform(EntityManagerFactoryBuilderImpl.java:843) at org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl.withTccl(ClassLoaderServiceImpl.java:398) …

8
Comment mapper une clé composite avec JPA et Hibernate?
Dans ce code, comment générer une classe Java pour la clé composite (comment créer une clé composite en hibernation): create table Time ( levelStation int(15) not null, src varchar(100) not null, dst varchar(100) not null, distance int(15) not null, price int(15) not null, confPathID int(15) not null, constraint ConfPath_fk foreign …

En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.