【发布时间】:2016-01-27 21:58:22
【问题描述】:
我正在尝试执行一个基本的休眠应用程序。但是,我一直收到问题中发布的错误。
下面是 app.java 中的代码
公开课应用{
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Session session =hibernate_utils.getSessionFactory().openSession();
session.beginTransaction();
contact contact=new contact();
contact.setFirstname("xxx");
contact.setLastname("xxx");
contact.setEmail("xxxxxxx@gmail.com");
contact.setTelephone("xxxxxxxxxx");
session.save(contact);
session.getTransaction().commit();
System.out.println("saved");
}
}
下面发布的是contact.java文件中的代码
package net.rishanth.contact.form;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import javax.persistence.Column;
import static javax.persistence.GenerationType.SEQUENCE;
@Entity
@Table(name = "contacts")
public class contact {
@Id
@GeneratedValue(strategy=SEQUENCE)
@Column(name = "id", unique = true, nullable = false)
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(name = "firstname", nullable = false)
public String getFirstname() {
return firstname;
}
public void setFirstname(String firstname) {
this.firstname = firstname;
}
@Column(name = "lastname", nullable = false)
public String getLastname() {
return lastname;
}
public void setLastname(String lastname) {
this.lastname = lastname;
}
@Column(name = "email", nullable = false)
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
@Column(name = "telephone", nullable = false)
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
private String firstname;
private String lastname;
private String email;
private String telephone;
private Integer id;
}
下面发布的是服务包中的 hiber_utils 类的代码。
package net.rishanth.contact.service;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class hibernate_utils {
private static final SessionFactory sessionfactory= buildSessionFatory();
@SuppressWarnings("deprecation")
private static SessionFactory buildSessionFatory(){
// TODO Auto-generated method stub
return new Configuration().configure().buildSessionFactory();
}
public static SessionFactory getSessionFactory()
{
return sessionfactory;
}
public static void shutdown()
{
getSessionFactory().close();
}
}
下面是hibernate.cnfg.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property
name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property
name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver
</property>
<property
name="hibernate.connection.url">jdbc:oracle:thin:@127.0.0.1:1521:XE
</property>
<property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect
</property>
<property name="hibernate.connection.username">system</property>
<property name="hibernate.connection.password">xxxxx</property>
<mapping class="net.rishanth.contact.form.contact"></mapping>
</session-factory>
</hibernate-configuration>
任何帮助将不胜感激。 谢谢!
【问题讨论】:
-
请发布错误消息,而不是部分消息的屏幕截图。无论如何,原因很明显:数据库中缺少
SEQUENCE。 -
@MickMnemonic 你能告诉我你在说什么序列吗?
-
如果不查看完整的堆栈跟踪并知道错误的来源,真的很难知道。它可能是用于生成联系人 ID 的
SEQUENCE。
标签: java spring oracle hibernate