java.lang.ClassCastException: Dao.Impl.AccountDaoImpl cannot be cast to Dao.AccountDao

在使用 Spring 进行数据库操作时,遇到一个常见问题,即 Dao 层的实现类没有正确实现接口。文中详细介绍了如何定义 AccountDao 接口,包括添加、更新和删除 Account 的方法,并提供了 Dao 层实现类的解决方案,确保其实现了接口中定义的所有方法。
部署运行你感兴趣的模型镜像

在学习Spring操作数据库是,遇到这个问题原因是实现类没有实现接口

Dao层接口

package Dao;

import Pojo.Account;

public interface AccountDao {
    //    添加
    public int addAccount(Account account);

    //    更新
    public int updateAccount(Account account);

    //    删除
    public int deleteAccount(int id);

}

解决办法:
Dao层实现类:
在这里插入图片描述

您可能感兴趣的与本文相关的镜像

ACE-Step

ACE-Step

音乐合成
ACE-Step

ACE-Step是由中国团队阶跃星辰(StepFun)与ACE Studio联手打造的开源音乐生成模型。 它拥有3.5B参数量,支持快速高质量生成、强可控性和易于拓展的特点。 最厉害的是,它可以生成多种语言的歌曲,包括但不限于中文、英文、日文等19种语言

