Java Hibernate КЛАСС не боб - PullRequest
       5

Java Hibernate КЛАСС не боб

0 голосов
/ 18 января 2011


У меня есть это простое имя боба Brand.
Я могу создать из него таблицу, но не могу вставить данные (Mysql).
Ошибка:

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

Это Боб:

    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);

1 Ответ

2 голосов
/ 18 января 2011

Фабрика сеансов, которую вы используете для взаимодействия с БД, должна знать о сущностях.

В вашем случае вам нужно изменить код, чтобы добавить марку, например:

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();
...