-
org.hibernate.InvalidMappingException: Could not parse
ibernate的报异常请教那位大侠帮我解决啊!我找了好久不找到那出错啊!&&&&&&&&&&&&&&&&&&Environment-Hibernate3.2.5Environment-hibernate.propertiesnotfoundEnviron...
338
热度 -
org.hibernate.LazyInitializationException,该怎么解决
org.hibernate.LazyInitializationExceptionorg.hibernate.LazyInitializationException:failedtolazilyinitializeacollectionofrole:cd.itcast.pss.domain.User.roles,nosessionorsessionwasclosed atorg.hibernate...
185
热度 -
org.hibernate.exception.ConstraintViolationException: Could
这个东西怎么回事?一提交就这样typeExceptionreportmessagedescriptionTheserverencounteredaninternalerror()thatpreventeditfromfulfillingthisrequest.exceptionorg.hibernate.exception.ConstraintViolationException:Couldnot...
46
热度 -
org.springframework.jdbc.UncategorizedSQLException: Hibernate operation:
添加的时候出错,什么原因?[framework]2011-10-1111:18:49,703-org.hibernate.util.JDBCExceptionReporter-0[http-8080-2]WARNorg.hibernate.util.JDBCExceptionReporter-SQLError:1364,SQLState:HY000[framework]2011-10-1111:1...
174
热度 -
org.hibernate.HibernateException: Hibernate Dialect must be explicitly set
hibernate+spring+struts启动tomcat时出错严重:Exceptionsendingcontextinitializedeventtolistenerinstanceofclassorg.springframework.web.context.ContextLoaderListenerorg.springframework.beans.factory.BeanCreation...
1036
热度 -
请问关于hibernate关联查询的有关问题
请教关于hibernate关联查询的问题我现在有2张表一张是表A一张表BA表是主表,B是A的子表,也在xml配置了2张表的关系是many-to-one,直接做A表查询的时候可以直接取出B表的对应的值,但是我现在要做一个条件查询.条件是B表的1个字段的值Criteriac=sessionFactory.getCurrentSession().createCriteria(A.class);c.add...
80
热度 -
hibernate 多级关联查询有关问题
hibernate多级关联查询问题有三张数据库表:A,B,CA的的字段包括:ida(PK),idbB的属性包括:idb(PK),idcC的属性包括:idc(PK),name对应的实体是A:ida,B实体B:idb,C实体C:idc,name我现在想通过C的name属性进行条件查询。我的HQL语句是:selectida,B.C.namefromA上面这句select语句是没有问题的。我现在要做条件查...
37
热度 -
org.springframework.jdbc.UncategorizedSQLException: Hibernate operation
ssh框架SqlServer数据库,当注册时候,插如数据库时提示一下错误。不知道时数据库版本有问题还是其他的错误?请知情者给予帮助。Hibernate:insertintoshare.dbo.user(name,password,telephone,email,question,answer,noticedtimes)values(?,?,?,?,?,?,?)selectscope_identit...
114
热度 -
org.hibernate.HibernateException: /hibernate.cfg.xml not found
测试类运行出现如下警告!请问怎么解决?测试类源码:packagech03.hibernate;importorg.hibernate.*;importorg.hibernate.cfg.*;publicclassTest{ publicstaticvoidmain(String[]args){ try{ SessionFactorysf=newConfiguration().configur...
110
热度 -
* org.hibernate.impl.QueryImpl * 错误
**********org.hibernate.impl.QueryImpl'>org.hibernate.impl.QueryImpl*********异常!查询的时候出现异常如下:javax.servlet.ServletException:org.hibernate.impl.QueryImpl org.apache.struts.action.RequestProcessor.proces...
681
热度 -
org.hibernate.exception.JDBCConnectionException:
这是什么错误?大家帮忙看看15:32:10,687ERRORJDBCExceptionReporter:72-[Microsoft][SQLServer2000DriverforJDBC]Can'tstartaclonedconnectionwhileinmanualtransactionmode.org.hibernate.exception.JDBCConnectionExceptio...
197
热度 -
org.hibernate.MappingException: Error reading resource: com/benben/hibernate/
hibernate3.0的一个问题,研究好几天了??????高手进,技术一般的回答不了所有的方法在main测试没有问题,可以正常输出数据库的结果,可是在jsp里就报如下错误,困扰我好久了,帮忙看看,谢谢%%%%ErrorCreatingSessionFactory%%%%org.hibernate.MappingException:Errorreadingresource:com/benben/h...
526
热度 -
DetachedCriteria 关联查询,该怎么处理
DetachedCriteria关联查询本帖最后由qq245282209于2014-03-2513:52:13编辑有如下两个实体类:A.javapublicclassA{ privateUseruser; @OneToOne(fetch=FetchType.EAGER) @JoinColumn(name="user_id") publicUsergetUser(){ returnuser; } ...
63
热度 -
org.hibernate.exception.GenericJDBCException: Could
学习hibernate时的问题一.我用sqlserver2000建了一个数据库FileManagement并在其中建表client,开发工具是Myeclipse创建了web工程并通过addhibernatecompablities生成了hibernate.cfg.xml文件,内容是这样的:<hibernate-configuration><session-factory>&...
386
热度 -
org.hibernate.HibernateException: Hibernate Dialect
关于Hibernate的异常问题org.hibernate.HibernateException:HibernateDialectmustbeexplicitlyset atorg.hibernate.dialect.DialectFactory.determineDialect(DialectFactory.java:57) atorg.hibernate.dialect.DialectFact...
201
热度 -
求hibernate执行原生sql拼凑sql语句的动态参数绑定有关问题
求hibernate执行原生sql拼凑sql语句的动态参数绑定问题传递一个map集合然后我来拼凑sql语句进行查询。拼凑是没什么问题倒是动态绑定参数上总是报异常应该是没绑定上的感觉:org.hibernate.QueryException'>org.hibernate.QueryException:Expectedpositionalparametercount:2,actualparameter...
93
热度 -
hibernate查询父表中的name字段,为什么会查询子表,而且说不能解析name字段 ...
hibernate查询父表中的name字段,为什么会查询子表,而且说不能解析name字段? 刚学hibernate,使用hibernate已经映射表到数据库了,有A,B,C三张表,B,C分别继承A的共有字段,现在我使用session.createQuery("from"+typeClazz.getSimpleName()+"ewheree....
217
热度 -
hibernate的org.hibernate.TransientObjectException错误如何办处理
hibernate的org.hibernate.TransientObjectException'>org.hibernate.TransientObjectException异常怎么办处理下面是异常信息org.hibernate.TransientObjectException:objectreferencesanunsavedtransientinstance-savethetransient...
96
热度 -
org.hibernate.InvalidMappingException 异常问题
我们平时在做Hinbernate开发的时候,遇到org.hibernate.InvalidMappingException异常问题该如何解决??解决方案:1、映射文件中的持久化类属性注意大小写,数据库中的字段不区分大小写,包名是这样写的<hibernate-mappingpackage="hibernateTest.entity">。2、hibernate配置文件的...
888
热度 -
linux上weblogic部署SSH项目出现有关问题 org.hibernate.hql.ast.HqlToken
linux下weblogic部署SSH项目出现问题org.hibernate.hql.ast.HqlToken Windows下Tomcat下的SSH项目要部署到linuxweblogic下,首先对项目涉及目录(D:\linux没有盘符)相关的地方进行修改(通过System.getProperty("os.name"))。1、将项目部署后,能访问到jsp页面,但是一提交就会出现取不到数据现象,于是...
738
热度