无法提取结果集

如何解决无法提取结果集

我不是冬眠的新手,但面临一些奇怪的问题。 我的Java基础应用程序基于Java 8,JSF,Hibernate 5.1和Oracle 19C数据库和liquibase构建。

向现有表中添加属性是非常简单的任务,但是在向现有表中添加布尔值后,我遇到了一些问题,Hibernate无法提取结果,我想在这里添加的另一件事是相同的一切都可以与Oracle 11G版本的数据库一起使用。

请找到相同的波纹管代码片段详细信息。


Entiry.java

@Data
@Entity
public class Person {
    @Temporal(TemporalType.TIMESTAMP)
    private Date startProcessingOn;
    
    @Column(name = "is_grouping_allow")
    private boolean grouping;

    @Column(name="allow_manual_cash_update")
    private boolean allowManualCashUpdate; // Newly added boolean property
     
    .......

}

db.changelog.xml

<changeSet id="KXX-10724" author="ravi.sapariya">
<addColumn tableName="person">
<column name="allow_manual_cash_update" type="decimal(1)" defaultValueBoolean="false">
<constraints nullable="false"/>
</column>
</addColumn>
</changeSet>

在执行以上数据库更改日志表后,包含具有 NUMBER(1,0)数据类型的额外列。

当我尝试启动服务器时,这给了我一个普遍的错误,说无法用我从未更改过的其他Entiry提取ResultSet 。我在“个人实体”中所做的更改,但说无法加载警报实体。尽管Alert与Person有关系。

日志

15:52:24,455 ERROR [stderr] (ServerService Thread Pool -- 72) javax.persistence.PersistenceException: org.hibernate.exception.JDBCConnectionException: could not extract ResultSet

15:52:24,460 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.jpa.spi.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1692)

15:52:24,461 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.jpa.spi.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1602)

15:52:24,462 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.jpa.internal.QueryImpl.getResultList(QueryImpl.java:492)

15:52:24,463 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.dao.AlertDao.queryAlerts(AlertDao.java:164)

15:52:24,464 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.dao.AlertDao.loadAlerts(AlertDao.java:137)

15:52:24,465 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
15:52:24,466 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

15:52:24,467 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

15:52:24,467 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.lang.reflect.Method.invoke(Method.java:498)

15:52:24,468 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptor.java:52)

15:52:24,468 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,470 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)

15:52:24,470 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java:90)

15:52:24,471 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101)

15:52:24,472 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:63)

15:52:24,472 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,472 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterceptor.java:43)

15:52:24,473 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,474 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47)

15:52:24,474 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,475 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:45)

15:52:24,475 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,476 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40)

15:52:24,476 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,477 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)

15:52:24,478 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherInterceptor.java:52)

15:52:24,478 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,479 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:51)

15:52:24,479 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,480 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185)

15:52:24,480 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364)

15:52:24,480 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144)

15:52:24,481 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,481 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)

15:52:24,482 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:72)

15:52:24,482 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:89)

15:52:24,483 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,483 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)

15:52:24,484 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java:47)

15:52:24,484 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,485 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100)

15:52:24,485 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,485 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.java:22)

15:52:24,486 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,486 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFactory.java:64)

15:52:24,487 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,487 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67)

15:52:24,488 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,489 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
15:52:24,490 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,490 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:54)

15:52:24,491 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60)
15:52:24,491 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,492 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438)

15:52:24,492 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619)

15:52:24,492 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57)

15:52:24,493 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,493 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)

15:52:24,493 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198)

15:52:24,494 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185)

15:52:24,494 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81)

15:52:24,494 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.dao.AlertDao$$$view55.loadAlerts(Unknown Source)

15:52:24,495 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

15:52:24,495 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

15:52:24,495 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

15:52:24,495 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.lang.reflect.Method.invoke(Method.java:498)

15:52:24,496 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.util.reflection.Reflections.invokeAndUnwrap(Reflections.java:411)

