我将 Spring + Hibernate 与注释一起使用,但出现以下错误:
org.hibernate.hql.ast.QuerySyntaxException: Produit is not mapped [from Produit]
当我调用这个函数时它会出现:
public List<Produit> getListeProduit() {
return sessionFactory.getCurrentSession().createQuery("from Produit").list();
}
这是我的 hibernate.cfg.xml
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<mapping class="port.domain.Produit" />
</session-factory>
</hibernate-configuration>
Produit 类用@Entity 很好地注释,@Table ID 用@Id、@Column、@GeneratedValue 其他列用@Column
这是我的 XXX-servlet.xml 中的 bean SessionFactory:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property>
<property name="configurationClass">
<value>org.hibernate.cfg.AnnotationConfiguration</value>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
编辑:实体代码
@Entity
@Table(name="produit")
public class Produit implements Serializable{
@Id
@Column(name="produit_id")
@GeneratedValue(strategy=GenerationType.IDENTITY)
private int produitId;
@Column(name="produit_nom")
private String produitNom;
public void setProduitId(int i) {
produitId = i;
}
public int getProduitId() {
return produitId;
}
public void setProduitNom(String s) {
produitNom = s;
}
public String getProduitNom() {
return produitNom;
}
}
我知道有很多关于这个问题的线索,但我没有找到任何正确的问题。我知道 Hibernate 无法映射我的课程,但我不知道为什么......
问题可能来自哪里?
非常感谢。