Hi,

I am trying to fetch a record from tableusing primary key of another table 
which is foreign key to this table.
But getting number format exception. I have direct query and Jpa queries. 
all have same result. Strange thing is the input string for which I am 
getting number format exception is not the uuid I provided as query 
parameter.

stacktrace

2021-02-03 22:21:13.656 DEBUG 13584 --- [tp955875766-397] 
org.hibernate.SQL                        : select 
serviceacc0_.service_access_id as service_1_7_, serviceacc0_.role_id as 
role_id2_7_, serviceacc0_.service_id as service_3_7_, serviceacc0_.user_id 
as user_id4_7_ from service_access serviceacc0_ left outer join user user1_ 
on serviceacc0_.user_id=user1_.user_id left outer join service visionserv2_ 
on serviceacc0_.service_id=visionserv2_.service_id where user1_.user_id=? 
and visionserv2_.service_key=?
2021-02-03 22:21:13.657 TRACE 13584 --- [tp955875766-397] 
o.h.type.descriptor.sql.BasicBinder      : binding parameter [1] as 
[BINARY] - [89edbb98-9de7-468c-a037-c9a7b04f0e92]
2021-02-03 22:21:13.658 TRACE 13584 --- [tp955875766-397] 
o.h.type.descriptor.sql.BasicBinder      : binding parameter [2] as 
[VARCHAR] - [IDP]
2021-02-03 22:21:13.658 DEBUG 13584 --- [tp955875766-397] 
org.hibernate.SQL                        : select role0_.role_id as 
role_id1_3_0_, role0_.description as descript2_3_0_, role0_.role_name as 
role_nam3_3_0_ from role role0_ where role0_.role_id=?
2021-02-03 22:21:13.659 TRACE 13584 --- [tp955875766-397] 
o.h.type.descriptor.sql.BasicBinder      : binding parameter [1] as 
[BINARY] - [9c6178ab-c79e-455b-bf75-799ba90817d7]
2021-02-03 22:21:13.659 DEBUG 13584 --- [tp955875766-397] 
org.hibernate.SQL                        : select visionserv0_.service_id 
as service_1_6_0_, visionserv0_.service_key as service_2_6_0_ from service 
visionserv0_ where visionserv0_.service_id=?
2021-02-03 22:21:13.660 TRACE 13584 --- [tp955875766-397] 
o.h.type.descriptor.sql.BasicBinder      : binding parameter [1] as 
[BINARY] - [80cff4cf-5c80-43b1-90f2-9786f8eca39c]
2021-02-03 22:21:15.404 DEBUG 13584 --- [tp955875766-397] 
org.hibernate.SQL                        : select * from role_property p 
where p.role_id=?
2021-02-03 22:21:15.404 TRACE 13584 --- [tp955875766-397] 
o.h.type.descriptor.sql.BasicBinder      : binding parameter [1] as 
[BINARY] - [9c6178ab-c79e-455b-bf75-799ba90817d7]
2021-02-03 22:21:15.408  WARN 13584 --- [tp955875766-397] 
o.h.engine.jdbc.spi.SqlExceptionHelper   : SQL Error: 22018, SQLState: 22018
2021-02-03 22:21:15.409 ERROR 13584 --- [tp955875766-397] 
o.h.engine.jdbc.spi.SqlExceptionHelper   : Data conversion error converting 
"304f8b20-4a7d-4d1e-9d74-65f0ed60ebd2" [22018-200]
2021-02-03 22:21:15.422 DEBUG 13584 --- [tp955875766-397] 
.m.m.a.ExceptionHandlerExceptionResolver : Using @ExceptionHandler 
com.technipfmc.vision.sso.visionidp.exception.IDPResponseEntityExceptionHandler#handleOtherException(Exception)
2021-02-03 22:21:15.430 ERROR 13584 --- [tp955875766-397] 
.s.v.e.IDPResponseEntityExceptionHandler : 
org.springframework.dao.DataIntegrityViolationException: could not execute 
query; SQL [select * from role_property p where p.role_id=?]; nested 
exception is org.hibernate.exception.DataException: could not execute query

