| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884 |
- 2026-07-15 11:11:04.900 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 11:11:04.996 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 35140 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 11:11:04.997 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 11:11:06.063 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 11:11:06.066 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 11:11:06.139 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 52 ms. Found 0 Redis repository interfaces.
- 2026-07-15 11:11:06.828 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 11:11:06.839 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:11:06.840 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 11:11:06.841 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 11:11:06.895 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 11:11:06.895 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1722 ms
- 2026-07-15 11:11:06.920 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 11:11:08.360 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 11:11:09.318 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 11:11:09.585 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 11:11:10.320 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 11:11:10.675 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 11:11:11.422 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@3531509c, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@23169374, org.springframework.security.web.context.SecurityContextHolderFilter@3d0ce151, org.springframework.security.web.header.HeaderWriterFilter@7962a364, org.springframework.web.filter.CorsFilter@4f2b1a2f, org.springframework.security.web.authentication.logout.LogoutFilter@8bd9d08, com.payment.platform.core.security.JwtAuthFilter@271a140c, com.payment.platform.core.security.TenantApiKeyAuthFilter@462b239f, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2b569858, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1b84d03d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6c2a33af, org.springframework.security.web.session.SessionManagementFilter@134ec0f3, org.springframework.security.web.access.ExceptionTranslationFilter@25b87e1b, org.springframework.security.web.access.intercept.AuthorizationFilter@1390a43a]
- 2026-07-15 11:11:12.046 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:11:12.067 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 11:11:12.268 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 7.97 seconds (process running for 9.101)
- 2026-07-15 11:11:12.313 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:11:12.483 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:11:15.453 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 11:11:17.182 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 11:11:17.278 [scheduling-1] ERROR c.p.p.common.utils.RedisLockUtil - 获取分布式锁失败: key=retry:dealing_transfers, error=Unable to connect to Redis
- 2026-07-15 11:12:12.494 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:12:12.544 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:12:19.568 [scheduling-1] ERROR c.p.p.common.utils.RedisLockUtil - 获取分布式锁失败: key=retry:dealing_transfers, error=Unable to connect to Redis
- 2026-07-15 11:13:12.550 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:13:12.600 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:13:21.844 [scheduling-1] ERROR c.p.p.common.utils.RedisLockUtil - 获取分布式锁失败: key=retry:dealing_transfers, error=Unable to connect to Redis
- 2026-07-15 11:13:22.907 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 11:13:22.907 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 11:13:22.909 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
- 2026-07-15 11:13:43.974 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 11:13:43.976 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 11:13:46.605 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 11:13:46.701 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 16812 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 11:13:46.702 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 11:13:47.544 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 11:13:47.546 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 11:13:47.597 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 39 ms. Found 0 Redis repository interfaces.
- 2026-07-15 11:13:48.116 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 11:13:48.124 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:13:48.125 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 11:13:48.125 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 11:13:48.166 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 11:13:48.166 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1287 ms
- 2026-07-15 11:13:48.189 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 11:13:49.589 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 11:13:50.297 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 11:13:50.438 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 11:13:50.743 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 11:13:51.002 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 11:13:51.477 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@1ced1d14, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@237b54bc, org.springframework.security.web.context.SecurityContextHolderFilter@46f041cb, org.springframework.security.web.header.HeaderWriterFilter@53570fff, org.springframework.web.filter.CorsFilter@5263f554, org.springframework.security.web.authentication.logout.LogoutFilter@7d086485, com.payment.platform.core.security.JwtAuthFilter@54e680fe, com.payment.platform.core.security.TenantApiKeyAuthFilter@698e1bf5, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@493489dd, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3358805a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7d28efd5, org.springframework.security.web.session.SessionManagementFilter@3c7787a7, org.springframework.security.web.access.ExceptionTranslationFilter@53202b06, org.springframework.security.web.access.intercept.AuthorizationFilter@21b3d356]
- 2026-07-15 11:13:51.871 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:13:51.882 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 11:13:51.980 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 5.831 seconds (process running for 6.411)
- 2026-07-15 11:13:52.020 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:13:52.142 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:13:53.826 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 11:13:54.764 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 11:14:06.937 [tomcat-handler-1] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 11:14:06.937 [tomcat-handler-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 11:14:06.938 [tomcat-handler-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 11:14:15.073 [tomcat-handler-2] INFO c.p.p.m.s.auth.service.AuthService - 用户ID: 2, 用户名: q 正在生成JWT令牌
- 2026-07-15 11:14:15.199 [tomcat-handler-2] INFO c.p.p.m.s.a.c.AuthController - 用户q登录成功
- 2026-07-15 11:14:28.084 [tomcat-handler-15] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 11:14:52.149 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:14:52.196 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:15:52.203 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:15:52.249 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:16:52.258 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:16:52.304 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:17:52.310 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:17:52.355 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:18:52.360 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:18:52.405 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:19:52.410 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:19:52.456 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:20:52.462 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:20:52.509 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:21:52.521 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:21:52.566 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:22:52.579 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:22:52.626 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:23:52.631 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:23:52.677 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:24:52.679 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:24:52.732 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:25:52.741 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:25:52.785 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:26:52.798 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:26:52.842 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:27:52.843 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:27:52.887 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:28:52.901 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:28:52.945 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:29:52.960 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:29:53.004 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:30:53.009 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:30:53.057 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:31:53.067 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:31:53.113 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:32:53.121 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:32:53.164 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:33:53.177 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:33:53.225 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:34:53.235 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:34:53.280 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:35:53.283 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:35:53.328 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:36:53.336 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:36:53.382 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:37:53.388 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:37:53.434 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:38:53.440 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:38:53.493 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:39:53.500 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:39:53.552 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:40:53.567 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:40:53.613 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:41:53.628 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:41:53.673 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:42:53.685 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:42:53.730 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:43:53.743 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:43:53.819 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:44:53.822 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:44:53.867 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:45:53.868 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:45:53.946 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:46:53.951 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:46:53.996 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:47:29.818 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 11:47:29.820 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 11:47:35.083 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 11:47:35.149 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 49688 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 11:47:35.150 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 11:47:36.033 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 11:47:36.035 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 11:47:36.090 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 44 ms. Found 0 Redis repository interfaces.
- 2026-07-15 11:47:36.654 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 11:47:36.662 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:47:36.663 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 11:47:36.663 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 11:47:36.712 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 11:47:36.712 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1426 ms
- 2026-07-15 11:47:36.737 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 11:47:38.162 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 11:47:38.876 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 11:47:39.029 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 11:47:39.332 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 11:47:39.586 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 11:47:40.085 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@3358805a, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@77e261e3, org.springframework.security.web.context.SecurityContextHolderFilter@2027d56f, org.springframework.security.web.header.HeaderWriterFilter@4a778943, org.springframework.web.filter.CorsFilter@642b71d6, org.springframework.security.web.authentication.logout.LogoutFilter@4f2b1a2f, com.payment.platform.core.security.JwtAuthFilter@3bf40c74, com.payment.platform.core.security.TenantApiKeyAuthFilter@54a033b8, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@64b20d9c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6fc3f1a7, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@93c66ef, org.springframework.security.web.session.SessionManagementFilter@365a4b9b, org.springframework.security.web.access.ExceptionTranslationFilter@3c2e73ce, org.springframework.security.web.access.intercept.AuthorizationFilter@46f041cb]
- 2026-07-15 11:47:40.471 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:47:40.482 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 11:47:40.612 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.057 seconds (process running for 6.644)
- 2026-07-15 11:47:40.657 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:47:40.788 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:47:42.920 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 11:47:44.279 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 11:47:54.162 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 11:47:54.162 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 11:47:54.163 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 11:47:59.512 [tomcat-handler-0] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 11:48:40.801 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:48:40.847 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:49:16.317 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 11:49:16.319 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 11:49:20.618 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 11:49:20.685 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 41904 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 11:49:20.686 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 11:49:21.605 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 11:49:21.607 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 11:49:21.659 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 40 ms. Found 0 Redis repository interfaces.
- 2026-07-15 11:49:22.195 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 11:49:22.202 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:49:22.203 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 11:49:22.204 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 11:49:22.251 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 11:49:22.252 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1417 ms
- 2026-07-15 11:49:22.277 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 11:49:23.704 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 11:49:24.451 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 11:49:24.604 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 11:49:24.903 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 11:49:25.169 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 11:49:25.694 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@642b71d6, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@93c66ef, org.springframework.security.web.context.SecurityContextHolderFilter@64b20d9c, org.springframework.security.web.header.HeaderWriterFilter@365a4b9b, org.springframework.web.filter.CorsFilter@7e916dc2, org.springframework.security.web.authentication.logout.LogoutFilter@53202b06, com.payment.platform.core.security.JwtAuthFilter@462b239f, com.payment.platform.core.security.TenantApiKeyAuthFilter@2ae08750, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7151dd9d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1f596988, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1a18e68a, org.springframework.security.web.session.SessionManagementFilter@76efa2b7, org.springframework.security.web.access.ExceptionTranslationFilter@4a778943, org.springframework.security.web.access.intercept.AuthorizationFilter@493489dd]
- 2026-07-15 11:49:26.063 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 11:49:26.075 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 11:49:26.157 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.019 seconds (process running for 6.623)
- 2026-07-15 11:49:26.199 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:49:26.321 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:49:28.515 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 11:49:29.509 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 11:49:32.531 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 11:49:32.531 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 11:49:32.533 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
- 2026-07-15 11:49:33.020 [tomcat-handler-0] INFO c.p.p.m.p.a.s.AlipayTransferService - 2088780082348345_agreement
- 2026-07-15 11:49:33.110 [tomcat-handler-0] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 11:50:26.322 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:50:26.369 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:51:26.371 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:51:26.418 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:52:26.431 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:52:26.477 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:53:26.487 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:53:26.534 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:54:26.538 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:54:26.584 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:55:26.592 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:55:26.637 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:56:26.645 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:56:26.691 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:57:26.701 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:57:26.746 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:58:26.747 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:58:26.824 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 11:59:26.840 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 11:59:26.943 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:00:26.954 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:00:27.000 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:01:27.014 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:01:27.060 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:02:27.073 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:02:27.117 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:03:27.123 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:03:27.171 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:04:27.178 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:04:27.223 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:05:27.226 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:05:27.271 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:06:27.272 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:06:27.318 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:07:27.326 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:07:27.371 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:08:27.377 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:08:27.422 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:09:27.426 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:09:27.471 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:09:32.499 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 12:09:32.501 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 12:09:38.188 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 12:09:38.267 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 9740 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 12:09:38.268 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 12:09:39.326 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 12:09:39.328 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 12:09:39.383 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 44 ms. Found 0 Redis repository interfaces.
- 2026-07-15 12:09:39.992 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 12:09:40.001 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:09:40.002 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 12:09:40.002 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 12:09:40.055 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 12:09:40.056 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1636 ms
- 2026-07-15 12:09:40.083 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 12:09:40.191 [main] ERROR c.alibaba.druid.pool.DruidDataSource - init datasource error, url: jdbc:postgresql://localhost:5432/payment_platform_java?currentSchema=public
- org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.postgresql.Driver$ConnectThread.getResult(Driver.java:394)
- at org.postgresql.Driver.connect(Driver.java:304)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1703)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1801)
- at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:938)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1890)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1843)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1782)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:313)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:365)
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:135)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1685)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1434)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1355)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1192)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1355)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1192)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:210)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAsRegistrationBean(ServletContextInitializerBeans.java:173)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAsRegistrationBean(ServletContextInitializerBeans.java:168)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAdaptableBeans(ServletContextInitializerBeans.java:153)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:266)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:240)
- at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:52)
- at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4880)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
- at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:845)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
- at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:240)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.StandardService.startInternal(StandardService.java:433)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:921)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.startup.Tomcat.start(Tomcat.java:437)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:126)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:105)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:499)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:218)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.payment.platform.PaymentApplication.main(PaymentApplication.java:21)
- Caused by: java.net.ConnectException: Connection refused: getsockopt
- at java.base/sun.nio.ch.Net.pollConnect(Native Method)
- at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:694)
- at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
- at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)
- at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
- at java.base/java.net.Socket.connect(Socket.java:751)
- at org.postgresql.core.PGStream.createSocket(PGStream.java:243)
- at org.postgresql.core.PGStream.<init>(PGStream.java:98)
- at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:132)
- at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:258)
- at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:54)
- at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:263)
- at org.postgresql.Driver.makeConnection(Driver.java:443)
- at org.postgresql.Driver.access$100(Driver.java:63)
- at org.postgresql.Driver$ConnectThread.run(Driver.java:353)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 12:09:40.198 [main] ERROR c.alibaba.druid.pool.DruidDataSource - {dataSource-1} init error
- org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.postgresql.Driver$ConnectThread.getResult(Driver.java:394)
- at org.postgresql.Driver.connect(Driver.java:304)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1703)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1801)
- at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:938)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1890)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1843)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1782)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:313)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:365)
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:135)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1685)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1434)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1355)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1192)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1355)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1192)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:210)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAsRegistrationBean(ServletContextInitializerBeans.java:173)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAsRegistrationBean(ServletContextInitializerBeans.java:168)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAdaptableBeans(ServletContextInitializerBeans.java:153)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:266)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:240)
- at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:52)
- at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4880)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
- at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:845)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
- at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:240)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.StandardService.startInternal(StandardService.java:433)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:921)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.startup.Tomcat.start(Tomcat.java:437)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:126)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:105)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:499)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:218)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.payment.platform.PaymentApplication.main(PaymentApplication.java:21)
- Caused by: java.net.ConnectException: Connection refused: getsockopt
- at java.base/sun.nio.ch.Net.pollConnect(Native Method)
- at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:694)
- at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
- at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)
- at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
- at java.base/java.net.Socket.connect(Socket.java:751)
- at org.postgresql.core.PGStream.createSocket(PGStream.java:243)
- at org.postgresql.core.PGStream.<init>(PGStream.java:98)
- at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:132)
- at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:258)
- at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:54)
- at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:263)
- at org.postgresql.Driver.makeConnection(Driver.java:443)
- at org.postgresql.Driver.access$100(Driver.java:63)
- at org.postgresql.Driver$ConnectThread.run(Driver.java:353)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 12:09:40.199 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 12:09:40.200 [main] ERROR o.s.b.w.e.tomcat.TomcatStarter - Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'jwtAuthFilter' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\core\security\JwtAuthFilter.class]: Unsatisfied dependency expressed through constructor parameter 1: Error creating bean with name 'userDetailsServiceImpl' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\core\security\UserDetailsServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'userMapper' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\module\system\user\mapper\UserMapper.class]: Cannot resolve reference to bean 'sqlSessionTemplate' while setting bean property 'sqlSessionTemplate'
- 2026-07-15 12:09:40.200 [Druid-ConnectionPool-Create-486965279] ERROR c.alibaba.druid.pool.DruidDataSource - create connection SQLException, url: jdbc:postgresql://localhost:5432/payment_platform_java?currentSchema=public, errorCode 0, state 08001
- org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.postgresql.Driver$ConnectThread.getResult(Driver.java:394)
- at org.postgresql.Driver.connect(Driver.java:304)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1703)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1801)
- at com.alibaba.druid.pool.DruidDataSource$CreateConnectionThread.run(DruidDataSource.java:2946)
- Caused by: java.net.ConnectException: Connection refused: getsockopt
- at java.base/sun.nio.ch.Net.pollConnect(Native Method)
- at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:694)
- at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
- at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)
- at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
- at java.base/java.net.Socket.connect(Socket.java:751)
- at org.postgresql.core.PGStream.createSocket(PGStream.java:243)
- at org.postgresql.core.PGStream.<init>(PGStream.java:98)
- at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:132)
- at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:258)
- at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:54)
- at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:263)
- at org.postgresql.Driver.makeConnection(Driver.java:443)
- at org.postgresql.Driver.access$100(Driver.java:63)
- at org.postgresql.Driver$ConnectThread.run(Driver.java:353)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 12:09:40.201 [Druid-ConnectionPool-Create-486965279] ERROR c.alibaba.druid.pool.DruidDataSource - create connection SQLException, url: jdbc:postgresql://localhost:5432/payment_platform_java?currentSchema=public, errorCode 0, state 08001
- org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.postgresql.Driver$ConnectThread.getResult(Driver.java:394)
- at org.postgresql.Driver.connect(Driver.java:304)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1703)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1801)
- at com.alibaba.druid.pool.DruidDataSource$CreateConnectionThread.run(DruidDataSource.java:2946)
- Caused by: java.net.ConnectException: Connection refused: getsockopt
- at java.base/sun.nio.ch.Net.pollConnect(Native Method)
- at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:694)
- at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
- at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)
- at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
- at java.base/java.net.Socket.connect(Socket.java:751)
- at org.postgresql.core.PGStream.createSocket(PGStream.java:243)
- at org.postgresql.core.PGStream.<init>(PGStream.java:98)
- at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:132)
- at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:258)
- at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:54)
- at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:263)
- at org.postgresql.Driver.makeConnection(Driver.java:443)
- at org.postgresql.Driver.access$100(Driver.java:63)
- at org.postgresql.Driver$ConnectThread.run(Driver.java:353)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 12:09:40.201 [Druid-ConnectionPool-Create-486965279] INFO c.a.d.pool.DruidAbstractDataSource - {dataSource-1} failContinuous is true
- 2026-07-15 12:09:40.221 [main] INFO o.a.catalina.core.StandardService - Stopping service [Tomcat]
- 2026-07-15 12:09:40.231 [main] WARN o.a.c.loader.WebappClassLoaderBase - The web application [api#v1] appears to have started a thread named [Druid-ConnectionPool-Create-486965279] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
- java.base/java.lang.Thread.sleep0(Native Method)
- java.base/java.lang.Thread.sleep(Thread.java:509)
- com.alibaba.druid.pool.DruidDataSource$CreateConnectionThread.run(DruidDataSource.java:2969)
- 2026-07-15 12:09:40.231 [main] WARN o.a.c.loader.WebappClassLoaderBase - The web application [api#v1] appears to have started a thread named [Druid-ConnectionPool-Destroy-486965279] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
- java.base/java.lang.Thread.sleep0(Native Method)
- java.base/java.lang.Thread.sleep(Thread.java:509)
- com.alibaba.druid.pool.DruidDataSource$DestroyConnectionThread.run(DruidDataSource.java:3020)
- 2026-07-15 12:09:40.232 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server
- 2026-07-15 12:09:40.239 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger -
- Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
- 2026-07-15 12:09:40.252 [main] ERROR o.s.boot.SpringApplication - Application run failed
- org.springframework.context.ApplicationContextException: Unable to start web server
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:165)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.payment.platform.PaymentApplication.main(PaymentApplication.java:21)
- Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:145)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:105)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:499)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:218)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- ... 8 common frames omitted
- Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'jwtAuthFilter' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\core\security\JwtAuthFilter.class]: Unsatisfied dependency expressed through constructor parameter 1: Error creating bean with name 'userDetailsServiceImpl' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\core\security\UserDetailsServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'userMapper' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\module\system\user\mapper\UserMapper.class]: Cannot resolve reference to bean 'sqlSessionTemplate' while setting bean property 'sqlSessionTemplate'
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1355)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1192)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:210)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAsRegistrationBean(ServletContextInitializerBeans.java:173)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAsRegistrationBean(ServletContextInitializerBeans.java:168)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addAdaptableBeans(ServletContextInitializerBeans.java:153)
- at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:266)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:240)
- at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:52)
- at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4880)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
- at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:845)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
- at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
- at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:317)
- at java.base/java.util.concurrent.FutureTask.run(FutureTask.java)
- at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
- at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
- at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
- at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:240)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.StandardService.startInternal(StandardService.java:433)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:921)
- at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
- at org.apache.catalina.startup.Tomcat.start(Tomcat.java:437)
- at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:126)
- ... 13 common frames omitted
- Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userDetailsServiceImpl' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\core\security\UserDetailsServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'userMapper' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\module\system\user\mapper\UserMapper.class]: Cannot resolve reference to bean 'sqlSessionTemplate' while setting bean property 'sqlSessionTemplate'
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1355)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1192)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- ... 56 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userMapper' defined in file [D:\project2\payment-platform\java\target\classes\com\payment\platform\module\system\user\mapper\UserMapper.class]: Cannot resolve reference to bean 'sqlSessionTemplate' while setting bean property 'sqlSessionTemplate'
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:377)
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:135)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1685)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1434)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- ... 70 common frames omitted
- Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSourceScriptDatabaseInitializer' defined in class path resource [org/springframework/boot/autoconfigure/sql/init/DataSourceInitializationConfiguration.class]: Unsatisfied dependency expressed through method 'dataSourceScriptDatabaseInitializer' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/alibaba/druid/spring/boot3/autoconfigure/DruidDataSourceAutoConfigure.class]: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:313)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:365)
- ... 84 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/alibaba/druid/spring/boot3/autoconfigure/DruidDataSourceAutoConfigure.class]: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1786)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- ... 96 common frames omitted
- Caused by: org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
- at org.postgresql.Driver$ConnectThread.getResult(Driver.java:394)
- at org.postgresql.Driver.connect(Driver.java:304)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1703)
- at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1801)
- at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:938)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1890)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1843)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1782)
- ... 107 common frames omitted
- Caused by: java.net.ConnectException: Connection refused: getsockopt
- at java.base/sun.nio.ch.Net.pollConnect(Native Method)
- at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:694)
- at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
- at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)
- at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
- at java.base/java.net.Socket.connect(Socket.java:751)
- at org.postgresql.core.PGStream.createSocket(PGStream.java:243)
- at org.postgresql.core.PGStream.<init>(PGStream.java:98)
- at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:132)
- at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:258)
- at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:54)
- at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:263)
- at org.postgresql.Driver.makeConnection(Driver.java:443)
- at org.postgresql.Driver.access$100(Driver.java:63)
- at org.postgresql.Driver$ConnectThread.run(Driver.java:353)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 12:10:26.569 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 12:10:26.653 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 36064 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 12:10:26.654 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 12:10:27.594 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 12:10:27.596 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 12:10:27.651 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 42 ms. Found 0 Redis repository interfaces.
- 2026-07-15 12:10:28.202 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 12:10:28.210 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:10:28.211 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 12:10:28.211 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 12:10:28.256 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 12:10:28.256 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1452 ms
- 2026-07-15 12:10:28.276 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 12:10:29.704 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 12:10:30.419 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 12:10:30.564 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 12:10:30.859 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 12:10:31.094 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 12:10:31.592 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@53202b06, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@44ba9f25, org.springframework.security.web.context.SecurityContextHolderFilter@41d8ac75, org.springframework.security.web.header.HeaderWriterFilter@491f3fb0, org.springframework.web.filter.CorsFilter@53570fff, org.springframework.security.web.authentication.logout.LogoutFilter@6c120b00, com.payment.platform.core.security.JwtAuthFilter@375ff309, com.payment.platform.core.security.TenantApiKeyAuthFilter@9976b27, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1964ef9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3c2e73ce, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6e5df971, org.springframework.security.web.session.SessionManagementFilter@58a0f75b, org.springframework.security.web.access.ExceptionTranslationFilter@134ec0f3, org.springframework.security.web.access.intercept.AuthorizationFilter@23169374]
- 2026-07-15 12:10:31.980 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:10:31.990 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 12:10:32.116 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.126 seconds (process running for 6.778)
- 2026-07-15 12:10:32.156 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:10:32.291 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:10:32.932 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 12:10:35.213 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 12:10:37.135 [scheduling-1] ERROR c.p.p.common.utils.RedisLockUtil - 获取分布式锁失败: key=retry:dealing_transfers, error=Unable to connect to Redis
- 2026-07-15 12:10:41.925 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 12:10:41.925 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 12:10:41.927 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 12:11:05.690 [tomcat-handler-7] INFO c.p.p.m.s.auth.service.AuthService - 用户ID: 2, 用户名: q 正在生成JWT令牌
- 2026-07-15 12:11:05.775 [tomcat-handler-7] INFO c.p.p.m.s.a.c.AuthController - 用户q登录成功
- 2026-07-15 12:11:10.925 [tomcat-handler-16] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 12:11:32.303 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:11:32.375 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:12:32.378 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:12:32.489 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:13:32.492 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:13:32.538 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:14:32.540 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:14:32.586 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:15:32.595 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:15:32.642 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:16:01.927 [tomcat-handler-29] ERROR sdk.biz.err - ErrorScene^_^40004^_^INVALID_PARAMETER^_^null^_^Windows 10^_^2026-07-15 12:16:01^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.accountbook.create&sign=fR+2FrWv81cQapnqY2ih0PC/v3RPgJYdF+m7qZU4ayQ7+PJ7eSDllUDuMxWnMAhdm1fhdGcKGZiymWZHzOBRmhOcySbECv51GI8uihDckVWI5WopdyxHHSF13wFB4a+Edhr8CSgxygGIA16k2sp8+B4q32UW3pSvC0hq9kzOAmRlBrbFaPf76D4IgfvHAIO4DgjMzH0CP0H74i7nsMEIJ9HG/OR2fubgmi4hbUa9Q6TqOk9Nr7e2u9+TqXER8wJnt224QclhByBKJWk1WJNkugO43h9/xtbc5XA9hvJbkNzbXqg8UG67Mn5paE/swoZfwtdod375fS5+x3WnxgrR4w==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 12:16:01^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.218.ALL&format=JSON^_^ApplicationParams:traceId=21bbbe9317840889619712186ef878&biz_content={"ext_info":"{\"agreement_no\":\"\"}","merchant_user_id":"2088780324708456","merchant_user_type":"BUSINESS_ORGANIZATION","scene_code":"SATF_FUND_BOOK"}^_^Body:{"alipay_fund_accountbook_create_response":{"msg":"Business Failed","code":"40004","sub_msg":"参数有误该场景码必须在扩展参数中传入协议号","sub_code":"INVALID_PARAMETER"},"sign":"Ow5vsdJ7myAH2TQ1pxdRhYuRK3MLxKo1/Ylc9iBmtgiVpkNCPPiLexhavwdBMZtAROaaSRQssz0Ocin1K7EagVfYbTxaDvolIiBEikWZSmnToIFhO0MYyZMKmXz91hQYhm/PAv6XDK74/geZuTFBzH1WYD0RQvUgNrgvAb/iNq1UaCcQNH6nceldl9P8FFt9tEVFt2ygmCtPwOnQ7spu99YGajNNwsEkOSI3zXPhlGB32CQO4odeVBTGguBECxCZCuOpS4Hv0X2q0UTARhndR+xfaBQ+DU6ulwbfOIb7SINB1yQ0XYOFeTTnRhI9bT2gBv13E4QJuC/It/eADKoLWg=="}^_^9ms,406ms,19ms^_^trace_id:21bbbe9317840889619712186ef878
- 2026-07-15 12:16:01.968 [tomcat-handler-29] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account] 400: 开通资金记账本失败: Business Failed
- 2026-07-15 12:16:32.657 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:16:32.703 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:17:32.709 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:17:32.751 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:18:32.762 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:18:32.804 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:19:32.819 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:19:32.876 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:19:37.239 [tomcat-handler-37] ERROR sdk.biz.err - ErrorScene^_^40004^_^INVALID_PARAMETER^_^null^_^Windows 10^_^2026-07-15 12:19:37^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.accountbook.create&sign=N4pvfh+s+lMG2CbuG/mdVK80rgr0NmERQnxH4kpU1iGu+2KstyYXRvK4j4I0JLlge1BeTTofqTYFRv5efwnEDj2PjEuWooAoDLeDnWtKbAlrtR8I46GV1k5K6RSO+ZE0hI7ltm/VcKDQVTcNoplggmDu9kWL6Oo8vOGi4NBABKUMNkU8KuLomoj7RIYcTMOVGK6rnUz0enEshoj8lRxW+dPl/RUF+R2UzpP42wPJjhqTchmbUUnum+0LLAnHoUAq9KXHW43N3A9wO3SE++eScjIJ7U80JLmh1Z4Ku5D5Be8MHAVdhrI/4MCLs/SlvN+Ko+7BoeQfNBsgzQcpjWPIJw==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 12:19:37^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.218.ALL&format=JSON^_^ApplicationParams:traceId=0b46b99417840891772684617e5c74&biz_content={"ext_info":"{\"agreement_no\":\"\"}","merchant_user_id":"2088780324708456","merchant_user_type":"BUSINESS_ORGANIZATION","scene_code":"SATF_FUND_BOOK"}^_^Body:{"alipay_fund_accountbook_create_response":{"msg":"Business Failed","code":"40004","sub_msg":"参数有误该场景码必须在扩展参数中传入协议号","sub_code":"INVALID_PARAMETER"},"sign":"Ow5vsdJ7myAH2TQ1pxdRhYuRK3MLxKo1/Ylc9iBmtgiVpkNCPPiLexhavwdBMZtAROaaSRQssz0Ocin1K7EagVfYbTxaDvolIiBEikWZSmnToIFhO0MYyZMKmXz91hQYhm/PAv6XDK74/geZuTFBzH1WYD0RQvUgNrgvAb/iNq1UaCcQNH6nceldl9P8FFt9tEVFt2ygmCtPwOnQ7spu99YGajNNwsEkOSI3zXPhlGB32CQO4odeVBTGguBECxCZCuOpS4Hv0X2q0UTARhndR+xfaBQ+DU6ulwbfOIb7SINB1yQ0XYOFeTTnRhI9bT2gBv13E4QJuC/It/eADKoLWg=="}^_^12ms,211ms,10ms^_^trace_id:0b46b99417840891772684617e5c74
- 2026-07-15 12:19:37.274 [tomcat-handler-37] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account] 400: 开通资金记账本失败: Business Failed
- 2026-07-15 12:20:32.889 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:20:32.937 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:21:32.946 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:21:32.989 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:22:32.998 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:22:33.042 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:23:33.052 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:23:33.096 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:24:33.097 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:24:33.141 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:24:46.623 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 12:24:46.625 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 12:24:51.489 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 12:24:51.563 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 40876 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 12:24:51.563 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 12:24:52.427 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 12:24:52.429 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 12:24:52.964 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 523 ms. Found 0 Redis repository interfaces.
- 2026-07-15 12:24:53.529 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 12:24:53.537 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:24:53.539 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 12:24:53.539 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 12:24:53.583 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 12:24:53.583 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1878 ms
- 2026-07-15 12:24:53.603 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 12:24:54.912 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 12:24:55.626 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 12:24:55.767 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 12:24:56.057 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 12:24:56.297 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 12:24:56.844 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@1f2d0ca2, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@e353e1d, org.springframework.security.web.context.SecurityContextHolderFilter@3ae91bcc, org.springframework.security.web.header.HeaderWriterFilter@93c66ef, org.springframework.web.filter.CorsFilter@1a1c308b, org.springframework.security.web.authentication.logout.LogoutFilter@285ac29, com.payment.platform.core.security.JwtAuthFilter@7a85dc58, com.payment.platform.core.security.TenantApiKeyAuthFilter@357cdb00, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5625e7e1, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@59172d2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@d4dbb34, org.springframework.security.web.session.SessionManagementFilter@1a18e68a, org.springframework.security.web.access.ExceptionTranslationFilter@77e261e3, org.springframework.security.web.access.intercept.AuthorizationFilter@44cab872]
- 2026-07-15 12:24:57.259 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:24:57.274 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 12:24:57.435 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.425 seconds (process running for 6.978)
- 2026-07-15 12:24:57.475 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:24:57.603 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:24:59.268 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 12:25:00.463 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 12:25:02.554 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 12:25:02.554 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 12:25:02.555 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 12:25:03.059 [tomcat-handler-0] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 12:25:03.542 [tomcat-handler-0] INFO sdk.biz.info - Summary^_^10000^_^null^_^ProtocalMustParams:charset=UTF-8&method=alipay.user.agreement.query&sign=B17tNE9TpVOkvm8g2sMv6lHZc+NWgN/IX5/zs3j3jOfct3eQss04GEVPznNoDg+2XCjRxDdBkSuKkOW8qCAMgwKkp4vf0lmG2/aM+5CeHMjyQ9tSUZJK/hcGngdQy4z8MRfmPsUlkVIPcdvYb2XxB++8hPTGiX6fQCR9sRvs4tHj/Hnhk1da/WC5BS3e4qLKC57B7yY9PHBP0/h4oONqYxuOLzv98zg/77x8Uph33DnPrVd/rPuBWzhiDN+FBH2ucXQflF00U6WHb062bg3549I1ita/Q62sOiy9pQFdQdoY6MtlLPQx8G3IZDb9zQXzsNuIui+niSYRUE6y7iFNrA==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 12:25:03^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.218.ALL&format=JSON^_^ApplicationParams:biz_content={"external_agreement_no":"2088780324708456_agreement","personal_product_code":"FUND_SAFT_SIGN_WITHHOLDING_P","sign_scene":"INDUSTRY|SATF_ACC","third_party_type":"PARTNER"}^_^26ms,430ms,25ms^_^trace_id:0b442aa917840895035113424e910d
- 2026-07-15 12:25:17.396 [tomcat-handler-8] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account] 400: 请先查询签约结果获取协议号
- 2026-07-15 12:25:57.618 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:25:57.662 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:26:57.664 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:26:57.707 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:27:57.724 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:27:57.770 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:28:57.782 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:28:57.828 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:29:57.838 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:29:57.884 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:30:57.895 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:30:57.942 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:31:57.953 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:31:57.999 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:32:58.001 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:32:58.045 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:33:58.058 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:33:58.100 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:34:58.159 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:34:58.229 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:35:58.232 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:35:58.274 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:36:58.285 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:36:58.330 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:37:58.339 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:37:58.382 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:38:58.383 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:38:58.425 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:39:58.429 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:39:58.471 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:40:58.475 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:40:58.517 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:41:58.528 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:41:58.569 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:42:58.573 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:42:58.615 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:43:58.617 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:43:58.660 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:44:24.289 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 12:44:24.291 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 12:44:29.631 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 12:44:29.708 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 24556 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 12:44:29.708 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 12:44:30.671 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 12:44:30.674 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 12:44:30.761 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 0 Redis repository interfaces.
- 2026-07-15 12:44:31.348 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 12:44:31.357 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:44:31.358 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 12:44:31.358 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 12:44:31.410 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 12:44:31.411 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1548 ms
- 2026-07-15 12:44:31.442 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 12:44:32.876 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 12:44:33.667 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 12:44:33.816 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 12:44:34.160 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 12:44:34.449 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 12:44:34.966 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@1390a43a, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7bf2e475, org.springframework.security.web.context.SecurityContextHolderFilter@134ec0f3, org.springframework.security.web.header.HeaderWriterFilter@721fc228, org.springframework.web.filter.CorsFilter@e75bae7, org.springframework.security.web.authentication.logout.LogoutFilter@34a482d0, com.payment.platform.core.security.JwtAuthFilter@240df292, com.payment.platform.core.security.TenantApiKeyAuthFilter@4d7c9b42, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@491f3fb0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3d0ce151, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3531509c, org.springframework.security.web.session.SessionManagementFilter@623a891d, org.springframework.security.web.access.ExceptionTranslationFilter@6fb51e17, org.springframework.security.web.access.intercept.AuthorizationFilter@2709e075]
- 2026-07-15 12:44:35.387 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:44:35.403 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 12:44:35.587 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.577 seconds (process running for 7.16)
- 2026-07-15 12:44:35.627 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:44:35.761 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:44:37.453 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 12:44:38.778 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 12:45:35.770 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:45:35.813 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:46:35.826 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:46:35.871 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:47:35.876 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:47:35.919 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:48:35.932 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:48:35.976 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:49:35.984 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:49:36.026 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:49:36.754 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 12:49:36.756 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 12:49:42.273 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 12:49:42.367 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 12416 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 12:49:42.368 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 12:49:43.452 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 12:49:43.454 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 12:49:43.522 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 56 ms. Found 0 Redis repository interfaces.
- 2026-07-15 12:49:44.337 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 12:49:44.344 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:49:44.345 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 12:49:44.346 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 12:49:44.389 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 12:49:44.390 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1865 ms
- 2026-07-15 12:49:44.418 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 12:49:45.726 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 12:49:46.454 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 12:49:46.598 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 12:49:46.900 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 12:49:47.140 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 12:49:47.649 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@189f3ccd, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2eb0932c, org.springframework.security.web.context.SecurityContextHolderFilter@5de14222, org.springframework.security.web.header.HeaderWriterFilter@19a4cdea, org.springframework.web.filter.CorsFilter@82382d1, org.springframework.security.web.authentication.logout.LogoutFilter@6fc3f1a7, com.payment.platform.core.security.JwtAuthFilter@6f87a7c7, com.payment.platform.core.security.TenantApiKeyAuthFilter@74c23525, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@722d3ddb, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@721fc228, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6c120b00, org.springframework.security.web.session.SessionManagementFilter@6debf1b8, org.springframework.security.web.access.ExceptionTranslationFilter@732bb49d, org.springframework.security.web.access.intercept.AuthorizationFilter@2a738d47]
- 2026-07-15 12:49:48.067 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 12:49:48.079 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 12:49:48.228 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.619 seconds (process running for 7.266)
- 2026-07-15 12:49:48.266 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:49:48.397 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:49:50.247 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 12:49:52.086 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 12:49:55.588 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 12:49:55.588 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 12:49:55.590 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 12:49:56.046 [tomcat-handler-0] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 12:49:56.545 [tomcat-handler-0] ERROR sdk.biz.err - ErrorScene^_^40004^_^EXPAND_INDIRECT_VERIFY_FAIL^_^null^_^Windows 10^_^2026-07-15 12:49:56^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.accountbook.create&sign=CCU7G9J3oyZJ0L/D5a/Evg2MG6zOyaPuJ2DrPN8kgE65mUNhroy+AOPoOx2xptSGFzt0DLptfOnthC2JXbj94KP24diZjA+CMtCcVGCzVLe1tUPYVoVy79//zsDodis8WYxOvP5qeySCT9tcOylXaet17UOJ0a/arZhouJ4WWpYc1mcqA+SJQRVCLVzyT30Va8DwpWkhUbz9gOhXn/AK+fOubeXgleRQ4WD3Kuge1ERXXWwbf6yk2sO59KR1YUsDfvdfCbgG+noLiRUTJR3QXS+VMcIeOSlMzVRyTnyCjqtAI7ehToiNglBjdxUPRWvpfVdBcs9ogi41A7+ue5TFfw==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 12:49:56^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.39.218.ALL&format=JSON^_^ApplicationParams:traceId=21d6639317840909965347752ecdfa&biz_content={"ext_info":"{\"agreement_no\":\"20265515324430130114\"}","merchant_user_id":"2088780324708456","merchant_user_type":"BUSINESS_ORGANIZATION","scene_code":"SATF_FUND_BOOK"}^_^Body:{"alipay_fund_accountbook_create_response":{"msg":"Business Failed","code":"40004","sub_msg":"经校验,缺乏进件信息,请调用进件接口补充进件信息","sub_code":"EXPAND_INDIRECT_VERIFY_FAIL"},"sign":"IEJZaxcmhSpx0PLMYtVv/9Sm7TjgLQFdvD8pEwyVm+kzawlETTwNBbrRUtunI+P+nBrhvpa7iIi/m2iRTRfC7LCl3BrMZTUgPsM4aq4eozhCvP1TQ8mfzUVCtlI7INe6F65OzrQdC/YEjxxJ6JrjDa9SF2vGfyaTv1PeCnHTUbdAQP2gx6zNXWZ8RZnQBv7JStuYtsOWODfOfeSxbktgGhmaeA8CzOV6Aib0YukNbxq6uJw+iHecpR6hQO9I8bh6aRLfFeGlGxebgPiuxFZ8nrvEvZL7dIkuEwV44w2Jbulwriwr2ryAE3DAUdpUPgw10/ZjeoiG8IBIq9E9O1ax3g=="}^_^34ms,445ms,19ms^_^trace_id:21d6639317840909965347752ecdfa
- 2026-07-15 12:49:56.584 [tomcat-handler-0] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account] 400: 开通资金记账本失败: Business Failed
- 2026-07-15 12:50:48.409 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:50:48.452 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:51:48.457 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:51:48.502 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:52:48.511 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:52:48.554 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:53:48.559 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:53:48.606 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:54:48.613 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:54:48.656 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:55:48.658 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:55:48.701 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:56:48.715 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:56:48.757 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:57:48.806 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:57:48.931 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:58:48.946 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:58:48.989 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 12:59:49.002 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 12:59:49.047 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:00:49.051 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:00:49.093 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:01:49.103 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:01:49.146 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:02:49.147 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:02:49.190 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:03:49.194 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:03:49.236 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:04:49.237 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:04:49.279 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:05:49.300 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:05:49.349 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:06:49.360 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:06:49.402 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:07:49.409 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:07:49.452 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:08:49.463 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:08:49.515 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:09:49.521 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:09:49.562 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:10:49.563 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:10:49.607 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:11:49.613 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:11:49.656 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:12:49.669 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:12:49.715 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:13:49.727 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:13:49.770 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:14:49.775 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:14:49.818 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:15:49.822 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:15:49.864 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:16:49.873 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:16:49.914 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:17:49.925 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:17:49.967 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:18:49.978 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:18:50.019 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:19:50.028 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:19:50.072 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:20:50.078 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:20:50.119 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:21:50.130 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:21:50.176 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:22:50.190 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:22:50.234 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:23:50.243 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:23:50.378 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:24:50.386 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:24:50.495 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:25:50.510 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:25:50.554 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:26:50.556 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:26:50.598 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:27:50.613 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:27:50.655 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:28:50.669 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:28:50.711 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:29:50.713 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:29:50.755 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:30:50.757 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:30:50.801 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:31:50.809 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:31:50.851 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:32:50.865 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:32:50.907 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:33:50.910 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:33:50.954 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:34:50.961 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:34:51.006 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:35:51.015 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:35:51.058 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:36:51.070 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:36:51.112 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:37:51.113 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:37:51.156 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:38:51.162 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:38:51.204 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:39:51.218 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:39:51.260 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:40:51.273 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:40:51.315 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:41:51.331 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:41:51.376 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:42:51.380 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:42:51.421 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:43:51.433 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:43:51.477 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:44:51.484 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:44:51.526 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:45:51.540 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:45:51.584 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:46:51.589 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:46:51.631 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:47:51.637 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:47:51.678 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:48:51.678 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:48:51.720 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:49:51.721 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:49:51.763 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:50:51.773 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:50:51.816 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:51:51.829 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:51:51.871 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:52:51.882 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:52:51.924 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:53:51.930 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:53:51.974 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:54:51.978 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 定时任务开始执行
- 2026-07-15 13:54:52.023 [scheduling-1] INFO c.p.p.m.p.f.s.F2fTradePollScheduler - [收款轮询] 无待轮询交易
- 2026-07-15 13:55:46.777 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 13:55:46.780 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 13:55:59.605 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 13:55:59.672 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 6616 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 13:55:59.672 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 13:56:00.744 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 13:56:00.747 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 13:56:00.904 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 126 ms. Found 0 Redis repository interfaces.
- 2026-07-15 13:56:01.465 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 13:56:01.473 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 13:56:01.474 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 13:56:01.474 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 13:56:01.518 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 13:56:01.518 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1706 ms
- 2026-07-15 13:56:01.542 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 13:56:02.974 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 13:56:03.726 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 13:56:03.909 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 13:56:04.386 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 13:56:04.646 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 13:56:05.179 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@2a738d47, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6939f18a, org.springframework.security.web.context.SecurityContextHolderFilter@6debf1b8, org.springframework.security.web.header.HeaderWriterFilter@5fb0a09e, org.springframework.web.filter.CorsFilter@8bd9d08, org.springframework.security.web.authentication.logout.LogoutFilter@2027d56f, com.payment.platform.core.security.JwtAuthFilter@2c451c4a, com.payment.platform.core.security.TenantApiKeyAuthFilter@4d7c9b42, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4fe9fb65, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5de14222, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@189f3ccd, org.springframework.security.web.session.SessionManagementFilter@684eb4a0, org.springframework.security.web.access.ExceptionTranslationFilter@62ff3028, org.springframework.security.web.access.intercept.AuthorizationFilter@30ce78e3]
- 2026-07-15 13:56:05.618 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 13:56:05.633 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 13:56:05.756 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.701 seconds (process running for 7.315)
- 2026-07-15 13:56:07.759 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 13:56:08.768 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 13:56:11.753 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 13:56:11.753 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 13:56:11.755 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
- 2026-07-15 13:56:13.365 [tomcat-handler-1] ERROR c.p.p.c.e.GlobalExceptionHandler - 系统异常 [/api/v1/payment/account/query/2088780324708456]
- org.springframework.jdbc.BadSqlGrammarException:
- ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: column "onboard_status" does not exist
- 位置:110
- ### The error may exist in com/payment/platform/module/payment/account/mapper/AccountMapper.java (best guess)
- ### The error may involve defaultParameterMap
- ### The error occurred while setting parameters
- ### SQL: SELECT id, status, account_book_id, account_name, account_type, scene, sign_status, sign_time, agreement_no, onboard_status, onboard_order_id, onboard_out_biz_no, remark, enterprise_id, tenant_id, description, created_time, updated_time FROM pay_account WHERE (enterprise_id = ?) AND tenant_id = 2
- ### Cause: org.postgresql.util.PSQLException: ERROR: column "onboard_status" does not exist
- 位置:110
- ; bad SQL grammar []
- at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:112)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:107)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:116)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:116)
- at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
- at jdk.proxy2/jdk.proxy2.$Proxy95.selectList(Unknown Source)
- at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
- at jdk.proxy2/jdk.proxy2.$Proxy133.selectList(Unknown Source)
- at com.payment.platform.module.payment.account.service.AccountService.queryAccounts(AccountService.java:72)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
- at com.payment.platform.module.payment.account.service.AccountService$$SpringCGLIB$$0.queryAccounts(<generated>)
- at com.payment.platform.module.payment.account.controller.AccountController.query(AccountController.java:70)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.security.authorization.method.AuthorizationManagerBeforeMethodInterceptor.invoke(AuthorizationManagerBeforeMethodInterceptor.java:198)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
- at com.payment.platform.module.payment.account.controller.AccountController$$SpringCGLIB$$0.query(<generated>)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:206)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:110)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at com.payment.platform.core.log.RequestCachingFilter.doFilter(RequestCachingFilter.java:28)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108)
- at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:365)
- at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126)
- at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131)
- at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at com.payment.platform.core.security.JwtAuthFilter.doFilterInternal(JwtAuthFilter.java:181)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- 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:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82)
- at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191)
- at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113)
- at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195)
- at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113)
- at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74)
- at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:391)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1736)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
- Caused by: org.postgresql.util.PSQLException: ERROR: column "onboard_status" does not exist
- 位置:110
- at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2713)
- at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2401)
- at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:368)
- at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:498)
- at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:415)
- at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:190)
- at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:177)
- at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
- at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65)
- at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
- at jdk.proxy2/jdk.proxy2.$Proxy148.query(Unknown Source)
- at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65)
- at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336)
- at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)
- at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)
- at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59)
- at jdk.proxy2/jdk.proxy2.$Proxy147.query(Unknown Source)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425)
- ... 131 common frames omitted
- 2026-07-15 13:56:13.603 [tomcat-handler-3] ERROR c.p.p.c.e.GlobalExceptionHandler - 系统异常 [/api/v1/payment/account/query/2088780324708456]
- org.springframework.jdbc.BadSqlGrammarException:
- ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: column "onboard_status" does not exist
- 位置:110
- ### The error may exist in com/payment/platform/module/payment/account/mapper/AccountMapper.java (best guess)
- ### The error may involve defaultParameterMap
- ### The error occurred while setting parameters
- ### SQL: SELECT id, status, account_book_id, account_name, account_type, scene, sign_status, sign_time, agreement_no, onboard_status, onboard_order_id, onboard_out_biz_no, remark, enterprise_id, tenant_id, description, created_time, updated_time FROM pay_account WHERE (enterprise_id = ?) AND tenant_id = 2
- ### Cause: org.postgresql.util.PSQLException: ERROR: column "onboard_status" does not exist
- 位置:110
- ; bad SQL grammar []
- at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:112)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:107)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:116)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:116)
- at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
- at jdk.proxy2/jdk.proxy2.$Proxy95.selectList(Unknown Source)
- at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
- at jdk.proxy2/jdk.proxy2.$Proxy133.selectList(Unknown Source)
- at com.payment.platform.module.payment.account.service.AccountService.queryAccounts(AccountService.java:72)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716)
- at com.payment.platform.module.payment.account.service.AccountService$$SpringCGLIB$$0.queryAccounts(<generated>)
- at com.payment.platform.module.payment.account.controller.AccountController.query(AccountController.java:70)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.security.authorization.method.AuthorizationManagerBeforeMethodInterceptor.invoke(AuthorizationManagerBeforeMethodInterceptor.java:198)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
- at com.payment.platform.module.payment.account.controller.AccountController$$SpringCGLIB$$0.query(<generated>)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:206)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:110)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at com.payment.platform.core.log.RequestCachingFilter.doFilter(RequestCachingFilter.java:28)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108)
- at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:365)
- at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126)
- at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131)
- at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at com.payment.platform.core.security.JwtAuthFilter.doFilterInternal(JwtAuthFilter.java:181)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- 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:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82)
- at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:374)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191)
- at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113)
- at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195)
- at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113)
- at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74)
- at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:175)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:150)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:391)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1736)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
- Caused by: org.postgresql.util.PSQLException: ERROR: column "onboard_status" does not exist
- 位置:110
- at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2713)
- at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2401)
- at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:368)
- at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:498)
- at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:415)
- at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:190)
- at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:177)
- at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
- at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65)
- at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
- at jdk.proxy2/jdk.proxy2.$Proxy148.query(Unknown Source)
- at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65)
- at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336)
- at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)
- at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)
- at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59)
- at jdk.proxy2/jdk.proxy2.$Proxy147.query(Unknown Source)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425)
- ... 131 common frames omitted
- 2026-07-15 14:08:41.111 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:08:41.113 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:08:45.748 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:08:45.811 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 31092 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:08:45.811 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:08:46.955 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:08:46.957 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:08:47.006 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 38 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:08:47.567 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:08:47.577 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:08:47.578 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:08:47.578 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:08:47.628 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:08:47.628 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1505 ms
- 2026-07-15 14:08:47.655 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:08:48.977 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:08:49.688 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:08:49.831 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:08:50.131 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:08:50.395 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:08:50.911 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@e75bae7, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3531509c, org.springframework.security.web.context.SecurityContextHolderFilter@491f3fb0, org.springframework.security.web.header.HeaderWriterFilter@623a891d, org.springframework.web.filter.CorsFilter@23169374, org.springframework.security.web.authentication.logout.LogoutFilter@6939f18a, com.payment.platform.core.security.JwtAuthFilter@531bec12, com.payment.platform.core.security.TenantApiKeyAuthFilter@2f29e630, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@58a0f75b, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2b569858, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4f2b1a2f, org.springframework.security.web.session.SessionManagementFilter@756030e2, org.springframework.security.web.access.ExceptionTranslationFilter@721fc228, org.springframework.security.web.access.intercept.AuthorizationFilter@4f9e9c21]
- 2026-07-15 14:08:51.333 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:08:51.350 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:08:51.494 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.358 seconds (process running for 6.928)
- 2026-07-15 14:08:53.264 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:08:54.774 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:09:01.949 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:09:01.950 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:09:01.951 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 14:09:11.728 [tomcat-handler-7] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 14:09:15.363 [tomcat-handler-8] INFO sdk.biz.info - Summary^_^10000^_^null^_^ProtocalMustParams:charset=UTF-8&method=alipay.user.agreement.query&sign=Auiki6jsgzWWm45cr9U1XPar8sDYikj2fUOaveT7drmQcx/l78e0A9POV6XeExsmKKpgpz/+/LEUrnHQoNK79mqPJNhFN6EsJysXc5aGCYKWIscr5X9FvRgG6RgyNNRdMnTugrV9Q6AoZ67LRgLDZVA0Xa5sd9R8U+9tz1q/mcnJE00mJtkxyPeK/iFw+CDm3hexzRPliwLiPFz+FpIlvEOUGmHj17dSYbfwolocK7VRATEIV+r8RFaYKrS0Z8YDInG4O5g9d3H4d9nvtdD+CWrHgCmGCZch3OnHV6wui2duFD4utIVkvjifPr41Bebt+VFg2z/azNKJB1jZP0tNvA==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:09:14^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=219945d417840957555154451edad4&biz_content={"external_agreement_no":"2088780324708456_agreement","personal_product_code":"FUND_SAFT_SIGN_WITHHOLDING_P","sign_scene":"INDUSTRY|SATF_ACC","third_party_type":"PARTNER"}^_^9ms,370ms,18ms^_^trace_id:219945d417840957555154451edad4
- 2026-07-15 14:09:15.670 [tomcat-handler-8] ERROR sdk.biz.err - ErrorScene^_^40004^_^EXPAND_INDIRECT_VERIFY_FAIL^_^null^_^Windows 10^_^2026-07-15 14:09:15^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.accountbook.create&sign=K9wbVw8UOUzsWbAX8inUsZVNuaD5idS0jpiGOux3vj9oUVum8b3rROOoayg042uty8gjWWIdpA0LvtzGpWbtrrgCdPaHcPAUGufBBCn/WDDKRYWOwLHrFm8KI0L/YH9TUcHFFhwKTCU8PR9+IRJjsUMziTgCzgrH/fJBOUKCsYXf+XcVNWJG6pl2Br8Ynn7i3NdoOmYkIlmKwWp1Guyr43Vmeo9Zfhp4gOl/gu/8IJBEyyAFwf4kb2Sqjt4sImQUx/hhibC2tFwtiElQPAF0OTpC2Ae68X5umzUSmTDloU4rL8y1hnbDmNaFyNfnG/fKJnCHZsGAJJARBWxjX5wtDQ==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:09:15^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=219945d417840957557934487edad4&biz_content={"ext_info":"{\"agreement_no\":\"20265515324430130114\"}","merchant_user_id":"2088780324708456","merchant_user_type":"BUSINESS_ORGANIZATION","scene_code":"SATF_FUND_BOOK"}^_^Body:{"alipay_fund_accountbook_create_response":{"msg":"Business Failed","code":"40004","sub_msg":"经校验,缺乏进件信息,请调用进件接口补充进件信息","sub_code":"EXPAND_INDIRECT_VERIFY_FAIL"},"sign":"IEJZaxcmhSpx0PLMYtVv/9Sm7TjgLQFdvD8pEwyVm+kzawlETTwNBbrRUtunI+P+nBrhvpa7iIi/m2iRTRfC7LCl3BrMZTUgPsM4aq4eozhCvP1TQ8mfzUVCtlI7INe6F65OzrQdC/YEjxxJ6JrjDa9SF2vGfyaTv1PeCnHTUbdAQP2gx6zNXWZ8RZnQBv7JStuYtsOWODfOfeSxbktgGhmaeA8CzOV6Aib0YukNbxq6uJw+iHecpR6hQO9I8bh6aRLfFeGlGxebgPiuxFZ8nrvEvZL7dIkuEwV44w2Jbulwriwr2ryAE3DAUdpUPgw10/ZjeoiG8IBIq9E9O1ax3g=="}^_^9ms,202ms,13ms^_^trace_id:219945d417840957557934487edad4
- 2026-07-15 14:09:15.712 [tomcat-handler-8] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account] 400: 开通资金记账本失败: Business Failed
- 2026-07-15 14:17:54.758 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:17:54.760 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:18:00.789 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:18:00.893 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 24356 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:18:00.894 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:18:02.045 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:18:02.046 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:18:02.121 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 61 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:18:02.833 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:18:02.843 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:18:02.845 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:18:02.846 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:18:02.900 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:18:02.901 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1748 ms
- 2026-07-15 14:18:02.936 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:18:04.399 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:18:05.193 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:18:05.345 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:18:05.668 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:18:05.934 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:18:06.469 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@1390a43a, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7bf2e475, org.springframework.security.web.context.SecurityContextHolderFilter@134ec0f3, org.springframework.security.web.header.HeaderWriterFilter@721fc228, org.springframework.web.filter.CorsFilter@e75bae7, org.springframework.security.web.authentication.logout.LogoutFilter@34a482d0, com.payment.platform.core.security.JwtAuthFilter@240df292, com.payment.platform.core.security.TenantApiKeyAuthFilter@54087bdb, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@491f3fb0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3d0ce151, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3531509c, org.springframework.security.web.session.SessionManagementFilter@623a891d, org.springframework.security.web.access.ExceptionTranslationFilter@6fb51e17, org.springframework.security.web.access.intercept.AuthorizationFilter@2709e075]
- 2026-07-15 14:18:06.891 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:18:06.903 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:18:07.039 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 7.497 seconds (process running for 8.25)
- 2026-07-15 14:18:09.113 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:18:10.929 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:18:26.023 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:18:26.023 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:18:26.024 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 14:19:11.781 [lettuce-eventExecutorLoop-1-1] INFO i.l.core.protocol.ConnectionWatchdog - Reconnecting, last destination was localhost/127.0.0.1:6379
- 2026-07-15 14:19:11.788 [lettuce-nioEventLoop-4-2] WARN i.l.core.protocol.ConnectionWatchdog - Cannot reconnect to [localhost/<unresolved>:6379]: 你的主机中的软件中止了一个已建立的连接。
- java.io.IOException: 你的主机中的软件中止了一个已建立的连接。
- at java.base/sun.nio.ch.SocketDispatcher.read0(Native Method)
- at java.base/sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:47)
- at java.base/sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:340)
- at java.base/sun.nio.ch.IOUtil.read(IOUtil.java:294)
- at java.base/sun.nio.ch.IOUtil.read(IOUtil.java:269)
- at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:425)
- at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
- at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
- at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
- at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
- at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
- at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
- at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
- at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
- at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
- at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
- at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 14:19:12.292 [scheduling-1] ERROR c.p.p.common.utils.RedisLockUtil - 获取分布式锁失败: key=retry:dealing_transfers, error=Redis exception
- 2026-07-15 14:19:20.869 [lettuce-eventExecutorLoop-1-1] INFO i.l.core.protocol.ConnectionWatchdog - Reconnecting, last destination was localhost/<unresolved>:6379
- 2026-07-15 14:19:20.870 [lettuce-nioEventLoop-4-2] WARN i.l.core.protocol.ConnectionWatchdog - Cannot reconnect to [localhost/<unresolved>:6379]: 你的主机中的软件中止了一个已建立的连接。
- java.io.IOException: 你的主机中的软件中止了一个已建立的连接。
- at java.base/sun.nio.ch.SocketDispatcher.read0(Native Method)
- at java.base/sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:47)
- at java.base/sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:340)
- at java.base/sun.nio.ch.IOUtil.read(IOUtil.java:294)
- at java.base/sun.nio.ch.IOUtil.read(IOUtil.java:269)
- at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:425)
- at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255)
- at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
- at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
- at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
- at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
- at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
- at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
- at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
- at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
- at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
- at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
- at java.base/java.lang.Thread.run(Thread.java:1583)
- 2026-07-15 14:19:29.069 [lettuce-eventExecutorLoop-1-2] INFO i.l.core.protocol.ConnectionWatchdog - Reconnecting, last destination was localhost/<unresolved>:6379
- 2026-07-15 14:19:29.177 [lettuce-nioEventLoop-4-3] INFO i.l.c.protocol.ReconnectionHandler - Reconnected to localhost/<unresolved>:6379
- 2026-07-15 14:20:07.143 [scheduling-1] ERROR c.alibaba.druid.pool.DruidDataSource - {conn-10005} discard
- org.postgresql.util.PSQLException: An I/O error occurred while sending to the backend.
- at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:395)
- at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:498)
- at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:415)
- at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:190)
- at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:177)
- at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
- at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65)
- at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
- at jdk.proxy2/jdk.proxy2.$Proxy148.query(Unknown Source)
- at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65)
- at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336)
- at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)
- at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)
- at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59)
- at jdk.proxy2/jdk.proxy2.$Proxy147.query(Unknown Source)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425)
- at jdk.proxy2/jdk.proxy2.$Proxy95.selectList(Unknown Source)
- at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
- at jdk.proxy2/jdk.proxy2.$Proxy114.selectPendingNameSync(Unknown Source)
- at com.payment.platform.module.payment.enterprise.scheduler.EnterpriseNameSyncScheduler.retryNameSync(EnterpriseNameSyncScheduler.java:43)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.scheduling.support.ScheduledMethodRunnable.runInternal(ScheduledMethodRunnable.java:130)
- at org.springframework.scheduling.support.ScheduledMethodRunnable.lambda$run$2(ScheduledMethodRunnable.java:124)
- at io.micrometer.observation.Observation.observe(Observation.java:499)
- at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:124)
- at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
- at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
- at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:358)
- at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java)
- at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
- at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
- Caused by: java.io.EOFException: null
- at org.postgresql.core.PGStream.receiveChar(PGStream.java:467)
- at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2155)
- at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:368)
- ... 46 common frames omitted
- 2026-07-15 14:20:07.399 [scheduling-1] ERROR o.s.s.s.TaskUtils$LoggingErrorHandler - Unexpected error occurred in scheduled task
- org.springframework.dao.DataAccessResourceFailureException:
- ### Error querying database. Cause: org.postgresql.util.PSQLException: An I/O error occurred while sending to the backend.
- ### The error may exist in com/payment/platform/module/payment/enterprise/mapper/EnterpriseMapper.java (best guess)
- ### The error may involve com.payment.platform.module.payment.enterprise.mapper.EnterpriseMapper.selectPendingNameSync-Inline
- ### The error occurred while setting parameters
- ### SQL: SELECT * FROM pay_enterprise WHERE name_sync_status = '0' AND name_sync_retry_count < ? AND name_sync_next_time <= NOW() LIMIT ?
- ### Cause: org.postgresql.util.PSQLException: An I/O error occurred while sending to the backend.
- ; An I/O error occurred while sending to the backend.
- at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:121)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:107)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:116)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:116)
- at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)
- at jdk.proxy2/jdk.proxy2.$Proxy95.selectList(Unknown Source)
- at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
- at jdk.proxy2/jdk.proxy2.$Proxy114.selectPendingNameSync(Unknown Source)
- at com.payment.platform.module.payment.enterprise.scheduler.EnterpriseNameSyncScheduler.retryNameSync(EnterpriseNameSyncScheduler.java:43)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.scheduling.support.ScheduledMethodRunnable.runInternal(ScheduledMethodRunnable.java:130)
- at org.springframework.scheduling.support.ScheduledMethodRunnable.lambda$run$2(ScheduledMethodRunnable.java:124)
- at io.micrometer.observation.Observation.observe(Observation.java:499)
- at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:124)
- at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
- at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
- at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:358)
- at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java)
- at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
- at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
- Caused by: org.postgresql.util.PSQLException: An I/O error occurred while sending to the backend.
- at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:395)
- at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:498)
- at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:415)
- at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:190)
- at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:177)
- at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
- at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65)
- at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
- at jdk.proxy2/jdk.proxy2.$Proxy148.query(Unknown Source)
- at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65)
- at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336)
- at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)
- at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)
- at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59)
- at jdk.proxy2/jdk.proxy2.$Proxy147.query(Unknown Source)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425)
- ... 22 common frames omitted
- Caused by: java.io.EOFException: null
- at org.postgresql.core.PGStream.receiveChar(PGStream.java:467)
- at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2155)
- at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:368)
- ... 46 common frames omitted
- 2026-07-15 14:20:20.813 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:20:20.815 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:20:23.621 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:20:23.685 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 26884 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:20:23.685 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:20:24.568 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:20:24.570 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:20:24.622 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 39 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:20:25.180 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:20:25.187 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:20:25.189 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:20:25.189 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:20:25.235 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:20:25.235 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1399 ms
- 2026-07-15 14:20:25.259 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:20:26.654 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:20:27.443 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:20:27.594 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:20:27.894 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:20:28.140 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:20:28.654 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@46baac0d, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@493489dd, org.springframework.security.web.context.SecurityContextHolderFilter@240e61, org.springframework.security.web.header.HeaderWriterFilter@3c2e73ce, org.springframework.web.filter.CorsFilter@3358805a, org.springframework.security.web.authentication.logout.LogoutFilter@3531509c, com.payment.platform.core.security.JwtAuthFilter@41d84abb, com.payment.platform.core.security.TenantApiKeyAuthFilter@3bf40c74, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2027d56f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@44c54463, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@77e261e3, org.springframework.security.web.session.SessionManagementFilter@4a778943, org.springframework.security.web.access.ExceptionTranslationFilter@1e1d813a, org.springframework.security.web.access.intercept.AuthorizationFilter@2ca464bb]
- 2026-07-15 14:20:29.041 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:20:29.052 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:20:29.157 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.157 seconds (process running for 7.305)
- 2026-07-15 14:20:31.011 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:20:31.906 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:21:41.842 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:21:41.842 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:21:41.845 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
- 2026-07-15 14:26:12.853 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:26:12.855 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:26:17.453 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:26:17.514 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 39220 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:26:17.515 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:26:18.340 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:26:18.342 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:26:18.391 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 39 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:26:18.928 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:26:18.936 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:26:18.937 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:26:18.938 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:26:18.980 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:26:18.980 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1324 ms
- 2026-07-15 14:26:19.003 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:26:20.407 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:26:21.106 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:26:21.246 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:26:21.562 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:26:21.801 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:26:22.337 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@53570fff, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6e5df971, org.springframework.security.web.context.SecurityContextHolderFilter@1964ef9, org.springframework.security.web.header.HeaderWriterFilter@58a0f75b, org.springframework.web.filter.CorsFilter@3c7787a7, org.springframework.security.web.authentication.logout.LogoutFilter@2709e075, com.payment.platform.core.security.JwtAuthFilter@176054b7, com.payment.platform.core.security.TenantApiKeyAuthFilter@2d5e051e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3891db3a, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4a778943, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2ca464bb, org.springframework.security.web.session.SessionManagementFilter@1b84d03d, org.springframework.security.web.access.ExceptionTranslationFilter@491f3fb0, org.springframework.security.web.access.intercept.AuthorizationFilter@6c2a33af]
- 2026-07-15 14:26:22.710 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:26:22.722 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:26:22.840 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 5.896 seconds (process running for 6.453)
- 2026-07-15 14:26:24.762 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:26:26.373 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:28:00.697 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:28:00.698 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:28:00.701 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
- 2026-07-15 14:31:21.986 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:31:21.988 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:31:27.576 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:31:27.726 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 26268 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:31:27.727 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:31:29.029 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:31:29.031 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:31:29.109 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 64 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:31:29.844 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:31:29.853 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:31:29.854 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:31:29.854 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:31:29.918 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:31:29.919 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2004 ms
- 2026-07-15 14:31:29.977 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:31:31.735 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:31:33.532 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:31:33.703 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:31:34.095 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:31:34.382 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:31:35.155 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@3531509c, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@23169374, org.springframework.security.web.context.SecurityContextHolderFilter@3d0ce151, org.springframework.security.web.header.HeaderWriterFilter@7962a364, org.springframework.web.filter.CorsFilter@4f2b1a2f, org.springframework.security.web.authentication.logout.LogoutFilter@8bd9d08, com.payment.platform.core.security.JwtAuthFilter@2c451c4a, com.payment.platform.core.security.TenantApiKeyAuthFilter@4d7c9b42, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2b569858, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1b84d03d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6c2a33af, org.springframework.security.web.session.SessionManagementFilter@134ec0f3, org.springframework.security.web.access.ExceptionTranslationFilter@25b87e1b, org.springframework.security.web.access.intercept.AuthorizationFilter@1390a43a]
- 2026-07-15 14:31:35.626 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:31:35.639 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:31:35.826 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 8.857 seconds (process running for 9.542)
- 2026-07-15 14:31:37.985 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:31:39.908 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:31:46.858 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:31:46.859 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:31:46.861 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
- 2026-07-15 14:32:08.314 [tomcat-handler-7] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 14:32:09.526 [tomcat-handler-7] ERROR sdk.biz.err - ErrorScene^_^40004^_^INVALID_PARAMETER^_^null^_^Windows 10^_^2026-07-15 14:32:09^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.expandindirect.image.upload&sign=iiR45tFjICuHAIBtU+hBkSbRRc+Nx6Y+hHvrAxiOD0WOwZoqZ3Vo8nHcvt8KPvOb7KPDoMjVurKXjlKmNMj0dLV9ZWStVXMuUy/qNBmEfL+qlJsaJj4kOpwqVB/8lCrLDMh8RqmAXUxsY/V8BrZI/7WVIlgc73qWWe5zWv5sD+Cke9/ZvmSom+XrQt5nOTX6DYmxUUHtzXDce7CVx5YABGfW8jH6ziJZpvzwdJi+/UMOxExSR5UqNBq7zc+JQjd19aHqxgAdHR9u1ABPJBRp/8lQkylmdphqT0OUiC1MzGxgkdAM8+A7CDJhtUDQjikvL7wDVF+9pwhh6bRYTOIbIQ==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:32:08^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=0b22834317840971289352495e7502&product_code=MERCHANT_TRANSFER_EXPAND_INDIRECT&biz_scene=ENTRUST_SATF_TRANSFER&image_type=jpg^_^Body:{"alipay_fund_expandindirect_image_upload_response":{"msg":"Business Failed","code":"40004","sub_msg":"参数有误文件类型不匹配","sub_code":"INVALID_PARAMETER"},"sign":"HZq7wjtEHdvFNXGXTAZXlRtZGHFehfKSZlcKpqNvvfVJGaXE7vXOl6vkyut3oiUOeErHKY+9vDdinpPNDRbX/51MniM2HHGHCBFEMojoOjOwkS2041SxmpAmr2AQ8q7zrCRctexwxn6yWuwQfkJJ/AhbXdeHNqcg62I4RM5Qt5nrMHI0YfE70QlKvSCb27Y/qZu2nyriF+/geD0uatcN6OB3YihjOCG8PEoizzkOpk/KQxT4AQ6AnYnaOGexx2zTBYAYM7bJ2S3VOlrtTa6+vKi/MZbY6xsSeWt73UFLHEtBistuklz9aQyULdWVirtm1XHYG1bmsUO3zjPSNd3Z3w=="}^_^24ms,1169ms,19ms^_^trace_id:0b22834317840971289352495e7502
- 2026-07-15 14:32:09.528 [tomcat-handler-7] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account/onboard/upload] 400: 上传进件图片失败: Business Failed
- 2026-07-15 14:32:27.221 [tomcat-handler-8] ERROR sdk.biz.err - ErrorScene^_^40004^_^INVALID_PARAMETER^_^null^_^Windows 10^_^2026-07-15 14:32:27^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.expandindirect.image.upload&sign=lm98gB5fw5nzMScTxdkZ+oNgHMxmzt6O1CDGaQ4mab6DOXGQ84rFxnWOJYZMWrJHLYEOhl5FIXjODV8DNIDfWSXKDbx63W/b1R8Kxi7h9pXSX/vRd+f4SrEv0z9s57sLJvMKwK/YXvCYgb1wEpyaEke+CLBqpKZe0m+h2d3YMiUYNNzoZXMyRnzbsGNgybYTcIEcAfMuRzrqzeDN+SsXvhl/Cc81E9yY5bSbJNfAc9lADImKHYLG1hWqAUg1ZOKq6rz3X102o6CG4KrROJiTweBluzGT53lLIPaSp1C8+fS80xq+Xk7PvccWESVK6z+mO2qWzonRsAx3NXS06CFpLg==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:32:26^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=0b22830317840971471292317e4f01&product_code=MERCHANT_TRANSFER_EXPAND_INDIRECT&biz_scene=ENTRUST_SATF_TRANSFER&image_type=jpg^_^Body:{"alipay_fund_expandindirect_image_upload_response":{"msg":"Business Failed","code":"40004","sub_msg":"参数有误文件类型不匹配","sub_code":"INVALID_PARAMETER"},"sign":"HZq7wjtEHdvFNXGXTAZXlRtZGHFehfKSZlcKpqNvvfVJGaXE7vXOl6vkyut3oiUOeErHKY+9vDdinpPNDRbX/51MniM2HHGHCBFEMojoOjOwkS2041SxmpAmr2AQ8q7zrCRctexwxn6yWuwQfkJJ/AhbXdeHNqcg62I4RM5Qt5nrMHI0YfE70QlKvSCb27Y/qZu2nyriF+/geD0uatcN6OB3YihjOCG8PEoizzkOpk/KQxT4AQ6AnYnaOGexx2zTBYAYM7bJ2S3VOlrtTa6+vKi/MZbY6xsSeWt73UFLHEtBistuklz9aQyULdWVirtm1XHYG1bmsUO3zjPSNd3Z3w=="}^_^11ms,511ms,10ms^_^trace_id:0b22830317840971471292317e4f01
- 2026-07-15 14:32:27.221 [tomcat-handler-8] WARN c.p.p.c.e.GlobalExceptionHandler - 业务异常 [/api/v1/payment/account/onboard/upload] 400: 上传进件图片失败: Business Failed
- 2026-07-15 14:35:19.181 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:35:19.184 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:35:25.322 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:35:25.384 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 39808 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:35:25.385 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:35:26.286 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:35:26.288 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:35:26.344 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 44 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:35:26.901 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:35:26.910 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:35:26.911 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:35:26.911 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:35:26.958 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:35:26.959 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1432 ms
- 2026-07-15 14:35:26.988 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:35:28.477 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:35:29.257 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:35:29.424 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:35:29.758 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:35:30.004 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:35:30.497 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@23169374, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4f2b1a2f, org.springframework.security.web.context.SecurityContextHolderFilter@58a0f75b, org.springframework.security.web.header.HeaderWriterFilter@756030e2, org.springframework.web.filter.CorsFilter@6c2a33af, org.springframework.security.web.authentication.logout.LogoutFilter@189f3ccd, com.payment.platform.core.security.JwtAuthFilter@337c0ee4, com.payment.platform.core.security.TenantApiKeyAuthFilter@4fe9a396, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1b84d03d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@41d8ac75, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@53202b06, org.springframework.security.web.session.SessionManagementFilter@258ac1e6, org.springframework.security.web.access.ExceptionTranslationFilter@623a891d, org.springframework.security.web.access.intercept.AuthorizationFilter@7bf2e475]
- 2026-07-15 14:35:30.886 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:35:30.898 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:35:30.994 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.175 seconds (process running for 6.886)
- 2026-07-15 14:35:33.009 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:35:34.191 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:36:16.982 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:36:17.045 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 41056 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:36:17.045 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:36:17.920 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:36:17.922 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:36:17.974 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 40 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:36:18.535 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:36:18.543 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:36:18.544 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:36:18.544 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:36:18.587 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:36:18.587 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1394 ms
- 2026-07-15 14:36:18.612 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:36:20.097 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:36:20.809 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:36:20.952 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:36:21.249 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:36:21.495 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:36:21.992 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@53570fff, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6e5df971, org.springframework.security.web.context.SecurityContextHolderFilter@1964ef9, org.springframework.security.web.header.HeaderWriterFilter@58a0f75b, org.springframework.web.filter.CorsFilter@3c7787a7, org.springframework.security.web.authentication.logout.LogoutFilter@2709e075, com.payment.platform.core.security.JwtAuthFilter@41d84abb, com.payment.platform.core.security.TenantApiKeyAuthFilter@3bf40c74, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3891db3a, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4a778943, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2ca464bb, org.springframework.security.web.session.SessionManagementFilter@1b84d03d, org.springframework.security.web.access.ExceptionTranslationFilter@491f3fb0, org.springframework.security.web.access.intercept.AuthorizationFilter@6c2a33af]
- 2026-07-15 14:36:22.378 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:36:22.388 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:36:22.474 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 5.958 seconds (process running for 6.567)
- 2026-07-15 14:36:24.570 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:36:26.488 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:36:36.342 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:36:36.342 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:36:36.343 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
- 2026-07-15 14:36:39.461 [tomcat-handler-0] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 14:36:40.465 [tomcat-handler-0] INFO sdk.biz.info - Summary^_^10000^_^null^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.expandindirect.image.upload&sign=H2lZbzzpEBKO2IOnxIoFxiRBsyNR+2GXVHjn3z/rgmdO2ZzH/eV++iPnzJPGNXNILlQHE9aL4M52whodpm7qTRx2vqLgYRu3GSR+dStORkYR91V7+jnBX0jjbK1z1ewL8s+ONtCJfXLIOvmQf/fn6TckNccVegop6ViilU+pjXALcGQ5NAPVtj8gReRp/MGu7EL/CdJDzGhJIE3XXGKxILHuugi90MChk6oLxu1vdSChiIrknWlSuj+zPmyKQfmzQZH1YMdXLC+iF+880SGviKLgWYhOR5rMsyNQd4iGIdK1yOUSOCrg150WarjD2rfxJEOsFbBb6j6XsneB2xHdrg==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:36:39^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=21d59c6217840974000914742e1126&product_code=MERCHANT_TRANSFER_EXPAND_INDIRECT&biz_scene=ENTRUST_SATF_TRANSFER&image_type=png^_^31ms,953ms,19ms^_^trace_id:21d59c6217840974000914742e1126
- 2026-07-15 14:38:16.080 [tomcat-handler-7] INFO sdk.biz.info - Summary^_^10000^_^null^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.expandindirect.image.upload&sign=ZRW8JLn9MFWtr9tSafxOFVMt6TBahJxrdg2tp4ORy2OPdQvaP6jB7gl1cHYeiRmNQy8s03856MSsyOqOYbPhuFX3cBgpqHaqGuDRRJDc15Tj6xwHZpumJH+YLgWL7QYA9j2mPnFPiVys4CpzaaseQjzVKzUmq70ct3eXeM0VptP2d2bJ4vLhAnOZbosGqcnmHuShk7b0tDcRDkwlxhmS3E0TjbQN88ejq0Flo+ySE8pHpzJg0uB/7kSiXAkLlvYR1LmCtcfLHm3PiJZvRmkxjkEytSAlOevYUOZ0RiCuSJAiQLAmlyvMazFT4eoAfOgi1hzL4+zc+KefVfq2A5FCiA==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:38:15^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=218a0f9f17840974956398387e4b10&product_code=MERCHANT_TRANSFER_EXPAND_INDIRECT&biz_scene=ENTRUST_SATF_TRANSFER&image_type=png^_^9ms,857ms,10ms^_^trace_id:218a0f9f17840974956398387e4b10
- 2026-07-15 14:44:10.296 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-07-15 14:44:10.298 [SpringApplicationShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-07-15 14:44:15.529 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
- 2026-07-15 14:44:15.599 [main] INFO c.p.platform.PaymentApplication - Starting PaymentApplication using Java 21.0.11 with PID 38804 (D:\project2\payment-platform\java\target\classes started by 1 in D:\project2\payment-platform)
- 2026-07-15 14:44:15.600 [main] INFO c.p.platform.PaymentApplication - The following 1 profile is active: "dev"
- 2026-07-15 14:44:16.551 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
- 2026-07-15 14:44:16.553 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-07-15 14:44:16.605 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 41 ms. Found 0 Redis repository interfaces.
- 2026-07-15 14:44:17.185 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8001 (http)
- 2026-07-15 14:44:17.193 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:44:17.194 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
- 2026-07-15 14:44:17.194 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.20]
- 2026-07-15 14:44:17.238 [main] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring embedded WebApplicationContext
- 2026-07-15 14:44:17.238 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1499 ms
- 2026-07-15 14:44:17.262 [main] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure - Init DruidDataSource
- 2026-07-15 14:44:18.644 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} inited
- 2026-07-15 14:44:19.363 [main] WARN c.p.p.c.alipay.AlipayClientFactory - 支付宝默认配置不完整,将仅使用服务商/租户专属客户端
- 2026-07-15 14:44:19.506 [main] INFO c.p.platform.core.oss.OssService - OSS client initialized: bucket=hunanxiaojunzioss, endpoint=oss-cn-beijing.aliyuncs.com
- 2026-07-15 14:44:19.805 [main] INFO c.p.p.m.p.e.s.EnterpriseNameSyncScheduler - [企业名称同步] 调度器启动
- 2026-07-15 14:44:20.070 [main] INFO c.p.p.m.p.n.s.NotificationService - 已注册 7 个通知处理器: [AccountHandler, BillHandler, EmployeeHandler, EnterpriseHandler, InstitutionHandler, OrderHandler, VoucherHandler]
- 2026-07-15 14:44:20.579 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@6939f18a, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@8bd9d08, org.springframework.security.web.context.SecurityContextHolderFilter@701da311, org.springframework.security.web.header.HeaderWriterFilter@732bb49d, org.springframework.web.filter.CorsFilter@189f3ccd, org.springframework.security.web.authentication.logout.LogoutFilter@44c54463, com.payment.platform.core.security.JwtAuthFilter@682fe17b, com.payment.platform.core.security.TenantApiKeyAuthFilter@531bec12, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5de14222, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6fb51e17, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2eb0932c, org.springframework.security.web.session.SessionManagementFilter@19a4cdea, org.springframework.security.web.access.ExceptionTranslationFilter@45e68fac, org.springframework.security.web.access.intercept.AuthorizationFilter@41041c31]
- 2026-07-15 14:44:20.985 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8001"]
- 2026-07-15 14:44:20.996 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8001 (http) with context path '/api/v1'
- 2026-07-15 14:44:21.118 [main] INFO c.p.platform.PaymentApplication - Started PaymentApplication in 6.169 seconds (process running for 6.753)
- 2026-07-15 14:44:23.041 [main] INFO c.p.p.core.config.AppStartupRunner - 系统配置缓存初始化完成
- 2026-07-15 14:44:24.700 [main] INFO c.p.p.core.config.AppStartupRunner - 数据字典缓存初始化完成 (10 个字典类型)
- 2026-07-15 14:44:39.279 [tomcat-handler-0] INFO o.a.c.c.C.[.[localhost].[/api/v1] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-07-15 14:44:39.279 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-07-15 14:44:39.282 [tomcat-handler-0] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
- 2026-07-15 14:44:55.755 [tomcat-handler-7] INFO c.p.p.c.alipay.AlipayClientFactory - 服务商[3]客户端创建成功, appId=2021006160682088, name=跨境服务商
- 2026-07-15 14:44:56.638 [tomcat-handler-7] INFO sdk.biz.info - Summary^_^10000^_^null^_^ProtocalMustParams:charset=UTF-8&method=alipay.fund.expandindirect.image.upload&sign=JrQgUi94/Cl4gWV3W/O7/GkT8DWC0XSbxLICXeiw7dEIvbfucj9d23DDkUWrIGiz9OtMdAwTODjIA48TlGwTrqYkjm2Zc3j/BqAj3N5zNnyn7Y7OTVStmjcDXobefJJaG6N9Edz9HPf1k+ajF8iAq2XoAgRKyC11A4JQKQi0dusKD57t5Zwf9J+BvSuORnLl1BC7aLT++NHrJQ/zyJczbvSgKmOn8s9ajXaFDnolVgM2CiWRIja8s4ZpXkTmO7ldaYDQhXOiykr/wQC8pj868U3Cm7mTZ9eEzf8LwZxCv3/9Ru92CykhsXgn4yo1uS2uJJpKfuZm5tOvksssS7VK0g==&version=1.0&app_id=2021006160682088&sign_type=RSA2×tamp=2026-07-15 14:44:55^_^ProtocalOptParams:alipay_sdk=alipay-sdk-java-4.40.865.ALL&format=JSON^_^ApplicationParams:traceId=2197054a17840978963616807eb098&product_code=MERCHANT_TRANSFER_EXPAND_INDIRECT&biz_scene=ENTRUST_SATF_TRANSFER&image_type=png^_^24ms,840ms,18ms^_^trace_id:2197054a17840978963616807eb098
|