Hibernate:javax.naming.NoInitialContextException(使用Hibernate生成的DAO)

时间:2013-02-07 00:17:28

标签: java eclipse hibernate dao

我是Hibernate的新手。使用Eclipse indigo的Hibernate 3.0。

这里讨论的主题和答案没有帮助,Hibernate: javax.naming.NoInitialContextException (Component Mapping via Annotations) 即我尝试从会话工厂删除名称仍然得到错误。

我错过了什么吗?有人能帮忙吗?

错误如下:

Feb 6, 2013 3:59:05 PM PatternsHome getSessionFactory
SEVERE: Could not locate SessionFactory in JNDI
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:305)
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:342)
at javax.naming.InitialContext.lookup(InitialContext.java:409)
at PatternsHome.getSessionFactory(PatternsHome.java:26)
at PatternsHome.<init>(PatternsHome.java:21)
at OutputProcessing.saveData(OutputProcessing.java:47)
at OutputProcessing.FPFileOutputWriter(OutputProcessing.java:110)
at OrderPatternFileCreate.main(OrderPatternFileCreate.java:84)
Exception in thread "main" java.lang.IllegalStateException: Could not locate SessionFactory in JNDI
at PatternsHome.getSessionFactory(PatternsHome.java:29)
at PatternsHome.<init>(PatternsHome.java:21)
at OutputProcessing.saveData(OutputProcessing.java:47)
at OutputProcessing.FPFileOutputWriter(OutputProcessing.java:110)
at OrderPatternFileCreate.main(OrderPatternFileCreate.java:84)

Hibernate配置文件:

<?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.connection.driver_class">com.mysql.jdbc.Driver</property>
  <property name="hibernate.connection.password">root</property>
  <property name="hibernate.connection.url">jdbc:mysql://localhost/test</property>
  <property name="hibernate.connection.username">root</property>
  <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
  <property name="show sql">true</property>
  <mapping resource="hibernate_db_mapping.hbm.xml"/>
 </session-factory>
</hibernate-configuration>

DAO文件由Hibernate生成,大纲如下:

public class PatternsHome {

private static final Log log = LogFactory.getLog(PatternsHome.class);

private final SessionFactory sessionFactory = getSessionFactory();

protected SessionFactory getSessionFactory() {
    try {
        return (SessionFactory) new InitialContext()
                .lookup("SessionFactory");
    } catch (Exception e) {
        log.error("Could not locate SessionFactory in JNDI", e);
        throw new IllegalStateException(
                "Could not locate SessionFactory in JNDI");
    }
}
    .....
   }

1 个答案:

答案 0 :(得分:0)

我无法独立完成这项工作。但我使用HibernateUtil创建了一个通用DAO,并使用

创建了sessionFactory
 sessionFactory = new Configuration().configure(new File("hibernate.cfg.xml")).buildSessionFactory();

使用

访问我的DAO中的数据库
Session session = HibernateUtil.getSessionFactory().openSession();
    Transaction transaction = null;
    try{
        transaction = session.beginTransaction();
        session.save(myData);
        transaction.commit();
        System.out.println("Data is Saved");
    }catch(Exception e){
        e.printStackTrace();
    }finally{
        session.close();
    }

这很有用。