gpt4 book ai didi

java hibernate CLASS 不是 bean

转载 作者:行者123 更新时间:2023-11-29 09:13:58 24 4
gpt4 key购买 nike


我有一个简单的 bean 名称 Brand。
我可以用他创建表,但无法插入数据(Mysql)。
错误:

Exception in thread "main" org.hibernate.MappingException: Unknown entity: com.hibernate.beans.Brand

这是 Bean:

    package com.hibernate.beans;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Entity
public class Brand {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long brandId;
private String name;
private String url;


public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Long getBrandId() {
return brandId;
}
public void setBrandId(Long brandId) {
this.brandId = brandId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}

这就是我尝试插入数据的方式(以及我收到错误的位置):

    Brand brand = new Brand();

brand.setName("test");
brand.setUrl("http://www.google.com");

Session ses = new AnnotationConfiguration().configure().buildSessionFactory().getCurrentSession();
Transaction t = ses.beginTransaction();
ses.save(brand);
t.commit();

这是成功创建表的方式:

AnnotationConfiguration config = new AnnotationConfiguration();
config.addAnnotatedClass(Brand.class);
config.configure();
new SchemaExport(config).create(true, true);

最佳答案

用于与数据库交互的 session 工厂需要了解实体。

在您的情况下,您需要更改代码以添加如下所示的品牌:

Brand brand = new Brand();

brand.setName("test");
brand.setUrl("http://www.google.com");

AnnotationConfiguration c = new AnnotationConfiguration();
c.addAnnotatedClass(Brand.class);
c.configure();

Session ses = c.buildSessionFactory().getCurrentSession();

Transaction t = ses.beginTransaction();
ses.save(brand);
t.commit();

关于java hibernate CLASS 不是 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4721653/

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