- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
使用 Eclipse+Hibernate+Oracle 9,我的测试应用程序(在 Eclipse 内运行)返回此错误:
"Failed to create sessionFactory object.org.hibernate.HibernateException: could not init listeners"
(用引号谷歌搜索,什么也找不到)
我是 Hibernate 新手,我想将其添加到现有的 web 应用程序项目中,但有以下限制:
Java 1.5.0_22
eclipse 赫利俄斯
Oracle 9
所以我选择兼容的Hibernate 3.6.10。
一切都可以编译。 jar 和构建路径似乎没问题。在 Eclipse 中运行我的应用程序,控制台显示以下内容:
- Hibernate Commons Annotations 3.2.0.Final
- Hibernate 3.6.10.Final
- hibernate.properties not found
- Bytecode provider name : javassist
- using JDK 1.4 java.sql.Timestamp handling
- configuring from resource: ext\als\hibernate\hibernate.cfg.xml
- Configuration resource: ext\als\hibernate\hibernate.cfg.xml
- Reading mappings from resource : ext\als\hibernate\mappings\Document.hbm.xml
- Configured SessionFactory: null
- Mapping class: ext.als.xcg.mrp.traceability.beans.Document -> DOCUMENT
- Using Hibernate built-in connection pool (not for production use!)
- Hibernate connection pool size: 1
- autocommit mode: false
- using driver: oracle.jdbc.OracleDriver at URL: jdbc:oracle:thin:@localhost:1521:wind
- connection properties: {user=mrp, password=****}
- Using dialect: org.hibernate.dialect.Oracle9iDialect
- Could not obtain connection metadata
- Using default transaction strategy (direct JDBC transactions)
- No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
- Automatic flush during beforeCompletion(): disabled
- Automatic session close at end of transaction: disabled
- JDBC batch size: 15
- JDBC batch updates for versioned data: disabled
- Scrollable result sets: enabled
- JDBC3 getGeneratedKeys(): disabled
- Connection release mode: auto
- Default batch fetch size: 1
- Generate SQL with comments: disabled
- Order SQL updates by primary key: disabled
- Order SQL inserts for batching: disabled
- Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
- Using ASTQueryTranslatorFactory
- Query language substitutions: {}
- JPA-QL strict compliance: disabled
- Second-level cache: enabled
- Query cache: disabled
- Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
- Cache provider: org.hibernate.cache.NoCacheProvider
- Optimize cache for minimal puts: disabled
- Structured second-level cache entries: disabled
- Echoing all SQL to stdout
- Statistics: disabled
- Deleted entity synthetic identifier rollback: disabled
- Default entity-mode: pojo
- Named query checking : enabled
- Check Nullability in Core (should be disabled when Bean Validation is on): enabled
Failed to create sessionFactory object.org.hibernate.HibernateException: could not init listeners
Exception in thread "main" java.lang.ExceptionInInitializerError
at ext.als.xcg.mrp.traceability.manager.DocumentManager.main(DocumentManager.java:26)
Caused by: org.hibernate.HibernateException: could not init listeners
at org.hibernate.event.EventListeners.initializeListeners(EventListeners.java:205)
at org.hibernate.cfg.Configuration.getInitializedEventListeners(Configuration.java:2010)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1872)
at ext.als.xcg.mrp.traceability.manager.DocumentManager.main(DocumentManager.java:21)
Caused by: java.lang.ClassCastException: org.hibernate.cfg.Configuration
at org.hibernate.search.event.FullTextIndexEventListener.initialize(FullTextIndexEventListener.java:82)
at org.hibernate.event.EventListeners$1.processListener(EventListeners.java:198)
at org.hibernate.event.EventListeners.processListeners(EventListeners.java:181)
at org.hibernate.event.EventListeners.initializeListeners(EventListeners.java:194)
... 3 more
这是我的源代码和配置文件:
Hibernate.cfg.xml:
<?xml version="1.0"?>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">oracle.jdbc.OracleDriver</property>
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:wind</property>
<property name="connection.username">mrp</property>
<property name="connection.password">mrp</property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.Oracle9iDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<property name="current_session_context_class">thread</property>
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">update</property>
<!-- to solve java.lang.NoSuchMethodException: org.hibernate.validator.ClassValidator error -->
<property name="hibernate.validator.apply_to_ddl">false</property>
<property name="hibernate.validator.autoregister_listeners">false</property>
<property name="hibernate.jdbc.use_get_generated_keys">false</property>
<!-- List of XML mapping files -->
<mapping resource="ext\als\hibernate\mappings\Document.hbm.xml"/>
</session-factory>
我的对象映射
<hibernate-mapping>
此类包含文档详细信息。
</id>
<property name="docNumber" column="DOC_NUMBER" type="string"/>
<property name="docVersion" column="DOC_VERSION" type="string"/>
<property name="xcgFile" column="XCG_FILE" type="string"/>
<property name="xcgDate" column="XCG_DATE" type="date"/>
我的测试类(class):
package ext.als.xcg.mrp.traceability.manager;
import java.util.List;
import java.util.Date;
import java.util.Iterator;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import ext.als.xcg.mrp.traceability.beans.Document;
public class DocumentManager {
private static SessionFactory factory;
public static void main(String[] args) {
try{
factory = new Configuration().configure("ext\\als\\hibernate\\hibernate.cfg.xml").buildSessionFactory();
//factory = new Configuration().configure().buildSessionFactory();
}catch (Throwable ex) {
System.err.println("Failed to create sessionFactory object." + ex);
throw new ExceptionInInitializerError(ex);
}
DocumentManager DM = new DocumentManager();
/* Add few employee records in database */
Integer docID1 = DM.addDocument("DOC001", "00", "file_1.csv", new Date());
Integer docID2 = DM.addDocument("DOC002", "02", "file_1.csv", new Date());
Integer docID3 = DM.addDocument("DOC003", "05", "file_1.csv", new Date());
/* List down all the employees */
DM.listDocuments();
/* Delete an employee from the database */
DM.deleteDocument(docID2);
/* List down new list of the employees */
DM.listDocuments();
}
/* Method to CREATE an employee in the database */
public Integer addDocument(String docNumber, String docVersion, String xcgFile, Date xcgDate){
Session session = factory.openSession();
Transaction tx = null;
Integer documentID = null;
try{
tx = session.beginTransaction();
Document document = new Document(docNumber, docVersion, xcgFile, xcgDate);
documentID = (Integer) session.save(document);
tx.commit();
}catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
}finally {
session.close();
}
return documentID;
}
/* Method to READ all the documents */
public void listDocuments( ){
Session session = factory.openSession();
Transaction tx = null;
try{
tx = session.beginTransaction();
List documents = session.createQuery("FROM Document").list();
for (Iterator iterator =
documents.iterator(); iterator.hasNext();){
Document document = (Document) iterator.next();
System.out.println("Document Number: " + document.getDocNumber());
System.out.println("Document Version:" + document.getDocVersion());
System.out.println("Xcg File:" + document.getXcgFile());
System.out.println("Xcg Date:" + document.getXcgDate());
}
tx.commit();
}catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
}finally {
session.close();
}
}
/* Method to DELETE an employee from the records */
public void deleteDocument(Integer documentID){
Session session = factory.openSession();
Transaction tx = null;
try{
tx = session.beginTransaction();
Document document =
(Document)session.get(Document.class, documentID);
session.delete(document);
tx.commit();
}catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
}finally {
session.close();
}
}
}
预先感谢您的帮助!朱塞佩
最佳答案
看起来您的 Hibernate 和 Hibernate Search jar 版本不兼容。
您需要使用
Hibernate 3.6.0.Final 为 Hibernate Search 3.3.0.Final
或
Hibernate 3.6.3.Final 为 Hibernate Search 3.4.0.Final
关于java - 无法创建 sessionFactory 对象.org.hibernate.HibernateException : could not init listeners,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34791880/
我正在编写一个具有以下签名的 Java 方法。 void Logger(Method method, Object[] args); 如果一个方法(例如 ABC() )调用此方法 Logger,它应该
我是 Java 新手。 我的问题是我的 Java 程序找不到我试图用作的图像文件一个 JButton。 (目前这段代码什么也没做,因为我只是得到了想要的外观第一的)。这是我的主课 代码: packag
好的,今天我在接受采访,我已经编写 Java 代码多年了。采访中说“Java 垃圾收集是一个棘手的问题,我有几个 friend 一直在努力弄清楚。你在这方面做得怎么样?”。她是想骗我吗?还是我的一生都
我的 friend 给了我一个谜语让我解开。它是这样的: There are 100 people. Each one of them, in his turn, does the following
如果我将使用 Java 5 代码的应用程序编译成字节码,生成的 .class 文件是否能够在 Java 1.4 下运行? 如果后者可以工作并且我正在尝试在我的 Java 1.4 应用程序中使用 Jav
有关于why Java doesn't support unsigned types的问题以及一些关于处理无符号类型的问题。我做了一些搜索,似乎 Scala 也不支持无符号数据类型。限制是Java和S
我只是想知道在一个 java 版本中生成的字节码是否可以在其他 java 版本上运行 最佳答案 通常,字节码无需修改即可在 较新 版本的 Java 上运行。它不会在旧版本上运行,除非您使用特殊参数 (
我有一个关于在命令提示符下执行 java 程序的基本问题。 在某些机器上我们需要指定 -cp 。 (类路径)同时执行java程序 (test为java文件名与.class文件存在于同一目录下) jav
我已经阅读 StackOverflow 有一段时间了,现在我才鼓起勇气提出问题。我今年 20 岁,目前在我的家乡(罗马尼亚克卢日-纳波卡)就读 IT 大学。足以介绍:D。 基本上,我有一家提供簿记应用
我有 public JSONObject parseXML(String xml) { JSONObject jsonObject = XML.toJSONObject(xml); r
我已经在 Java 中实现了带有动态类型的简单解释语言。不幸的是我遇到了以下问题。测试时如下代码: def main() { def ks = Map[[1, 2]].keySet()
一直提示输入 1 到 10 的数字 - 结果应将 st、rd、th 和 nd 添加到数字中。编写一个程序,提示用户输入 1 到 10 之间的任意整数,然后以序数形式显示该整数并附加后缀。 public
我有这个 DownloadFile.java 并按预期下载该文件: import java.io.*; import java.net.URL; public class DownloadFile {
我想在 GUI 上添加延迟。我放置了 2 个 for 循环,然后重新绘制了一个标签,但这 2 个 for 循环一个接一个地执行,并且标签被重新绘制到最后一个。 我能做什么? for(int i=0;
我正在对对象 Student 的列表项进行一些测试,但是我更喜欢在 java 类对象中创建硬编码列表,然后从那里提取数据,而不是连接到数据库并在结果集中选择记录。然而,自从我这样做以来已经很长时间了,
我知道对象创建分为三个部分: 声明 实例化 初始化 classA{} classB extends classA{} classA obj = new classB(1,1); 实例化 它必须使用
我有兴趣使用 GPRS 构建车辆跟踪系统。但是,我有一些问题要问以前做过此操作的人: GPRS 是最好的技术吗?人们意识到任何问题吗? 我计划使用 Java/Java EE - 有更好的技术吗? 如果
我可以通过递归方法反转数组,例如:数组={1,2,3,4,5} 数组结果={5,4,3,2,1}但我的结果是相同的数组,我不知道为什么,请帮助我。 public class Recursion { p
有这样的标准方式吗? 包括 Java源代码-测试代码- Ant 或 Maven联合单元持续集成(可能是巡航控制)ClearCase 版本控制工具部署到应用服务器 最后我希望有一个自动构建和集成环境。
我什至不知道这是否可能,我非常怀疑它是否可能,但如果可以,您能告诉我怎么做吗?我只是想知道如何从打印机打印一些文本。 有什么想法吗? 最佳答案 这里有更简单的事情。 import javax.swin
我是一名优秀的程序员,十分优秀!