java.lang.ClassCastException: class java.lang.String cannot be cast to class java.lang.Integer (java.lang.String and java.lang.Integer are in module java.base of loader 'bootstrap') at jdk.proxy2/jdk.proxy2.$Proxy122.getHardWareByVid(Unknown Source) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:360) at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:138) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) at com.baomidou.dynamic.datasource.aop.DynamicDataSourceAnnotationInterceptor.invoke(DynamicDataSourceAnnotationInterceptor.java:56) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:223) at jdk.proxy2/jdk.proxy2.$Proxy123.getHardWareByVid(Unknown Source) at com.huawei.driveinsight.monitor.service.impl.DataPullServiceImpl.verifyUpdateStatus(DataPullServiceImpl.java:1200) at com.huawei.driveinsight.monitor.service.impl.DataPullServiceImpl.verifyAndUpdateTaskStatusByTransactionId(DataPullServiceImpl.java:1192) at com.huawei.driveinsight.monitor.service.impl.DataPullServiceImpl.dataPullCancel(DataPullServiceImpl.java:1166) at com.huawei.driveinsight.monitor.controller.DataPullController.dataPullCancel(DataPullController.java:275) DataPullServiceImpl.java:1200:Integer aicBChipCount = dwsMdcRecordDao.getHardWareByVid(po.getVid()); <select id="getHardWareByVid" resultType="java.lang.String"> SELECT aic_b_chip_count AS aicBChipCount FROM "cfg"."dwi_base_vehicle_info" WHERE vid = #{vid} ORDER BY create_time DESC LIMIT 1 </select>
最新发布
11-08
[jsfj-uaa:192.168.0.14:20002] 2025-10-06 09:34:54.998 ERROR 3225941 [0ff2118945414a5fa75086ad3bd7ca20] [XNIO-1 task-3] p.c.ClientCredentialsTokenEndpointFilter : An internal error occurred while trying to authenticate the user. org.springframework.security.authentication.InternalAuthenticationServiceException: java.lang.Integer cannot be cast to org.springframework.security.oauth2.provider.ClientDetails at org.springframework.security.authentication.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:108) at org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:133) at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:182) at org.springframework.security.oauth2.provider.client.ClientCredentialsTokenEndpointFilter.attemptAuthentication(ClientCredentialsTokenEndpointFilter.java:123) at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:222) at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:212) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84) at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68) at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68) at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117) at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60) at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77) at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:275) at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:79) at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:134) at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:131) at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:255) at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:79) at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:100) at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:852) at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:2019) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1558) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1449) at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1280) at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.ClassCastException: java.lang.Integer cannot be cast to org.springframework.security.oauth2.provider.ClientDetails at com.jsfj.uaa.service.impl.ClientDetailsServiceImpl.loadClientByClientId(ClientDetailsServiceImpl.java:57) at org.springframework.security.oauth2.provider.client.ClientDetailsUserDetailsService.loadUserByUsername(ClientDetailsUserDetailsService.java:47) at org.springframework.security.authentication.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:93) ... 74 common frames omitted
10-07
2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E [app] [clientID] [172.16.1.15] [DefaultDispatcher-worker-7:(ID=393)] [JafViewModel:showError:242] [jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel.jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo:-1] – 処理エラー | duration -1ms 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E java.lang.ClassCastException: jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository$getTShireiData$2.invokeSuspend(JAFRSHO07030Repository.kt:81) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository$getTShireiData$2.invoke(Unknown Source:8) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository$getTShireiData$2.invoke(Unknown Source:4) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:167) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.BuildersKt.withContext(Unknown Source:1) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository.getTShireiData(JAFRSHO07030Repository.kt:80) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at java.lang.reflect.Method.invoke(Native Method) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler.handleSuspendFunction(CombinedInvocationHandler.kt:176) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler.invoke(CombinedInvocationHandler.kt:68) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at java.lang.reflect.Proxy.invoke(Proxy.java:1006) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at $Proxy133.getTShireiData(Unknown Source) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.domain.usecase.jafrsho07.jafrsho07030.impl.JAFRSHO07030E001UseCase2.invoke-gIAlu-s(JAFRSHO07030E001UseCase2.kt:40) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.domain.usecase.jafrsho07.jafrsho07030.impl.JAFRSHO07030E001UseCase2.invoke-gIAlu-s(JAFRSHO07030E001UseCase2.kt:34) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at java.lang.reflect.Method.invoke(Native Method) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler.handleSuspendFunction(CombinedInvocationHandler.kt:176) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler.invoke(CombinedInvocationHandler.kt:68) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at java.lang.reflect.Proxy.invoke(Proxy.java:1006) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at $Proxy135.invoke-gIAlu-s(Unknown Source) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel.generateNoticeMessage(JAFRSHO07030ViewModel.kt:170) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel.onPopupDisplayTest(JAFRSHO07030ViewModel.kt:207) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel$onEvent$1.invokeSuspend(JAFRSHO07030ViewModel.kt:75) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel$onEvent$1.invoke(Unknown Source:8) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel$onEvent$1.invoke(Unknown Source:2) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.base.JafViewModel$launchWithLoading$1.invokeSuspend(JafViewModel.kt:328) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.base.JafViewModel$launchWithLoading$1.invoke(Unknown Source:8) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.base.JafViewModel$launchWithLoading$1.invoke(Unknown Source:2) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at jp.or.jaf.syg.core.common.ext.JafCoroutinesKt$runOnIO$2.invokeSuspend(JafCoroutines.kt:133) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.internal.LimitedDispatcher$Worker.run(LimitedDispatcher.kt:115) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.scheduling.TaskImpl.run(Tasks.kt:103) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2025-09-23 20:04:11.040 8135-8181 JafCommonLog jp.or.jaf.syg E 2025-09-23 20:04:11.082 8135-8146 jp.or.jaf.syg jp.or.jaf.syg I Background concurrent copying GC freed 156347(11MB) AllocSpace objects, 57(1148KB) LOS objects, 49% free, 11MB/22MB, paused 23us total 160.816ms 2025-09-23 20:04:11.086 8135-8135 メッセージダイアログ jp.or.jaf.syg I size:3 2025-09-23 20:04:11.086 8135-8135 メッセージダイアログ jp.or.jaf.syg I メッセージが見つかりません 2025-09-23 20:04:11.086 8135-8135 メッセージダイアログ jp.or.jaf.syg I getResult: 2025-09-23 20:04:11.087 8135-8135 JafCommonLog jp.or.jaf.syg I [app] [clientID] [172.16.1.15] [main:(ID=2)] [Jafrsho99020MessagePopupKt:Jafrsho99020MessagePopup:invoke:170] 2025-09-23 20:04:11.090 8135-8181 JafCommonLog jp.or.jaf.syg D [app] [clientID] [172.16.1.15] [DefaultDispatcher-worker-7:(ID=393)] [JafLoggingAspect:beforeMethod:55] [jp.or.jaf.syg.domain.usecase.jafrsho07.jafrsho07030.impl.JAFRSHO07030E001UseCase2.invoke-gIAlu-s(ShireiCancelNoticeMo, Continuation at jp.o):-1] – 処理開始 2025-09-23 20:04:11.091 8135-8181 JafCommonLog jp.or.jaf.syg D [app] [clientID] [172.16.1.15] [DefaultDispatcher-worker-7:(ID=393)] [JafLoggingAspect:beforeMethod:55] [jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository.getTShireiData(100000001, Continuation at jp.o):-1] – 処理開始 2025-09-23 20:04:11.093 8135-8181 JafCommonLog jp.or.jaf.syg D [app] [clientID] [172.16.1.15] [DefaultDispatcher-worker-7:(ID=393)] [JafLoggingAspect:beforeMethod:55] [jp.or.jaf.syg.data.local.dao.transaction.TShireiDataDao_Impl.getTShireiData3(100000001, Continuation at jp.o):-1] – 処理開始 2025-09-23 20:04:11.096 8135-8176 JafCommonLog jp.or.jaf.syg D [app] [clientID] [172.16.1.15] [arch_disk_io_2:(ID=388)] [JafLoggingAspect:afterMethod:82] [jp.or.jaf.syg.data.local.dao.transaction.TShireiDataDao_Impl.getTShireiData3:-1] – 処理終了 [=> Result: TShireiData(base=TShireiDataBa] | duration 3ms 2025-09-23 20:04:11.098 8135-8176 JafCommonLog jp.or.jaf.syg E [app] [clientID] [172.16.1.15] [arch_disk_io_2:(ID=388)] [JafLoggingAspect:onError:98] [jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository.getTShireiData:-1] – 処理エラー | duration 6ms jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo java.lang.ClassCastException: jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository$getTShireiData$2.invokeSuspend(JAFRSHO07030Repository.kt:81) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler$CombinedLoggingContinuation.resumeWith(CombinedInvocationHandler.kt:222) at kotlinx.coroutines.DispatchedTaskKt.resume(DispatchedTask.kt:179) at kotlinx.coroutines.DispatchedTaskKt.dispatch(DispatchedTask.kt:168) at kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(CancellableContinuationImpl.kt:474) at kotlinx.coroutines.CancellableContinuationImpl.resumeImpl(CancellableContinuationImpl.kt:508) at kotlinx.coroutines.CancellableContinuationImpl.resumeImpl$default(CancellableContinuationImpl.kt:497) at kotlinx.coroutines.CancellableContinuationImpl.resumeWith(CancellableContinuationImpl.kt:368) at androidx.room.CoroutinesRoom$Companion$execute$4$job$1.invokeSuspend(CoroutinesRoom.kt:88) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) at java.lang.Thread.run(Thread.java:764) 2025-09-23 20:04:11.099 8135-8176 JafCommonLog jp.or.jaf.syg E [app] [clientID] [172.16.1.15] [arch_disk_io_2:(ID=388)] [JafLoggingAspect:onError:98] [jp.or.jaf.syg.domain.usecase.jafrsho07.jafrsho07030.impl.JAFRSHO07030E001UseCase2.invoke-gIAlu-s:-1] – 処理エラー | duration 11ms jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo java.lang.ClassCastException: jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository$getTShireiData$2.invokeSuspend(JAFRSHO07030Repository.kt:81) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler$CombinedLoggingContinuation.resumeWith(CombinedInvocationHandler.kt:222) at kotlinx.coroutines.DispatchedTaskKt.resume(DispatchedTask.kt:179) at kotlinx.coroutines.DispatchedTaskKt.dispatch(DispatchedTask.kt:168) at kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(CancellableContinuationImpl.kt:474) at kotlinx.coroutines.CancellableContinuationImpl.resumeImpl(CancellableContinuationImpl.kt:508) at kotlinx.coroutines.CancellableContinuationImpl.resumeImpl$default(CancellableContinuationImpl.kt:497) at kotlinx.coroutines.CancellableContinuationImpl.resumeWith(CancellableContinuationImpl.kt:368) at androidx.room.CoroutinesRoom$Companion$execute$4$job$1.invokeSuspend(CoroutinesRoom.kt:88) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) at java.lang.Thread.run(Thread.java:764) 2025-09-23 20:04:11.101 8135-8176 JafCommonLog jp.or.jaf.syg E [app] [clientID] [172.16.1.15] [arch_disk_io_2:(ID=388)] [JafViewModel:showError:242] [jp.or.jaf.syg.feature.jafrsho07.jafrsho07030.JAFRSHO07030ViewModel.jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo:-1] – 処理エラー | duration -1ms jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo java.lang.ClassCastException: jp.or.jaf.syg.domain.model.jafrsho06.jafrsho06060.ShireiDataInfo cannot be cast to jp.or.jaf.syg.domain.model.jafrsho07.jafrsho07030.TShireiDataInfo at jp.or.jaf.syg.data.repository.jafrsho07.JAFRSHO07030Repository$getTShireiData$2.invokeSuspend(JAFRSHO07030Repository.kt:81) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at jp.or.jaf.syg.core.common.aspect.CombinedInvocationHandler$CombinedLoggingContinuation.resumeWith(CombinedInvocationHandler.kt:222) at kotlinx.coroutines.DispatchedTaskKt.resume(DispatchedTask.kt:179) at kotlinx.coroutines.DispatchedTaskKt.dispatch(DispatchedTask.kt:168) at kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(CancellableContinuationImpl.kt:474) at kotlinx.coroutines.CancellableContinuationImpl.resumeImpl(CancellableContinuationImpl.kt:508) at kotlinx.coroutines.CancellableContinuationImpl.resumeImpl$default(CancellableContinuationImpl.kt:497) at kotlinx.coroutines.CancellableContinuationImpl.resumeWith(CancellableContinuationImpl.kt:368) at androidx.room.CoroutinesRoom$Companion$execute$4$job$1.invokeSuspend(CoroutinesRoom.kt:88) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) at java.lang.Thread.run(Thread.java:764) 2025-09-23 20:04:11.142 8135-8170 OpenGLRenderer jp.or.jaf.syg D endAllActiveAnimators on 0x76388889b500 (UnprojectedRipple) with handle 0x763868036120 2025-09-23 20:04:11.190 1564-1578 memtrack system_server E Couldn't load memtrack module 2025-09-23 20:04:11.190 1564-1578 android.os.Debug system_server W failed to get memory consumption info: -1 2025-09-23 20:04:11.195 1434-1649 SurfaceFlinger surfaceflinger W Attempting to set client state on removed layer: jp.or.jaf.syg/jp.or.jaf.syg.SygMainActivity#1 2025-09-23 20:04:11.195 1434-1649 SurfaceFlinger surfaceflinger W Attempting to destroy on removed layer: jp.or.jaf.syg/jp.or.jaf.syg.SygMainActivity#1 2025-09-23 20:04:11.245 1434-2114 SurfaceFlinger surfaceflinger W Attempting to set client state on removed layer: Dim Layer for - Task=61#0 2025-09-23 20:04:11.245 1434-2114 SurfaceFlinger surfaceflinger W Attempting to destroy on removed layer: Dim Layer for - Task=61#0
09-24
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值