15:52:24,496 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.module.ejb.EnterpriseBeanProxyMethodHandler.invoke(EnterpriseBeanProxyMethodHandler.java:134)
15:52:24,503 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,503 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:51)
15:52:24,504 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,504 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237)

15:52:24,505 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:362)

15:52:24,505 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144)

15:52:24,506 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,506 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)

15:52:24,506 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:72)
15:52:24,506 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:89)
15:52:24,507 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,507 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)
15:52:24,509 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java:47)
15:52:24,509 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,509 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100)
15:52:24,510 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.java:22)
15:52:24,510 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
15:52:24,510 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFactory.java:64)
15:52:24,511 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
15:52:24,511 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67)
15:52:24,511 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,512 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
15:52:24,512 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,514 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57)

15:52:24,514 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,515 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)

15:52:24,515 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198)

15:52:24,515 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185)

15:52:24,516 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81)

15:52:24,516 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.ejb.AlertXmlDao$$$view29.loadAlerts(Unknown Source)

15:52:24,516 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

15:52:24,516 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

15:52:24,517 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

15:52:24,517 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.lang.reflect.Method.invoke(Method.java:498)

15:52:24,517 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.util.reflection.Reflections.invokeAndUnwrap(Reflections.java:411)

15:52:24,517 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.module.ejb.EnterpriseBeanProxyMethodHandler.invoke(EnterpriseBeanProxyMethodHandler.java:134)

15:52:24,517 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.bean.proxy.EnterpriseTargetBeanInstance.invoke(EnterpriseTargetBeanInstance.java:56)

15:52:24,518 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.module.ejb.InjectionPointPropagatingEnterpriseTargetBeanInstance.invoke(InjectionPointPropagatingEnterpriseTargetBeanInstance.java:68)

15:52:24,518 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.bean.proxy.ProxyMethodHandler.invoke(ProxyMethodHandler.java:106)

15:52:24,518 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.ejb.AlertXmlDao$Proxy$_$$_Weld$EnterpriseProxy$.loadAlerts(Unknown Source)

15:52:24,519 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.AlertStore.loadAlerts(AlertStore.java:298)

15:52:24,519 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.AlertStore.loadDBAlerts(AlertStore.java:120)

15:52:24,519 ERROR [stderr] (ServerService Thread Pool -- 72)   at krt.AlertStore.onStartup(AlertStore.java:112)

15:52:24,520 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

15:52:24,520 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

15:52:24,520 ERROR [stderr] (ServerService Thread Pool -- 72)   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

15:52:24,521 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.lang.reflect.Method.invoke(Method.java:498)

15:52:24,521 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedReferenceLifecycleMethodInterceptor.java:96)

15:52:24,521 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,522 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doLifecycleInterception(Jsr299BindingsInterceptor.java:122)

15:52:24,523 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:111)

15:52:24,523 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,524 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)

15:52:24,525 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:81)

15:52:24,525 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:89)

15:52:24,525 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,525 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.injection.WeldInjectionInterceptor.processInvocation(WeldInjectionInterceptor.java:53)

15:52:24,526 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,526 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.AroundConstructInterceptorFactory$1.processInvocation(AroundConstructInterceptorFactory.java:28)

15:52:24,527 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.injection.WeldInterceptorInjectionInterceptor.processInvocation(WeldInterceptorInjectionInterceptor.java:56)

15:52:24,527 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,527 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.interceptors.Jsr299BindingsCreateInterceptor.processInvocation(Jsr299BindingsCreateInterceptor.java:105)

15:52:24,527 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
15:52:24,528 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,528 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInNoTx(CMTTxInterceptor.java:216)
15:52:24,528 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.CMTTxInterceptor.never(CMTTxInterceptor.java:327)
15:52:24,529 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.tx.LifecycleCMTTxInterceptor.processInvocation(LifecycleCMTTxInterceptor.java:62)
15:52:24,529 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)

15:52:24,529 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.weld.injection.WeldInjectionContextInterceptor.processInvocation(WeldInjectionContextInterceptor.java:43)