org.springframework.dao.DataIntegrityViolationException: could not execute 
query; SQL [select * from role_property p where p.role_id=?]; nested 
exception is org.hibernate.exception.DataException: could not execute query
at 
org.springframework.orm.jpa.vendor.HibernateJpaDialect.convertHibernateAccessException(HibernateJpaDialect.java:302)
 
~[spring-orm-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:255)
 
~[spring-orm-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.translateExceptionIfPossible(AbstractEntityManagerFactoryBean.java:528)
 
~[spring-orm-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:242)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:153)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor$CrudMethodMetadataPopulatingMethodInterceptor.invoke(CrudMethodMetadataPostProcessor.java:149)
 
~[spring-data-jpa-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:95)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at com.sun.proxy.$Proxy160.findProperty(Unknown Source) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native 
Method) ~[na:na]
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 
~[na:na]
at 
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 
~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at 
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:344)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:205)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at com.sun.proxy.$Proxy97.findProperty(Unknown Source) ~[na:na]
at 
com.technipfmc.vision.sso.visionidp.service.RoleDao.checkRoleForForceReleaseLockProp(RoleDao.java:98)
 
~[classes/:na]
at 
com.technipfmc.vision.sso.visionidp.service.UserDao.userCanForceReleaseLock(UserDao.java:492)
 
~[classes/:na]
at 
com.technipfmc.vision.sso.visionidp.service.UserDao$$FastClassBySpringCGLIB$$f7afed2c.invoke(<generated>)
 
~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) 
~[spring-core-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:366)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:118)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:691)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
com.technipfmc.vision.sso.visionidp.service.UserDao$$EnhancerBySpringCGLIB$$97e2ead9.userCanForceReleaseLock(<generated>)
 
~[classes/:na]
at 
com.technipfmc.vision.sso.visionidp.service.PadlockService.forceReleaseLock(PadlockService.java:82)
 
~[classes/:na]
at 
com.technipfmc.vision.sso.visionidp.PadlockController.forceReleaseLock(PadlockController.java:94)
 
~[classes/:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native 
Method) ~[na:na]
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 
~[na:na]
at 
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 
~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
at 
org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:879)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:793)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:880)
 
~[spring-webmvc-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:590) 
~[jakarta.servlet-api-4.0.3.jar:4.0.3]
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:226)
 
~[websocket-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:118)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:158)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:176)
 
~[spring-security-oauth2-2.3.3.RELEASE.jar:na]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
 
~[spring-security-web-5.3.2.RELEASE.jar:5.3.2.RELEASE]
at 
org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
 
~[spring-web-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618)
 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:602) 
~[jetty-security-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:235)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1610)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) 
~[jetty-servlet-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1580)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278)
 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at org.eclipse.jetty.server.Server.handle(Server.java:500) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) 
~[jetty-server-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 
~[jetty-io-9.4.28.v20200408.jar:9.4.28.v20200408]
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) 
~[jetty-io-9.4.28.v20200408.jar:9.4.28.v20200408]
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) 
~[jetty-io-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806)
 
~[jetty-util-9.4.28.v20200408.jar:9.4.28.v20200408]
at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938)
 
~[jetty-util-9.4.28.v20200408.jar:9.4.28.v20200408]
at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
Caused by: org.hibernate.exception.DataException: could not execute query
at 
org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:52)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:42)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:113)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.doList(Loader.java:2841) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.doList(Loader.java:2820) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2652) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.list(Loader.java:2647) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.custom.CustomLoader.list(CustomLoader.java:338) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.internal.SessionImpl.listCustomQuery(SessionImpl.java:2131) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.internal.AbstractSharedSessionContract.list(AbstractSharedSessionContract.java:1163)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.query.internal.NativeQueryImpl.doList(NativeQueryImpl.java:173) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.query.internal.AbstractProducedQuery.list(AbstractProducedQuery.java:1533)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.query.Query.getResultList(Query.java:165) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.springframework.data.jpa.repository.query.JpaQueryExecution$CollectionExecution.doExecute(JpaQueryExecution.java:126)
 
