gpt4 book ai didi

java - hibernate.MappingException 持久类未知

转载 作者:搜寻专家 更新时间:2023-11-01 01:50:27 27 4
gpt4 key购买 nike

我有这个异常(exception):

org.hibernate.MappingException: persistent class not known: java.lang.Long

我正在使用 Hibernate 5.1.0.Final 和 spring-orm 4.2.4.RELEASE

我的spring配置文件(spring.xml):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost/ecollection" />
<property name="username" value="root" />
<property name="password" value="" />
</bean>
<bean id="hibernateAnnotatedSessionFactory"
class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">

<property name="dataSource" ref="dataSource" />

<property name="annotatedClasses">
<list>
<value>com.ecollection.model.Adresse</value>
<value>com.ecollection.model.Utilisateur</value>
</list>
</property>

<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
<prop key="hibernate.current_session_context_class">thread</prop>
<prop key="hibernate.show_sql">false</prop>
</props>
</property>

</bean>
<bean id="utilisateurDao" class="com.ecollection.dao.UtilisateurDaoImpl">
<property name="sessionFactory" ref="hibernateAnnotatedSessionFactory" />
</bean>
<bean id="adresseDao" class="com.ecollection.dao.AdresseDaoImpl">
<property name="sessionFactory" ref="hibernateAnnotatedSessionFactory" />
</bean>

我有两个 MySQL 表,UserAddress

User = Id, Name and Firstname
Address = Id, Street, City and UserId

对于我的 Address 实体 bean 中的 UserId,我正在这样做:

@OneToOne
@JoinColumn(name="id")
public Long getIdUtilisateur() {
return idUtilisateur;
}

最佳答案

您不能像此处那样使用非实体作为OneToOneJoinColumn 的目标:

@OneToOne
@JoinColumn(name="id")
public Long getIdUtilisateur() {
return idUtilisateur;
}

相反,您可以使用这种方法来映射 UtilisateurAddress 关系:

@OneToOne
@JoinColumn(name="id")
public Utilisateur getUtilisateur() {
return utilisateur;
}

当然,Utilisateur应该是一个实体:

@Entity
public class Utilisateur { ... }

关于java - hibernate.MappingException 持久类未知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35614454/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com