15:52:24,529 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
15:52:24,530 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)
15:52:24,530 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
15:52:24,531 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
15:52:24,532 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.singleton.StartupCountDownInterceptor.processInvocation(StartupCountDownInterceptor.java:25
15:52:24,534 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.singleton.SingletonComponent.getComponentInstance(SingletonComponent.java:127)
15:52:24,534 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ejb3.component.singleton.SingletonComponent.start(SingletonComponent.java:141)

15:52:24,534 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.as.ee.component.ComponentStartService$1.run(ComponentStartService.java:54)

15:52:24,535 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

15:52:24,535 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.util.concurrent.FutureTask.run(FutureTask.java:266)

15:52:24,535 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)

15:52:24,536 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)

15:52:24,536 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)

15:52:24,536 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)

15:52:24,537 ERROR [stderr] (ServerService Thread Pool -- 72)   at java.lang.Thread.run(Thread.java:748)

15:52:24,537 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.jboss.threads.JBossThread.run(JBossThread.java:485)

15:52:24,538 ERROR [stderr] (ServerService Thread Pool -- 72) Caused by: org.hibernate.exception.JDBCConnectionException: could not extract ResultSet
15:52:24,539 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.exception.internal.SQLStateConversionDelegate.convert(SQLStateConversionDelegate.java:115)

15:52:24,539 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:42)
15:52:24,539 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:111)
15:52:24,539 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:97)
15:52:24,540 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:79)
15:52:24,540 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.getResultSet(AbstractLoadPlanBasedLoader.java:434)
15:52:24,540 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeQueryStatement(AbstractLoadPlanBasedLoader.java:186)
15:52:24,541 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:121)
15:52:24,541 ERROR [stderr] (ServerService Thread Pool -- 72)   at org.hibernate.loader.plan.exec.internal.AbstractLoadPlanBasedLoader.executeLoad(AbstractLoadPlanBasedLoader.java:86)

15:52:24,551 ERROR [stderr] (ServerService Thread Pool -- 72)   at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1167)
(ServerService Thread Pool -- 72)   at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1289)

我正在使用org.hibernate.dialect.Oracle12cDialect。 非常感谢任何帮助,因为我在此问题上停留了2-3天。 AlertDao仅包含简单的查询,因此,如果我删除新添加的字段表单Person,则不会引起任何问题。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


依赖报错 idea导入项目后依赖报错,解决方案:https://blog.csdn.net/weixin_42420249/article/details/81191861 依赖版本报错:更换其他版本 无法下载依赖可参考:https://blog.csdn.net/weixin_42628809/a
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下 2021-12-03 13:33:33.927 ERROR 7228 [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPL
错误1:gradle项目控制台输出为乱码 # 解决方案:https://blog.csdn.net/weixin_43501566/article/details/112482302 # 在gradle-wrapper.properties 添加以下内容 org.gradle.jvmargs=-Df
错误还原:在查询的过程中,传入的workType为0时,该条件不起作用 &lt;select id=&quot;xxx&quot;&gt; SELECT di.id, di.name, di.work_type, di.updated... &lt;where&gt; &lt;if test=&qu
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct redisServer’没有名为‘server_cpulist’的成员 redisSetCpuAffinity(server.server_cpulist); ^ server.c: 在函数‘hasActiveC
解决方案1 1、改项目中.idea/workspace.xml配置文件,增加dynamic.classpath参数 2、搜索PropertiesComponent,添加如下 &lt;property name=&quot;dynamic.classpath&quot; value=&quot;tru
删除根组件app.vue中的默认代码后报错:Module Error (from ./node_modules/eslint-loader/index.js): 解决方案:关闭ESlint代码检测,在项目根目录创建vue.config.js,在文件中添加 module.exports = { lin
查看spark默认的python版本 [root@master day27]# pyspark /home/software/spark-2.3.4-bin-hadoop2.7/conf/spark-env.sh: line 2: /usr/local/hadoop/bin/hadoop: No s
使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-