【问题标题】:Hibernate: javax.naming.NoInitialContextException (using DAO generated by Hibernate)Hibernate:javax.naming.NoInitialContextException(使用Hibernate生成的DAO)
【发布时间】:2013-01-22 09:07:55
【问题描述】:

我是 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)

休眠配置文件:

<?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");
    }
}
    .....
   }

【问题讨论】:

    标签: java eclipse hibernate dao


    【解决方案1】:

    我无法单独完成这项工作。但我使用 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();
        }
    

    这行得通。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2012-04-09
      • 1970-01-01
      • 2011-11-07
      • 1970-01-01
      • 1970-01-01
      • 2011-10-19
      • 2011-02-20
      • 1970-01-01
      相关资源
      最近更新 更多