~[spring-data-jpa-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.data.jpa.repository.query.JpaQueryExecution.execute(JpaQueryExecution.java:88)
 
~[spring-data-jpa-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.data.jpa.repository.query.AbstractJpaQuery.doExecute(AbstractJpaQuery.java:154)
 
~[spring-data-jpa-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.data.jpa.repository.query.AbstractJpaQuery.execute(AbstractJpaQuery.java:142)
 
~[spring-data-jpa-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor$QueryMethodInvoker.invoke(QueryExecutorMethodInterceptor.java:195)
 
~[spring-data-commons-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.doInvoke(QueryExecutorMethodInterceptor.java:152)
 
~[spring-data-commons-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.invoke(QueryExecutorMethodInterceptor.java:130)
 
~[spring-data-commons-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:80)
 
~[spring-data-commons-2.3.0.RELEASE.jar:2.3.0.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:366)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:118)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
 
~[spring-aop-5.2.6.RELEASE.jar:5.2.6.RELEASE]
at 
org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139)
 
~[spring-tx-5.2.6.RELEASE.jar:5.2.6.RELEASE]
... 117 common frames omitted
Caused by: org.h2.jdbc.JdbcSQLDataException: Data conversion error 
converting "304f8b20-4a7d-4d1e-9d74-65f0ed60ebd2" [22018-200]
at org.h2.message.DbException.getJdbcSQLException(DbException.java:457) 
~[h2-1.4.200.jar:1.4.200]
at org.h2.message.DbException.getJdbcSQLException(DbException.java:429) 
~[h2-1.4.200.jar:1.4.200]
at org.h2.message.DbException.get(DbException.java:194) 
~[h2-1.4.200.jar:1.4.200]
at org.h2.value.Value.convertTo(Value.java:875) ~[h2-1.4.200.jar:1.4.200]
at org.h2.value.Value.convertTo(Value.java:737) ~[h2-1.4.200.jar:1.4.200]
at org.h2.value.Value.getLong(Value.java:627) ~[h2-1.4.200.jar:1.4.200]
at org.h2.jdbc.JdbcResultSet.getLong(JdbcResultSet.java:680) 
~[h2-1.4.200.jar:1.4.200]
at 
com.zaxxer.hikari.pool.HikariProxyResultSet.getLong(HikariProxyResultSet.java) 
~[HikariCP-3.4.5.jar:na]
at 
org.hibernate.type.descriptor.sql.BigIntTypeDescriptor$2.doExtract(BigIntTypeDescriptor.java:63)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.type.descriptor.sql.BasicExtractor.extract(BasicExtractor.java:47)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.type.AbstractStandardBasicType.nullSafeGet(AbstractStandardBasicType.java:257)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.type.AbstractStandardBasicType.nullSafeGet(AbstractStandardBasicType.java:253)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.type.AbstractStandardBasicType.nullSafeGet(AbstractStandardBasicType.java:243)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.type.AbstractStandardBasicType.hydrate(AbstractStandardBasicType.java:329)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.extractKeysFromResultSet(Loader.java:808) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.getRowFromResultSet(Loader.java:732) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.processResultSet(Loader.java:1008) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.doQuery(Loader.java:964) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at 
org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:354)
 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
at org.hibernate.loader.Loader.doList(Loader.java:2838) 
~[hibernate-core-5.4.15.Final.jar:5.4.15.Final]
... 140 common frames omitted
Caused by: java.lang.NumberFormatException: For input string: 
"304f8b20-4a7d-4d1e-9d74-65f0ed60ebd2"
at 
java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
 
~[na:na]
at java.base/java.lang.Long.parseLong(Long.java:692) ~[na:na]
at java.base/java.lang.Long.parseLong(Long.java:817) ~[na:na]
at org.h2.value.Value.convertToLong(Value.java:1011) 
~[h2-1.4.200.jar:1.4.200]
at org.h2.value.Value.convertTo(Value.java:808) ~[h2-1.4.200.jar:1.4.200]
... 156 common frames omitted

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/h2-database/a9dd68ad-5990-4d0d-a42d-640a6d7cbbb8n%40googlegroups.com.

Reply via email to