- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 Web 应用程序中遇到了 Hibernate 的奇怪问题,尽管我在测试独立应用程序中没有遇到它。
faces-config.xml
<managed-bean>
<managed-bean-name>businessUserData</managed-bean-name>
<managed-bean-class>org.beans.BusinessUserDataHibernate</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>daoUserData</property-name>
<value>#{daoUserData}</value>
</managed-property>
</managed-bean>
<managed-bean>
<managed-bean-name>daoUserData</managed-bean-name>
<managed-bean-class>org.data.source.DAOuserDataHibernate</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
DAOuserDataHibernate.getUserData() - 我在 BusinessUserDataHibernate 类中将其用作服务类
public UserData getUserData(String userName){
sessionFactory = new Configuration().configure().buildSessionFactory();
UserData userData=null;
try{
session = sessionFactory.openSession();
tx = session.beginTransaction();
userData = (UserData)session.get(UserData.class, userName);
tx.commit();
session.close();
return userData;
}
catch(HibernateException hEx){ return null; }
}
hibernate.cfg.xml
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/mySQLdb</property>
<property name="connection.username">...</property>
<property name="connection.password">...</property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.MySQLDialect</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 create the database schema on startup -->
<property name="hbm2ddl.auto">update</property>
<mapping resource="UserData.hbm.xml"/>
</session-factory>
</hibernate-configuration>
UserData.hbm.xml
<hibernate-mapping package="org.hibernate">
<class name="UserData" table="UserData">
<id name="userId" column="id" type="string"/>
<property name="xmlData" type="clob"/>
</class>
</hibernate-mapping>
我导入的 jar
当我从独立测试应用程序中运行应用程序时,它工作正常(hibernate 正在根据我调用的 DAO 方法选取数据或写入数据库)。当我将其部署到 WAR 并在 Glasfish3 服务器上运行时,它会转储
堆栈跟踪
Caused by: org.hibernate.HibernateException: Unable to instantiate default tuplizer [org.hibernate.tuple.entity.PojoEntityTuplizer]
at org.hibernate.tuple.entity.EntityTuplizerFactory.constructTuplizer(EntityTuplizerFactory.java:110)
at org.hibernate.tuple.entity.EntityTuplizerFactory.constructDefaultTuplizer(EntityTuplizerFactory.java:135)
at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.<init>(EntityEntityModeToTuplizerMapping.java:56)
at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:323)
at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:433)
at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:109)
at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:55)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:231)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1313)
at org.data.source.DAOuserHibernate.getAllUsers(DAOuserHibernate.java:61)
at org.spring.beans.BusinessUserHibernate.getAllUsers(BusinessUserHibernate.java:33)
我尝试了不同的方法,也有 Spring 支持,但最终我遇到了这个异常。看起来它与构建 sessionFactory 以某种方式相关。您能帮我解决这件事吗?
提前谢谢您马尔辛
最佳答案
这可能不是你的情况,但 Hibernate 在使用 java 11 而不是预期的 Java 8 时会抛出此异常
关于Java:Web 应用程序中的 hibernate - 无法实例化默认 tuplizer [org.hibernate.tuple.entity.PojoEntityTuplizer],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9825701/
在 Hibernate 3.x 文档中,我遇到了 Tuplizer 的概念:Tuplizers 我是 Hibernate 的新手,我正在尝试理解它的概念及其优点,但我对那里给出的解释感到困难。你能帮我
最近我将我的 hibernate 从 3.1 更新到 4.3,我正在尝试使用注释而不是 xml。使用 Xml 一切正常,注释抛出一堆异常。我坚持的最后一个是下面的堆栈跟踪,请阐明它。我非常需要帮助,因
我用复合键编写了示例 hibernate 应用程序,如下所示:当我尝试运行应用程序来创建表时出现以下错误。我是 hibernate 新手。谁能让我知道我在这里缺少什么。 产品.hbm.xml:
我在 NHibernate 中看到了一个提到 Tuplizer 的帖子,有人可以为 Tuplizer 提供一个好的定义或引用吗? 最佳答案 来自 ITuplizer's source code : A
我们正在努力实现 this spectaular hack ,并且已经达到 foreach (var persistentClass in configuration.ClassMappings) {
我正在尝试使用 Hibernate 来持久化一个如下所示的类: public class Item implements Serializable, Comparable { // Item id p
我在配置第一个 hibernate 程序时遇到问题,但我被困在该过程的最后一步。这是堆栈跟踪: Dec 01, 2015 6:54:34 PM org.hibernate.cfg.Environmen
我正在使用 Hibernate 开发应用程序,但在连接数据库时出现异常。异常(exception)是: Unable to instantiate default tuplizer [org.hibe
有谁知道如何摆脱这个? 22.03.2011 09:52:43 org.apache.catalina.core.StandardContext filterStart SEVERE: Excepti
我在 Web 应用程序中遇到了 Hibernate 的奇怪问题,尽管我在测试独立应用程序中没有遇到它。 faces-config.xml businessUserData
我正在使用 Hibernate 和 spring 以及 apach tomcate 开发一个应用程序 完整的堆栈跟踪是: GRAVE: Context initialization failed or
我正在尝试学习使用 hibernate 将一条简单的记录插入 MySQL 数据库,我正在关注这个 article来自 Mkyong,我卡在了最后一步,即运行 App.Java 时。 请帮助。提前致谢。
我正在使用 Hibernate 框架开发 Web 应用程序。我在尝试运行 webapp 时遇到此错误。 错误控制台: Exception caught in Create Account Dataor
我是一名优秀的程序员,十分优秀!