java - Upgrading Spring and Hibernate libraries -
we upgrading libraries in our application. these old maven dependencies
<maven-war-plugin.version>2.3</maven-war-plugin.version> <maven-release-plugin.version>2.1</maven-release-plugin.version> <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> <maven-soapui-plugin.version>4.0.0</maven-soapui-plugin.version> <maven-failsafe-plugin.version>2.9</maven-failsafe-plugin.version> <maven-jetty-plugin.version>6.1.25</maven-jetty-plugin.version> <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version> <!-- ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo --> <!-- dependency versions --> <!-- ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo --> <cxf.version>2.7.12</cxf.version> <spring.version>3.0.6.release</spring.version> <slf4j.version>1.6.1</slf4j.version> <hibernate.version>3.5.0-final</hibernate.version> <db2.version>4.19.49</db2.version> <dozer.version>3.3.1</dozer.version> <quartz.version>1.8.6</quartz.version>
these current maven dependencies,
<maven-war-plugin.version>2.3</maven-war-plugin.version> <maven-release-plugin.version>2.1</maven-release-plugin.version> <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> <maven-soapui-plugin.version>4.0.0</maven-soapui-plugin.version> <maven-failsafe-plugin.version>2.9</maven-failsafe-plugin.version> <maven-jetty-plugin.version>6.1.25</maven-jetty-plugin.version> <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version> <!-- ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo --> <!-- dependency versions --> <!-- ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo --> <cxf.version>3.1.11</cxf.version> <spring.version>4.1.7.release</spring.version> <slf4j.version>1.7.12</slf4j.version> <hibernate.version>4.3.10.final</hibernate.version> <db2.version>4.19.49</db2.version> <dozer.version>5.4.0</dozer.version> <quartz.version>2.2.3</quartz.version>
we have been using org.springframework.orm.hibernate3.hibernateinterceptor
, has changed opensessioninterceptor
since hibernateinterceptor
not available in hibernate 4.
<!-- dao spring beans wrapped dynamic proxies --> <bean id="evndao" class="org.springframework.aop.framework.proxyfactorybean"> <property name="proxyinterfaces"> <value>com.abc.dao.iabcdao</value> </property> <property name="interceptornames"> <list> <value>hibernateinterceptor</value> <value>abcdaotarget</value> </list> </property> </bean> <bean id="hibernateinterceptor" class="org.springframework.orm.hibernate4.support.opensessioninterceptor"> <property name="sessionfactory" ref="sessionfacorty" /> </bean>
and have fixed compilation error part of upgrade. application getting started not able communicate db properly. getting below exception when searching,
2017-08-20 11:41:25,266 error [https-openssl-nio-8743-exec-10::chy4001] spi.sqlexceptionhelper - [jcc][10143][10845][4.19.49] invalid parameter 1: parameter not set nor registered. errorcode=-4461, sqlstate=42815 2017-08-20 11:41:25,282 error [https-openssl-nio-8743-exec-10::chy4001] cxf.abccxfdispatcher - abcbaseexception rootcause: org.springframework.dao.invaliddataaccessresourceusageexception: not extract resultset; sql [n/a]; nested exception org.hibernate.exception.sqlgrammarexception: not extract resultset @ org.springframework.orm.hibernate4.sessionfactoryutils.converthibernateaccessexception(sessionfactoryutils.java:146) @ org.springframework.orm.hibernate4.hibernatetemplate.doexecute(hibernatetemplate.java:343) @ org.springframework.orm.hibernate4.hibernatetemplate.executewithnativesession(hibernatetemplate.java:308) @ org.springframework.orm.hibernate4.hibernatetemplate.findbycriteria(hibernatetemplate.java:1011) @ abc.dao.abcdao.findbysearchcriteria(abcdao.java:1452) @ sun.reflect.nativemethodaccessorimpl.invoke0(native method) @ sun.reflect.nativemethodaccessorimpl.invoke(nativemethodaccessorimpl.java:62) @ sun.reflect.delegatingmethodaccessorimpl.invoke(delegatingmethodaccessorimpl.java:43) @ java.lang.reflect.method.invoke(method.java:498) @ org.springframework.aop.support.aoputils.invokejoinpointusingreflection(aoputils.java:317) @ org.springframework.aop.framework.reflectivemethodinvocation.invokejoinpoint(reflectivemethodinvocation.java:190) @ org.springframework.aop.framework.reflectivemethodinvocation.proceed(reflectivemethodinvocation.java:157) @ org.springframework.orm.hibernate4.support.opensessioninterceptor.invoke(opensessioninterceptor.java:93) @ org.springframework.aop.framework.reflectivemethodinvocation.proceed(reflectivemethodinvocation.java:179) @ org.springframework.aop.framework.jdkdynamicaopproxy.invoke(jdkdynamicaopproxy.java:207) @ com.sun.proxy.$proxy78.findbysearchcriteria(unknown source) @ abc.business.proofofinsuranceservice.searchproofofinsurance(proofofinsuranceservice.java:1737) @ sun.reflect.nativemethodaccessorimpl.invoke0(native method) @ sun.reflect.nativemethodaccessorimpl.invoke(nativemethodaccessorimpl.java:62) @ sun.reflect.delegatingmethodaccessorimpl.invoke(delegatingmethodaccessorimpl.java:43) @ java.lang.reflect.method.invoke(method.java:498) @ org.springframework.aop.support.aoputils.invokejoinpointusingreflection(aoputils.java:317) @ org.springframework.aop.framework.reflectivemethodinvocation.invokejoinpoint(reflectivemethodinvocation.java:190) @ org.springframework.aop.framework.reflectivemethodinvocation.proceed(reflectivemethodinvocation.java:157) @ org.springframework.transaction.interceptor.transactioninterceptor$1.proceedwithinvocation(transactioninterceptor.java:99) @ org.springframework.transaction.interceptor.transactionaspectsupport.invokewithintransaction(transactionaspectsupport.java:281) @ org.springframework.transaction.interceptor.transactioninterceptor.invoke(transactioninterceptor.java:96) @ org.springframework.aop.framework.reflectivemethodinvocation.proceed(reflectivemethodinvocation.java:179) @ org.springframework.aop.interceptor.exposeinvocationinterceptor.invoke(exposeinvocationinterceptor.java:92) @ org.springframework.aop.framework.reflectivemethodinvocation.proceed(reflectivemethodinvocation.java:179) @ org.springframework.aop.framework.jdkdynamicaopproxy.invoke(jdkdynamicaopproxy.java:207) @ com.sun.proxy.$proxy86.searchproofofinsurance(unknown source) @ com.abc.abc.cxf.abccxfdispatcher.searchproofofinsurance(abccxfdispatcher.java:3024) @ com.abc.abc.cxf.abcabc30impl.searchproofofinsurance(abcabc30impl.java:120) @ sun.reflect.nativemethodaccessorimpl.invoke0(native method) @ sun.reflect.nativemethodaccessorimpl.invoke(nativemethodaccessorimpl.java:62) @ sun.reflect.delegatingmethodaccessorimpl.invoke(delegatingmethodaccessorimpl.java:43) @ java.lang.reflect.method.invoke(method.java:498) @ org.apache.cxf.service.invoker.abstractinvoker.performinvocation(abstractinvoker.java:180) @ org.apache.cxf.jaxws.jaxwsmethodinvoker.performinvocation(jaxwsmethodinvoker.java:66) @ org.apache.cxf.service.invoker.abstractinvoker.invoke(abstractinvoker.java:96) @ org.apache.cxf.jaxws.abstractjaxwsmethodinvoker.invoke(abstractjaxwsmethodinvoker.java:232) @ org.apache.cxf.jaxws.jaxwsmethodinvoker.invoke(jaxwsmethodinvoker.java:85) @ org.apache.cxf.service.invoker.abstractinvoker.invoke(abstractinvoker.java:74) @ org.apache.cxf.interceptor.serviceinvokerinterceptor$1.run(serviceinvokerinterceptor.java:59) @ java.util.concurrent.executors$runnableadapter.call(executors.java:511) @ java.util.concurrent.futuretask.run(futuretask.java:266) @ org.apache.cxf.interceptor.serviceinvokerinterceptor$2.run(serviceinvokerinterceptor.java:126) @ org.apache.cxf.workqueue.synchronousexecutor.execute(synchronousexecutor.java:37) @ org.apache.cxf.interceptor.serviceinvokerinterceptor.handlemessage(serviceinvokerinterceptor.java:131) @ org.apache.cxf.phase.phaseinterceptorchain.dointercept(phaseinterceptorchain.java:308) @ org.apache.cxf.transport.chaininitiationobserver.onmessage(chaininitiationobserver.java:121) @ org.apache.cxf.transport.http.abstracthttpdestination.invoke(abstracthttpdestination.java:262) @ org.apache.cxf.transport.servlet.servletcontroller.invokedestination(servletcontroller.java:234) @ org.apache.cxf.transport.servlet.servletcontroller.invoke(servletcontroller.java:208) @ org.apache.cxf.transport.servlet.servletcontroller.invoke(servletcontroller.java:160) @ org.apache.cxf.transport.servlet.cxfnonspringservlet.invoke(cxfnonspringservlet.java:180) @ org.apache.cxf.transport.servlet.abstracthttpservlet.handlerequest(abstracthttpservlet.java:299) @ org.apache.cxf.transport.servlet.abstracthttpservlet.dopost(abstracthttpservlet.java:218) @ javax.servlet.http.httpservlet.service(httpservlet.java:661) @ org.apache.cxf.transport.servlet.abstracthttpservlet.service(abstracthttpservlet.java:274) @ org.apache.catalina.core.applicationfilterchain.internaldofilter(applicationfilterchain.java:231) @ org.apache.catalina.core.applicationfilterchain.dofilter(applicationfilterchain.java:166) @ org.apache.tomcat.websocket.server.wsfilter.dofilter(wsfilter.java:52) @ org.apache.catalina.core.applicationfilterchain.internaldofilter(applicationfilterchain.java:193) @ org.apache.catalina.core.applicationfilterchain.dofilter(applicationfilterchain.java:166) @ org.apache.catalina.core.standardwrappervalve.invoke(standardwrappervalve.java:198) @ org.apache.catalina.core.standardcontextvalve.invoke(standardcontextvalve.java:96) @ org.apache.catalina.authenticator.authenticatorbase.invoke(authenticatorbase.java:478) @ org.apache.catalina.core.standardhostvalve.invoke(standardhostvalve.java:140) @ org.apache.catalina.valves.errorreportvalve.invoke(errorreportvalve.java:80) @ org.apache.catalina.valves.abstractaccesslogvalve.invoke(abstractaccesslogvalve.java:624) @ org.apache.catalina.core.standardenginevalve.invoke(standardenginevalve.java:87) @ org.apache.catalina.connector.coyoteadapter.service(coyoteadapter.java:342) @ org.apache.coyote.http11.http11processor.service(http11processor.java:799) @ org.apache.coyote.abstractprocessorlight.process(abstractprocessorlight.java:66) @ org.apache.coyote.abstractprotocol$connectionhandler.process(abstractprotocol.java:868) @ org.apache.tomcat.util.net.nioendpoint$socketprocessor.dorun(nioendpoint.java:1455) @ org.apache.tomcat.util.net.socketprocessorbase.run(socketprocessorbase.java:49) @ java.util.concurrent.threadpoolexecutor.runworker(threadpoolexecutor.java:1149) @ java.util.concurrent.threadpoolexecutor$worker.run(threadpoolexecutor.java:624) @ org.apache.tomcat.util.threads.taskthread$wrappingrunnable.run(taskthread.java:61) @ java.lang.thread.run(thread.java:748)
while executing below block of code,
hibernatetemplate hibernatetemplate = gethibernatetemplate(); idresults = (list<string>) hibernatetemplate.findbycriteria(abccriteria, 0, commonconstants.fourhundred);
below hibernate debug log,
2017-08-20 17:15:53,493 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration boolean -> org.hibernate.type.booleantype@68bb9e6 2017-08-20 17:15:53,508 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration boolean -> org.hibernate.type.booleantype@68bb9e6 2017-08-20 17:15:53,508 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.boolean -> org.hibernate.type.booleantype@68bb9e6 2017-08-20 17:15:53,508 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration numeric_boolean -> org.hibernate.type.numericbooleantype@6e2d3dad 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration true_false -> org.hibernate.type.truefalsetype@67c23a1d 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration yes_no -> org.hibernate.type.yesnotype@e1e6115 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration byte -> org.hibernate.type.bytetype@17515f28 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration byte -> org.hibernate.type.bytetype@17515f28 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.byte -> org.hibernate.type.bytetype@17515f28 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration character -> org.hibernate.type.charactertype@48397fa0 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration char -> org.hibernate.type.charactertype@48397fa0 2017-08-20 17:15:53,524 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.character -> org.hibernate.type.charactertype@48397fa0 2017-08-20 17:15:53,539 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration short -> org.hibernate.type.shorttype@8320069 2017-08-20 17:15:53,539 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration short -> org.hibernate.type.shorttype@8320069 2017-08-20 17:15:53,539 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.short -> org.hibernate.type.shorttype@8320069 2017-08-20 17:15:53,539 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration integer -> org.hibernate.type.integertype@3a02e22a 2017-08-20 17:15:53,555 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration int -> org.hibernate.type.integertype@3a02e22a 2017-08-20 17:15:53,555 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.integer -> org.hibernate.type.integertype@3a02e22a 2017-08-20 17:15:53,555 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration long -> org.hibernate.type.longtype@5f2b9c79 2017-08-20 17:15:53,555 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration long -> org.hibernate.type.longtype@5f2b9c79 2017-08-20 17:15:53,555 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.long -> org.hibernate.type.longtype@5f2b9c79 2017-08-20 17:15:53,571 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration float -> org.hibernate.type.floattype@1a9c6f78 2017-08-20 17:15:53,571 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration float -> org.hibernate.type.floattype@1a9c6f78 2017-08-20 17:15:53,571 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.float -> org.hibernate.type.floattype@1a9c6f78 2017-08-20 17:15:53,571 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration double -> org.hibernate.type.doubletype@1000af50 2017-08-20 17:15:53,571 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration double -> org.hibernate.type.doubletype@1000af50 2017-08-20 17:15:53,571 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.double -> org.hibernate.type.doubletype@1000af50 2017-08-20 17:15:53,586 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration big_decimal -> org.hibernate.type.bigdecimaltype@59e96489 2017-08-20 17:15:53,586 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.math.bigdecimal -> org.hibernate.type.bigdecimaltype@59e96489 2017-08-20 17:15:53,586 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration big_integer -> org.hibernate.type.bigintegertype@922405c 2017-08-20 17:15:53,586 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.math.biginteger -> org.hibernate.type.bigintegertype@922405c 2017-08-20 17:15:53,586 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration string -> org.hibernate.type.stringtype@1d6117fd 2017-08-20 17:15:53,586 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.string -> org.hibernate.type.stringtype@1d6117fd 2017-08-20 17:15:53,602 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration nstring -> org.hibernate.type.stringnvarchartype@732302ac 2017-08-20 17:15:53,602 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration ncharacter -> org.hibernate.type.characternchartype@58e6788d 2017-08-20 17:15:53,617 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration url -> org.hibernate.type.urltype@c8ffcb9 2017-08-20 17:15:53,617 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.net.url -> org.hibernate.type.urltype@c8ffcb9 2017-08-20 17:15:53,617 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration date -> org.hibernate.type.datetype@493eabcc 2017-08-20 17:15:53,617 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.sql.date -> org.hibernate.type.datetype@493eabcc 2017-08-20 17:15:53,633 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration time -> org.hibernate.type.timetype@175fa89d 2017-08-20 17:15:53,633 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.sql.time -> org.hibernate.type.timetype@175fa89d 2017-08-20 17:15:53,633 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration timestamp -> org.hibernate.type.timestamptype@7fdc7bdc 2017-08-20 17:15:53,633 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.sql.timestamp -> org.hibernate.type.timestamptype@7fdc7bdc 2017-08-20 17:15:53,633 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.date -> org.hibernate.type.timestamptype@7fdc7bdc 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration dbtimestamp -> org.hibernate.type.dbtimestamptype@1ff7ffcf 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration calendar -> org.hibernate.type.calendartype@45ef695b 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.calendar -> org.hibernate.type.calendartype@45ef695b 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.gregoriancalendar -> org.hibernate.type.calendartype@45ef695b 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration calendar_date -> org.hibernate.type.calendardatetype@2820352f 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration locale -> org.hibernate.type.localetype@27d25715 2017-08-20 17:15:53,649 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.locale -> org.hibernate.type.localetype@27d25715 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration currency -> org.hibernate.type.currencytype@46bdc451 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.currency -> org.hibernate.type.currencytype@46bdc451 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration timezone -> org.hibernate.type.timezonetype@6443640b 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.timezone -> org.hibernate.type.timezonetype@6443640b 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration class -> org.hibernate.type.classtype@36b64f64 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.class -> org.hibernate.type.classtype@36b64f64 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration uuid-binary -> org.hibernate.type.uuidbinarytype@31e970c1 2017-08-20 17:15:53,664 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.util.uuid -> org.hibernate.type.uuidbinarytype@31e970c1 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration uuid-char -> org.hibernate.type.uuidchartype@161cf2d8 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration pg-uuid -> org.hibernate.type.postgresuuidtype@669abb3c 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration binary -> org.hibernate.type.binarytype@fe8bd23 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration byte[] -> org.hibernate.type.binarytype@fe8bd23 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration [b -> org.hibernate.type.binarytype@fe8bd23 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration wrapper-binary -> org.hibernate.type.wrapperbinarytype@6e53e95c 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration byte[] -> org.hibernate.type.wrapperbinarytype@6e53e95c 2017-08-20 17:15:53,680 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration [ljava.lang.byte; -> org.hibernate.type.wrapperbinarytype@6e53e95c 2017-08-20 17:15:53,695 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration image -> org.hibernate.type.imagetype@7a3a235d 2017-08-20 17:15:53,695 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration characters -> org.hibernate.type.chararraytype@538fc179 2017-08-20 17:15:53,742 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration java.lang.object -> org.hibernate.type.objecttype@23922fd6 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_date -> org.hibernate.type.adaptedimmutabletype@1ecbacb2 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_time -> org.hibernate.type.adaptedimmutabletype@2c15dc22 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_timestamp -> org.hibernate.type.adaptedimmutabletype@26d7b421 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_dbtimestamp -> org.hibernate.type.adaptedimmutabletype@55303671 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_calendar -> org.hibernate.type.adaptedimmutabletype@16ddbe59 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_calendar_date -> org.hibernate.type.adaptedimmutabletype@14ab946c 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_binary -> org.hibernate.type.adaptedimmutabletype@fc65c64 2017-08-20 17:15:53,758 debug [localhost-startstop-1::] type.basictyperegistry - adding type registration imm_serializable -> org.hibernate.type.adaptedimmutabletype@5b116053 2017-08-20 17:16:00,201 info [localhost-startstop-1::] hibernate4.hibernatetransactionmanager - using datasource [com.mchange.v2.c3p0.combopooleddatasource[ identitytoken -> 2tivw19q255db1l5z52w|77a05dcf, datasourcename -> 2tivw19q255db1l5z52w|77a05dcf ]] of hibernate sessionfactory hibernatetransactionmanager 2017-08-20 17:18:32,599 debug [https-openssl-nio-8743-exec-10::chy4001] support.abstractplatformtransactionmanager - creating new transaction name [com.abc.proofofinsuranceservice.searchproofofinsurance]: propagation_requires_new,isolation_default,readonly 2017-08-20 17:18:32,755 debug [https-openssl-nio-8743-exec-10::chy4001] hibernate4.hibernatetransactionmanager - opened new session [sessionimpl(persistencecontext[entitykeys=[],collectionkeys=[]];actionqueue[insertions=org.hibernate.engine.spi.executablelist@ea6bb5 updates=org.hibernate.engine.spi.executablelist@3356ebd2 deletions=org.hibernate.engine.spi.executablelist@b6a055c orphanremovals=org.hibernate.engine.spi.executablelist@4cd9a363 collectioncreations=org.hibernate.engine.spi.executablelist@1f3dce8e collectionremovals=org.hibernate.engine.spi.executablelist@1bb1aec0 collectionupdates=org.hibernate.engine.spi.executablelist@40aa080f collectionqueuedops=org.hibernate.engine.spi.executablelist@416979c2 unresolvedinsertdependencies=unresolvedentityinsertactions[]])] hibernate transaction 2017-08-20 17:18:32,755 debug [https-openssl-nio-8743-exec-10::chy4001] hibernate4.hibernatetransactionmanager - preparing jdbc connection of hibernate session [sessionimpl(persistencecontext[entitykeys=[],collectionkeys=[]];actionqueue[insertions=org.hibernate.engine.spi.executablelist@ea6bb5 updates=org.hibernate.engine.spi.executablelist@3356ebd2 deletions=org.hibernate.engine.spi.executablelist@b6a055c orphanremovals=org.hibernate.engine.spi.executablelist@4cd9a363 collectioncreations=org.hibernate.engine.spi.executablelist@1f3dce8e collectionremovals=org.hibernate.engine.spi.executablelist@1bb1aec0 collectionupdates=org.hibernate.engine.spi.executablelist@40aa080f collectionqueuedops=org.hibernate.engine.spi.executablelist@416979c2 unresolvedinsertdependencies=unresolvedentityinsertactions[]])] 2017-08-20 17:18:32,817 debug [https-openssl-nio-8743-exec-10::chy4001] hibernate4.hibernatetransactionmanager - exposing hibernate transaction jdbc transaction [com.mchange.v2.c3p0.impl.newproxyconnection@5d7e5163 [wrapping: com.ibm.db2.jcc.t4.b@1b2be0c1]] 2017-08-20 17:18:33,192 debug [https-openssl-nio-8743-exec-10::chy4001] spi.sqlstatementlogger - select this_.id y0_ evn.evn this_ this_.sourceapplication=? , this_.sourceapplicationid=? group this_.id fetch first 400 rows 2017-08-20 17:18:33,254 debug [https-openssl-nio-8743-exec-10::chy4001] support.abstractplatformtransactionmanager - initiating transaction rollback 2017-08-20 17:18:33,254 debug [https-openssl-nio-8743-exec-10::chy4001] hibernate4.hibernatetransactionmanager - rolling hibernate transaction on session [sessionimpl(persistencecontext[entitykeys=[],collectionkeys=[]];actionqueue[insertions=org.hibernate.engine.spi.executablelist@ea6bb5 updates=org.hibernate.engine.spi.executablelist@3356ebd2 deletions=org.hibernate.engine.spi.executablelist@b6a055c orphanremovals=org.hibernate.engine.spi.executablelist@4cd9a363 collectioncreations=org.hibernate.engine.spi.executablelist@1f3dce8e collectionremovals=org.hibernate.engine.spi.executablelist@1bb1aec0 collectionupdates=org.hibernate.engine.spi.executablelist@40aa080f collectionqueuedops=org.hibernate.engine.spi.executablelist@416979c2 unresolvedinsertdependencies=unresolvedentityinsertactions[]])] 2017-08-20 17:18:33,254 debug [https-openssl-nio-8743-exec-10::chy4001] hibernate4.hibernatetransactionmanager - closing hibernate session [sessionimpl(persistencecontext[entitykeys=[],collectionkeys=[]];actionqueue[insertions=org.hibernate.engine.spi.executablelist@ea6bb5 updates=org.hibernate.engine.spi.executablelist@3356ebd2 deletions=org.hibernate.engine.spi.executablelist@b6a055c orphanremovals=org.hibernate.engine.spi.executablelist@4cd9a363 collectioncreations=org.hibernate.engine.spi.executablelist@1f3dce8e collectionremovals=org.hibernate.engine.spi.executablelist@1bb1aec0 collectionupdates=org.hibernate.engine.spi.executablelist@40aa080f collectionqueuedops=org.hibernate.engine.spi.executablelist@416979c2 unresolvedinsertdependencies=unresolvedentityinsertactions[]])] after transaction
can please on issue.
Comments
Post a Comment