spring.log 836 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085
  1. 08:57:09:405 INFO 25280 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2. 08:57:10:081 WARN 25280 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3. 08:57:10:132 INFO 25280 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  4. 08:57:10:366 INFO 25280 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  5. 08:57:10:377 INFO 25280 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  6. 08:57:10:377 INFO 25280 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  7. 08:57:10:466 INFO 25280 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  8. 08:57:10:466 INFO 25280 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1046 ms
  9. 08:57:11:486 INFO 25280 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  10. 08:57:11:919 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 8c86243b-a661-4f5f-a98f-d3ba43e96ea9
  11. 08:57:11:919 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] RpcClient init label, labels = {module=naming, source=sdk}
  12. 08:57:11:920 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  13. 08:57:11:920 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  14. 08:57:11:920 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  15. 08:57:11:920 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  16. 08:57:12:056 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723078632078_192.168.110.13_50956
  17. 08:57:12:056 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  18. 08:57:12:056 INFO 25280 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Notify connected event to listeners.
  19. 08:57:12:056 INFO 25280 --- [main] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  20. 08:57:12:095 INFO 25280 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  21. 08:57:12:103 INFO 25280 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  22. 08:57:12:255 INFO 25280 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  23. 08:57:12:258 INFO 25280 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  24. 08:57:12:271 INFO 25280 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  25. 08:57:12:299 INFO 25280 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.129 seconds (JVM running for 5.786)
  26. 08:57:12:302 INFO 25280 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  27. 08:57:12:310 INFO 25280 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  28. 08:57:12:632 INFO 25280 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Receive server push request, request = NotifySubscriberRequest, requestId = 178
  29. 08:57:12:642 INFO 25280 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [8c86243b-a661-4f5f-a98f-d3ba43e96ea9] Ack server push request, request = NotifySubscriberRequest, requestId = 178
  30. 09:01:25:517 INFO 25280 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  31. Note: further occurrences of this error will be logged at DEBUG level.
  32. 09:01:25:521 INFO 25280 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  33. 09:01:25:521 INFO 25280 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  34. 09:01:25:522 INFO 25280 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  35. 09:19:52:305 WARN 25280 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  36. 09:19:52:306 WARN 25280 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  37. 09:19:52:306 WARN 25280 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  38. 09:19:52:308 WARN 25280 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  39. 09:19:52:423 INFO 25280 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  40. 09:19:52:425 INFO 25280 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  41. 09:19:52:753 INFO 25280 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  42. 09:19:52:753 INFO 25280 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@27028f7e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  43. 09:19:52:753 INFO 25280 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723078632078_192.168.110.13_50956
  44. 09:19:52:755 INFO 25280 --- [nacos-grpc-client-executor-285] c.a.n.c.remote.client.grpc.GrpcClient : [1723078632078_192.168.110.13_50956]Ignore complete event,isRunning:false,isAbandon=false
  45. 09:19:52:765 INFO 25280 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@872f60b[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 286]
  46. 09:19:57:471 INFO 15388 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  47. 09:19:57:890 WARN 15388 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  48. 09:19:57:932 INFO 15388 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  49. 09:19:58:093 INFO 15388 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  50. 09:19:58:099 INFO 15388 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  51. 09:19:58:100 INFO 15388 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  52. 09:19:58:175 INFO 15388 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  53. 09:19:58:175 INFO 15388 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 697 ms
  54. 09:19:58:981 INFO 15388 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  55. 09:19:59:260 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of c15c90f8-4e9f-43e5-b064-8c683df13d74
  56. 09:19:59:260 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] RpcClient init label, labels = {module=naming, source=sdk}
  57. 09:19:59:261 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  58. 09:19:59:262 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  59. 09:19:59:262 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  60. 09:19:59:262 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  61. 09:19:59:378 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723079999441_192.168.110.13_54565
  62. 09:19:59:378 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  63. 09:19:59:378 INFO 15388 --- [main] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  64. 09:19:59:378 INFO 15388 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Notify connected event to listeners.
  65. 09:19:59:411 INFO 15388 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  66. 09:19:59:416 INFO 15388 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  67. 09:19:59:549 INFO 15388 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  68. 09:19:59:552 INFO 15388 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  69. 09:19:59:568 INFO 15388 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  70. 09:19:59:603 INFO 15388 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.048 seconds (JVM running for 4.559)
  71. 09:19:59:606 INFO 15388 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  72. 09:19:59:608 INFO 15388 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  73. 09:19:59:963 INFO 15388 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Receive server push request, request = NotifySubscriberRequest, requestId = 181
  74. 09:19:59:969 INFO 15388 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [c15c90f8-4e9f-43e5-b064-8c683df13d74] Ack server push request, request = NotifySubscriberRequest, requestId = 181
  75. 09:20:06:711 INFO 15388 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  76. Note: further occurrences of this error will be logged at DEBUG level.
  77. 09:20:06:716 INFO 15388 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  78. 09:20:06:716 INFO 15388 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  79. 09:20:06:717 INFO 15388 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  80. 09:20:24:159 WARN 15388 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  81. 09:20:24:159 WARN 15388 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  82. 09:20:24:159 WARN 15388 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  83. 09:20:24:160 WARN 15388 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  84. 09:20:24:290 INFO 15388 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  85. 09:20:24:292 INFO 15388 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  86. 09:20:24:617 INFO 15388 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  87. 09:20:24:618 INFO 15388 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@669aadfe[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  88. 09:20:24:618 INFO 15388 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723079999441_192.168.110.13_54565
  89. 09:20:24:622 INFO 15388 --- [nacos-grpc-client-executor-14] c.a.n.c.remote.client.grpc.GrpcClient : [1723079999441_192.168.110.13_54565]Ignore complete event,isRunning:false,isAbandon=false
  90. 09:20:24:624 INFO 15388 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@13e2036[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 15]
  91. 09:20:28:974 INFO 4060 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  92. 09:20:29:466 WARN 4060 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  93. 09:20:29:510 INFO 4060 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  94. 09:20:29:695 INFO 4060 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  95. 09:20:29:702 INFO 4060 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  96. 09:20:29:702 INFO 4060 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  97. 09:20:29:778 INFO 4060 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  98. 09:20:29:779 INFO 4060 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 796 ms
  99. 09:20:30:648 INFO 4060 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  100. 09:20:30:972 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 54ef0173-8734-456a-9b4b-d59ac182510b
  101. 09:20:30:973 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] RpcClient init label, labels = {module=naming, source=sdk}
  102. 09:20:30:974 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  103. 09:20:30:974 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  104. 09:20:30:974 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  105. 09:20:30:974 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  106. 09:20:31:094 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723080031152_192.168.110.13_54697
  107. 09:20:31:096 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  108. 09:20:31:097 INFO 4060 --- [main] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  109. 09:20:31:096 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify connected event to listeners.
  110. 09:20:31:142 INFO 4060 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  111. 09:20:31:149 INFO 4060 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  112. 09:20:31:307 INFO 4060 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  113. 09:20:31:309 INFO 4060 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  114. 09:20:31:324 INFO 4060 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  115. 09:20:31:362 INFO 4060 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.382 seconds (JVM running for 5.532)
  116. 09:20:31:365 INFO 4060 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  117. 09:20:31:367 INFO 4060 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  118. 09:20:31:644 INFO 4060 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Receive server push request, request = NotifySubscriberRequest, requestId = 184
  119. 09:20:31:657 INFO 4060 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Ack server push request, request = NotifySubscriberRequest, requestId = 184
  120. 09:20:40:320 INFO 4060 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  121. Note: further occurrences of this error will be logged at DEBUG level.
  122. 09:20:40:325 INFO 4060 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  123. 09:20:40:325 INFO 4060 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  124. 09:20:40:326 INFO 4060 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  125. 09:22:05:864 INFO 4060 --- [nacos-grpc-client-executor-21] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 187
  126. 09:22:05:864 INFO 4060 --- [nacos-grpc-client-executor-14] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Receive server push request, request = ClientDetectionRequest, requestId = 186
  127. 09:22:05:865 INFO 4060 --- [nacos-grpc-client-executor-21] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 187
  128. 09:22:05:865 INFO 4060 --- [nacos-grpc-client-executor-14] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Ack server push request, request = ClientDetectionRequest, requestId = 186
  129. 09:22:05:875 ERROR 4060 --- [nacos-grpc-client-executor-14] c.a.n.c.remote.client.grpc.GrpcClient : [1723080031152_192.168.110.13_54697]Request stream onCompleted, switch server
  130. 09:22:05:875 ERROR 4060 --- [nacos-grpc-client-executor-21] c.a.n.c.remote.client.grpc.GrpcClient : [1723080028702_192.168.110.13_54690]Request stream onCompleted, switch server
  131. 09:22:05:877 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Server healthy check fail, currentConnection = 1723080028702_192.168.110.13_54690
  132. 09:22:05:877 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Server healthy check fail, currentConnection = 1723080031152_192.168.110.13_54697
  133. 09:22:05:877 ERROR 4060 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR
  134. Received Goaway
  135. app_requested
  136. 09:22:05:877 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  137. 09:22:05:877 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Try to reconnect to a new server, server is not appointed, will choose a random server.
  138. 09:22:05:985 ERROR 4060 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  139. 09:22:06:016 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723080126068_192.168.110.13_54924
  140. 09:22:06:016 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Success to connect a server [192.168.110.30:8848], connectionId = 1723080126068_192.168.110.13_54925
  141. 09:22:06:016 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723080028702_192.168.110.13_54690
  142. 09:22:06:016 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723080031152_192.168.110.13_54697
  143. 09:22:06:016 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723080028702_192.168.110.13_54690
  144. 09:22:06:016 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723080031152_192.168.110.13_54697
  145. 09:22:06:020 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Try to reconnect to a new server, server is not appointed, will choose a random server.
  146. 09:22:06:020 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  147. 09:22:06:020 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Notify disconnected event to listeners
  148. 09:22:06:020 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify disconnected event to listeners
  149. 09:22:06:021 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Notify connected event to listeners.
  150. 09:22:06:022 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify connected event to listeners.
  151. 09:22:06:094 ERROR 4060 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  152. 09:22:06:157 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723080126211_192.168.110.13_54928
  153. 09:22:06:157 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Success to connect a server [192.168.110.30:8848], connectionId = 1723080126211_192.168.110.13_54927
  154. 09:22:06:158 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723080126068_192.168.110.13_54924
  155. 09:22:06:158 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723080126068_192.168.110.13_54925
  156. 09:22:06:158 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723080126068_192.168.110.13_54924
  157. 09:22:06:158 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723080126068_192.168.110.13_54925
  158. 09:22:06:165 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify disconnected event to listeners
  159. 09:22:06:165 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Notify disconnected event to listeners
  160. 09:22:06:165 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify connected event to listeners.
  161. 09:22:06:166 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Notify connected event to listeners.
  162. 09:22:06:167 WARN 4060 --- [nacos-grpc-client-executor-30] c.a.n.c.remote.client.grpc.GrpcClient : [1723080126068_192.168.110.13_54924]Ignore error event,isRunning:true,isAbandon=true
  163. 09:22:06:167 WARN 4060 --- [nacos-grpc-client-executor-23] c.a.n.c.remote.client.grpc.GrpcClient : [1723080126068_192.168.110.13_54925]Ignore error event,isRunning:true,isAbandon=true
  164. 09:22:06:169 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Server check success, currentServer is 192.168.110.30:8848
  165. 09:22:07:567 INFO 4060 --- [nacos-grpc-client-executor-28] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Receive server push request, request = NotifySubscriberRequest, requestId = 189
  166. 09:22:07:568 INFO 4060 --- [nacos-grpc-client-executor-28] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Ack server push request, request = NotifySubscriberRequest, requestId = 189
  167. 09:38:00:823 INFO 4060 --- [nacos-grpc-client-executor-40] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 192
  168. 09:38:00:823 INFO 4060 --- [nacos-grpc-client-executor-38] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Receive server push request, request = ClientDetectionRequest, requestId = 191
  169. 09:38:00:824 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Server healthy check fail, currentConnection = 1723080126211_192.168.110.13_54927
  170. 09:38:00:825 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Try to reconnect to a new server, server is not appointed, will choose a random server.
  171. 09:38:00:824 INFO 4060 --- [nacos-grpc-client-executor-40] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 192
  172. 09:38:00:825 INFO 4060 --- [nacos-grpc-client-executor-38] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Ack server push request, request = ClientDetectionRequest, requestId = 191
  173. 09:38:00:825 ERROR 4060 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR
  174. Received Goaway
  175. app_requested
  176. 09:38:00:831 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Server healthy check fail, currentConnection = 1723080126211_192.168.110.13_54928
  177. 09:38:00:831 ERROR 4060 --- [nacos-grpc-client-executor-40] c.a.n.c.remote.client.grpc.GrpcClient : [1723080126211_192.168.110.13_54928]Request stream onCompleted, switch server
  178. 09:38:00:832 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  179. 09:38:00:832 INFO 4060 --- [nacos-grpc-client-executor-38] c.a.n.c.remote.client.grpc.GrpcClient : [1723080126211_192.168.110.13_54927]Ignore complete event,isRunning:false,isAbandon=false
  180. 09:38:00:933 ERROR 4060 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  181. 09:38:00:956 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723081081027_192.168.110.13_57384
  182. 09:38:00:956 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Success to connect a server [192.168.110.30:8848], connectionId = 1723081081026_192.168.110.13_57383
  183. 09:38:00:956 ERROR 4060 --- [com.alibaba.nacos.client.Worker] com.alibaba.nacos.common.remote.client : Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
  184. 09:38:00:956 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723080126211_192.168.110.13_54928
  185. 09:38:00:956 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723080126211_192.168.110.13_54927
  186. 09:38:00:956 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723080126211_192.168.110.13_54928
  187. 09:38:00:956 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723080126211_192.168.110.13_54927
  188. 09:38:00:957 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Notify disconnected event to listeners
  189. 09:38:00:957 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify disconnected event to listeners
  190. 09:38:00:957 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e00d6dd6-3c82-40e3-9642-b16009813e55_config-0] Notify connected event to listeners.
  191. 09:38:00:957 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Notify connected event to listeners.
  192. 09:38:01:037 ERROR 4060 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  193. 09:38:01:042 INFO 4060 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Server check success, currentServer is 192.168.110.30:8848
  194. 09:38:01:062 ERROR 4060 --- [com.alibaba.nacos.client.Worker] com.alibaba.nacos.common.remote.client : Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  195. 09:38:04:386 INFO 4060 --- [nacos-grpc-client-executor-49] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Receive server push request, request = NotifySubscriberRequest, requestId = 194
  196. 09:38:04:387 INFO 4060 --- [nacos-grpc-client-executor-49] com.alibaba.nacos.common.remote.client : [54ef0173-8734-456a-9b4b-d59ac182510b] Ack server push request, request = NotifySubscriberRequest, requestId = 194
  197. 09:42:31:474 WARN 4060 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  198. 09:42:31:474 WARN 4060 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  199. 09:42:31:474 WARN 4060 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  200. 09:42:31:475 WARN 4060 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  201. 09:42:31:590 INFO 4060 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  202. 09:42:31:593 INFO 4060 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  203. 09:42:31:919 INFO 4060 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  204. 09:42:31:919 INFO 4060 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@15618d36[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  205. 09:42:31:919 INFO 4060 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723081081026_192.168.110.13_57383
  206. 09:42:31:919 INFO 4060 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@565a3a8f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 105]
  207. 09:42:36:810 INFO 24244 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  208. 09:42:37:288 WARN 24244 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  209. 09:42:37:342 INFO 24244 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  210. 09:42:37:546 INFO 24244 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  211. 09:42:37:553 INFO 24244 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  212. 09:42:37:553 INFO 24244 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  213. 09:42:37:624 INFO 24244 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  214. 09:42:37:624 INFO 24244 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 806 ms
  215. 09:42:38:474 INFO 24244 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  216. 09:42:38:794 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of b8fbdb3d-46a7-4480-8a65-8c0d422685da
  217. 09:42:38:794 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] RpcClient init label, labels = {module=naming, source=sdk}
  218. 09:42:38:795 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  219. 09:42:38:795 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  220. 09:42:38:796 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  221. 09:42:38:796 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  222. 09:42:38:919 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723081358996_192.168.110.13_58038
  223. 09:42:38:921 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  224. 09:42:38:922 INFO 24244 --- [main] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  225. 09:42:38:921 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify connected event to listeners.
  226. 09:42:38:963 INFO 24244 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  227. 09:42:38:969 INFO 24244 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  228. 09:42:39:101 INFO 24244 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  229. 09:42:39:104 INFO 24244 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  230. 09:42:39:119 INFO 24244 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  231. 09:42:39:156 INFO 24244 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.396 seconds (JVM running for 4.996)
  232. 09:42:39:160 INFO 24244 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  233. 09:42:39:166 INFO 24244 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  234. 09:42:39:507 INFO 24244 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Receive server push request, request = NotifySubscriberRequest, requestId = 197
  235. 09:42:39:521 INFO 24244 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Ack server push request, request = NotifySubscriberRequest, requestId = 197
  236. 09:42:49:185 INFO 24244 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  237. Note: further occurrences of this error will be logged at DEBUG level.
  238. 09:42:49:189 INFO 24244 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  239. 09:42:49:189 INFO 24244 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  240. 09:42:49:191 INFO 24244 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  241. 09:43:18:781 INFO 24244 --- [nacos-grpc-client-executor-17] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 199
  242. 09:43:18:781 INFO 24244 --- [nacos-grpc-client-executor-10] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Receive server push request, request = ClientDetectionRequest, requestId = 200
  243. 09:43:18:781 INFO 24244 --- [nacos-grpc-client-executor-17] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 199
  244. 09:43:18:781 INFO 24244 --- [nacos-grpc-client-executor-10] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Ack server push request, request = ClientDetectionRequest, requestId = 200
  245. 09:43:18:789 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Server healthy check fail, currentConnection = 1723081356567_192.168.110.13_58035
  246. 09:43:18:790 INFO 24244 --- [nacos-grpc-client-executor-17] c.a.n.c.remote.client.grpc.GrpcClient : [1723081356567_192.168.110.13_58035]Ignore complete event,isRunning:false,isAbandon=false
  247. 09:43:18:790 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  248. 09:43:18:912 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723081398990_192.168.110.13_58148
  249. 09:43:18:912 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723081356567_192.168.110.13_58035
  250. 09:43:18:912 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723081356567_192.168.110.13_58035
  251. 09:43:18:916 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Notify disconnected event to listeners
  252. 09:43:18:916 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Notify connected event to listeners.
  253. 09:43:53:973 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Server healthy check fail, currentConnection = 1723081358996_192.168.110.13_58038
  254. 09:43:53:973 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Server healthy check fail, currentConnection = 1723081398990_192.168.110.13_58148
  255. 09:43:53:973 INFO 24244 --- [nacos-grpc-client-executor-25] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 202
  256. 09:43:53:973 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  257. 09:43:53:973 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Try to reconnect to a new server, server is not appointed, will choose a random server.
  258. 09:43:53:973 INFO 24244 --- [nacos-grpc-client-executor-14] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Receive server push request, request = ClientDetectionRequest, requestId = 201
  259. 09:43:53:973 INFO 24244 --- [nacos-grpc-client-executor-25] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 202
  260. 09:43:53:973 INFO 24244 --- [nacos-grpc-client-executor-14] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Ack server push request, request = ClientDetectionRequest, requestId = 201
  261. 09:43:53:980 INFO 24244 --- [nacos-grpc-client-executor-25] c.a.n.c.remote.client.grpc.GrpcClient : [1723081398990_192.168.110.13_58148]Ignore complete event,isRunning:false,isAbandon=false
  262. 09:43:53:981 INFO 24244 --- [nacos-grpc-client-executor-14] c.a.n.c.remote.client.grpc.GrpcClient : [1723081358996_192.168.110.13_58038]Ignore complete event,isRunning:false,isAbandon=false
  263. 09:44:11:087 ERROR 24244 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
  264. 09:44:11:098 ERROR 24244 --- [com.alibaba.nacos.client.remote.worker] c.a.n.c.remote.client.grpc.GrpcClient : Server check fail, please check server 192.168.110.30 ,port 9848 is available , error ={}
  265. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14114 milliseconds, 571800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@39933c23[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3659ddea, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@24ae8fe7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@13e1f7c7}}}}}]]
  266. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) ~[nacos-client-2.0.4.jar:na]
  267. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) ~[nacos-client-2.0.4.jar:na]
  268. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) ~[nacos-client-2.0.4.jar:na]
  269. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) ~[nacos-client-2.0.4.jar:na]
  270. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) ~[nacos-client-2.0.4.jar:na]
  271. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[na:na]
  272. at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) ~[na:na]
  273. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) ~[na:na]
  274. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) ~[na:na]
  275. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
  276. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
  277. at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na]
  278. 09:44:11:098 ERROR 24244 --- [com.alibaba.nacos.client.remote.worker] c.a.n.c.remote.client.grpc.GrpcClient : Server check fail, please check server 192.168.110.30 ,port 9848 is available , error ={}
  279. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14111 milliseconds, 414100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@161a8fb9[status=PENDING, info=[GrpcFuture{clientCall={delegate={delegate=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3659ddea, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@24ae8fe7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@13e1f7c7}}}}}]]
  280. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508) ~[nacos-client-2.0.4.jar:na]
  281. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:148) ~[nacos-client-2.0.4.jar:na]
  282. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:264) ~[nacos-client-2.0.4.jar:na]
  283. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:522) ~[nacos-client-2.0.4.jar:na]
  284. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:370) ~[nacos-client-2.0.4.jar:na]
  285. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[na:na]
  286. at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) ~[na:na]
  287. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) ~[na:na]
  288. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) ~[na:na]
  289. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
  290. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
  291. at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na]
  292. 09:44:11:339 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Success to connect a server [192.168.110.30:8848], connectionId = 1723081451418_192.168.110.13_58256
  293. 09:44:11:339 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723081451418_192.168.110.13_58255
  294. 09:44:11:339 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723081358996_192.168.110.13_58038
  295. 09:44:11:339 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723081358996_192.168.110.13_58038
  296. 09:44:11:339 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723081398990_192.168.110.13_58148
  297. 09:44:11:339 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723081398990_192.168.110.13_58148
  298. 09:44:11:340 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify disconnected event to listeners
  299. 09:44:11:340 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Notify disconnected event to listeners
  300. 09:44:11:340 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Notify connected event to listeners.
  301. 09:44:11:341 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify connected event to listeners.
  302. 09:44:14:675 INFO 24244 --- [nacos-grpc-client-executor-25] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Receive server push request, request = NotifySubscriberRequest, requestId = 204
  303. 09:44:14:676 INFO 24244 --- [nacos-grpc-client-executor-25] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Ack server push request, request = NotifySubscriberRequest, requestId = 204
  304. 09:45:05:425 INFO 24244 --- [nacos-grpc-client-executor-27] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Receive server push request, request = ClientDetectionRequest, requestId = 207
  305. 09:45:05:427 INFO 24244 --- [nacos-grpc-client-executor-27] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Ack server push request, request = ClientDetectionRequest, requestId = 207
  306. 09:45:05:429 ERROR 24244 --- [nacos-grpc-client-executor-27] c.a.n.c.remote.client.grpc.GrpcClient : [1723081451418_192.168.110.13_58256]Request stream onCompleted, switch server
  307. 09:45:05:431 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Server healthy check fail, currentConnection = 1723081451418_192.168.110.13_58255
  308. 09:45:05:432 INFO 24244 --- [nacos-grpc-client-executor-36] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 206
  309. 09:45:05:432 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  310. 09:45:05:432 INFO 24244 --- [nacos-grpc-client-executor-36] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 206
  311. 09:45:05:432 INFO 24244 --- [nacos-grpc-client-executor-36] c.a.n.c.remote.client.grpc.GrpcClient : [1723081451418_192.168.110.13_58255]Ignore complete event,isRunning:false,isAbandon=false
  312. 09:45:05:439 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Server healthy check fail, currentConnection = 1723081451418_192.168.110.13_58256
  313. 09:45:05:439 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Try to reconnect to a new server, server is not appointed, will choose a random server.
  314. 09:45:05:551 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723081505634_192.168.110.13_58376
  315. 09:45:05:551 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723081451418_192.168.110.13_58255
  316. 09:45:05:552 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723081451418_192.168.110.13_58255
  317. 09:45:05:552 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Notify disconnected event to listeners
  318. 09:45:05:553 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6dc96981-5d03-4bb7-91ef-53cb7ef22e34_config-0] Notify connected event to listeners.
  319. 09:45:05:554 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Success to connect a server [192.168.110.30:8848], connectionId = 1723081505644_192.168.110.13_58377
  320. 09:45:05:554 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723081451418_192.168.110.13_58256
  321. 09:45:05:554 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723081451418_192.168.110.13_58256
  322. 09:45:05:554 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify disconnected event to listeners
  323. 09:45:05:554 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Try to reconnect to a new server, server is not appointed, will choose a random server.
  324. 09:45:05:554 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify connected event to listeners.
  325. 09:45:05:676 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Success to connect a server [192.168.110.30:8848], connectionId = 1723081505757_192.168.110.13_58378
  326. 09:45:05:676 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723081505644_192.168.110.13_58377
  327. 09:45:05:676 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723081505644_192.168.110.13_58377
  328. 09:45:05:676 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify disconnected event to listeners
  329. 09:45:05:676 INFO 24244 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Notify connected event to listeners.
  330. 09:45:05:677 WARN 24244 --- [nacos-grpc-client-executor-36] c.a.n.c.remote.client.grpc.GrpcClient : [1723081505644_192.168.110.13_58377]Ignore error event,isRunning:true,isAbandon=true
  331. 09:45:09:006 INFO 24244 --- [nacos-grpc-client-executor-40] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Receive server push request, request = NotifySubscriberRequest, requestId = 209
  332. 09:45:09:006 INFO 24244 --- [nacos-grpc-client-executor-40] com.alibaba.nacos.common.remote.client : [b8fbdb3d-46a7-4480-8a65-8c0d422685da] Ack server push request, request = NotifySubscriberRequest, requestId = 209
  333. 09:52:49:512 WARN 24244 --- [OkHttp ConnectionPool] okhttp3.OkHttpClient : A connection to https://192.168.110.218/ was leaked. Did you forget to close a response body? To see where this was allocated, set the OkHttpClient logger level to FINE: Logger.getLogger(OkHttpClient.class.getName()).setLevel(Level.FINE);
  334. 09:53:32:927 WARN 24244 --- [OkHttp ConnectionPool] okhttp3.OkHttpClient : A connection to https://192.168.110.218/ was leaked. Did you forget to close a response body? To see where this was allocated, set the OkHttpClient logger level to FINE: Logger.getLogger(OkHttpClient.class.getName()).setLevel(Level.FINE);
  335. 09:54:17:902 WARN 24244 --- [OkHttp ConnectionPool] okhttp3.OkHttpClient : A connection to https://192.168.110.218/ was leaked. Did you forget to close a response body? To see where this was allocated, set the OkHttpClient logger level to FINE: Logger.getLogger(OkHttpClient.class.getName()).setLevel(Level.FINE);
  336. 09:59:42:671 WARN 24244 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  337. 09:59:42:671 WARN 24244 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  338. 09:59:42:671 WARN 24244 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  339. 09:59:42:672 WARN 24244 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  340. 09:59:42:810 INFO 24244 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  341. 09:59:42:826 INFO 24244 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  342. 09:59:43:156 INFO 24244 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  343. 09:59:43:157 INFO 24244 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7361d654[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  344. 09:59:43:157 INFO 24244 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723081505757_192.168.110.13_58378
  345. 09:59:43:157 INFO 24244 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2a236029[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 218]
  346. 09:59:48:377 INFO 12700 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  347. 09:59:48:944 WARN 12700 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  348. 09:59:49:003 INFO 12700 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  349. 09:59:49:251 INFO 12700 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  350. 09:59:49:260 INFO 12700 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  351. 09:59:49:260 INFO 12700 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  352. 09:59:49:342 INFO 12700 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  353. 09:59:49:342 INFO 12700 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 954 ms
  354. 09:59:50:221 INFO 12700 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  355. 09:59:50:574 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 6396fee8-a858-490a-8fc9-3d35b4d411f8
  356. 09:59:50:574 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] RpcClient init label, labels = {module=naming, source=sdk}
  357. 09:59:50:575 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  358. 09:59:50:575 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  359. 09:59:50:575 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  360. 09:59:50:576 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  361. 09:59:50:696 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723082390796_192.168.110.13_60618
  362. 09:59:50:698 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  363. 09:59:50:699 INFO 12700 --- [main] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  364. 09:59:50:698 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify connected event to listeners.
  365. 09:59:50:740 INFO 12700 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  366. 09:59:50:747 INFO 12700 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  367. 09:59:50:881 INFO 12700 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  368. 09:59:50:883 INFO 12700 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  369. 09:59:50:897 INFO 12700 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  370. 09:59:50:936 INFO 12700 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.909 seconds (JVM running for 5.479)
  371. 09:59:50:940 INFO 12700 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  372. 09:59:50:941 INFO 12700 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  373. 09:59:51:229 INFO 12700 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Receive server push request, request = NotifySubscriberRequest, requestId = 212
  374. 09:59:51:235 INFO 12700 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Ack server push request, request = NotifySubscriberRequest, requestId = 212
  375. 09:59:56:876 INFO 12700 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  376. Note: further occurrences of this error will be logged at DEBUG level.
  377. 09:59:56:880 INFO 12700 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  378. 09:59:56:880 INFO 12700 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  379. 09:59:56:881 INFO 12700 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 0 ms
  380. 10:03:19:063 INFO 12700 --- [nacos-grpc-client-executor-27] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 215
  381. 10:03:19:063 INFO 12700 --- [nacos-grpc-client-executor-20] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Receive server push request, request = ClientDetectionRequest, requestId = 214
  382. 10:03:19:064 INFO 12700 --- [nacos-grpc-client-executor-27] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 215
  383. 10:03:19:064 INFO 12700 --- [nacos-grpc-client-executor-20] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Ack server push request, request = ClientDetectionRequest, requestId = 214
  384. 10:03:19:073 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Server healthy check fail, currentConnection = 1723082388161_192.168.110.13_60615
  385. 10:03:19:073 ERROR 12700 --- [com.alibaba.nacos.client.naming.updater.1] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR
  386. Received Goaway
  387. app_requested
  388. 10:03:19:073 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Server healthy check fail, currentConnection = 1723082390796_192.168.110.13_60618
  389. 10:03:19:073 INFO 12700 --- [nacos-grpc-client-executor-27] c.a.n.c.remote.client.grpc.GrpcClient : [1723082388161_192.168.110.13_60615]Ignore complete event,isRunning:false,isAbandon=false
  390. 10:03:19:073 INFO 12700 --- [nacos-grpc-client-executor-20] c.a.n.c.remote.client.grpc.GrpcClient : [1723082390796_192.168.110.13_60618]Ignore complete event,isRunning:false,isAbandon=false
  391. 10:03:19:073 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  392. 10:03:19:073 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Try to reconnect to a new server, server is not appointed, will choose a random server.
  393. 10:03:36:081 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Success to connect a server [192.168.110.30:8848], connectionId = 1723082599302_192.168.110.13_61073
  394. 10:03:36:081 ERROR 12700 --- [com.alibaba.nacos.client.naming.updater.1] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Connection is unregistered.
  395. 10:03:36:081 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723082599302_192.168.110.13_61072
  396. 10:03:36:084 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723082390796_192.168.110.13_60618
  397. 10:03:36:084 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723082388161_192.168.110.13_60615
  398. 10:03:36:084 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723082390796_192.168.110.13_60618
  399. 10:03:36:084 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723082388161_192.168.110.13_60615
  400. 10:03:36:087 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Notify disconnected event to listeners
  401. 10:03:36:087 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify disconnected event to listeners
  402. 10:03:36:087 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Notify connected event to listeners.
  403. 10:03:36:089 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify connected event to listeners.
  404. 10:10:47:870 INFO 12700 --- [nacos-grpc-client-executor-34] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 218
  405. 10:10:47:870 INFO 12700 --- [nacos-grpc-client-executor-34] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 218
  406. 10:10:47:870 INFO 12700 --- [nacos-grpc-client-executor-29] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Receive server push request, request = ClientDetectionRequest, requestId = 217
  407. 10:10:47:871 INFO 12700 --- [nacos-grpc-client-executor-29] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Ack server push request, request = ClientDetectionRequest, requestId = 217
  408. 10:10:47:879 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Server healthy check fail, currentConnection = 1723082599302_192.168.110.13_61072
  409. 10:10:47:879 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  410. 10:10:47:880 ERROR 12700 --- [nacos-grpc-client-executor-29] c.a.n.c.remote.client.grpc.GrpcClient : [1723082599302_192.168.110.13_61073]Request stream onCompleted, switch server
  411. 10:10:47:880 INFO 12700 --- [nacos-grpc-client-executor-34] c.a.n.c.remote.client.grpc.GrpcClient : [1723082599302_192.168.110.13_61072]Ignore complete event,isRunning:false,isAbandon=false
  412. 10:10:47:881 ERROR 12700 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR
  413. Received Goaway
  414. app_requested
  415. 10:10:47:881 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Server healthy check fail, currentConnection = 1723082599302_192.168.110.13_61073
  416. 10:10:47:882 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Try to reconnect to a new server, server is not appointed, will choose a random server.
  417. 10:10:47:990 ERROR 12700 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  418. 10:10:48:006 ERROR 12700 --- [com.alibaba.nacos.client.naming.grpc.redo.0] com.alibaba.nacos.common.remote.client : Send request fail, request = InstanceRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
  419. 10:10:48:006 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083048115_192.168.110.13_62005
  420. 10:10:48:006 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Success to connect a server [192.168.110.30:8848], connectionId = 1723083048115_192.168.110.13_62006
  421. 10:10:48:006 ERROR 12700 --- [com.alibaba.nacos.client.Worker] com.alibaba.nacos.common.remote.client : Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
  422. 10:10:48:006 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723082599302_192.168.110.13_61073
  423. 10:10:48:006 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723082599302_192.168.110.13_61072
  424. 10:10:48:006 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723082599302_192.168.110.13_61073
  425. 10:10:48:006 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723082599302_192.168.110.13_61072
  426. 10:10:48:007 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Try to reconnect to a new server, server is not appointed, will choose a random server.
  427. 10:10:48:007 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify disconnected event to listeners
  428. 10:10:48:007 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Notify disconnected event to listeners
  429. 10:10:48:008 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [520b969e-dfd9-4009-a37e-6138d8b0106d_config-0] Notify connected event to listeners.
  430. 10:10:48:008 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify connected event to listeners.
  431. 10:10:48:099 ERROR 12700 --- [com.alibaba.nacos.client.naming.updater.0] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  432. 10:10:48:114 ERROR 12700 --- [com.alibaba.nacos.client.Worker] com.alibaba.nacos.common.remote.client : Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  433. 10:10:48:114 ERROR 12700 --- [com.alibaba.nacos.client.naming.grpc.redo.0] com.alibaba.nacos.common.remote.client : Send request fail, request = InstanceRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  434. 10:10:48:130 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Success to connect a server [192.168.110.30:8848], connectionId = 1723083048231_192.168.110.13_62007
  435. 10:10:48:130 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083048115_192.168.110.13_62006
  436. 10:10:48:130 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083048115_192.168.110.13_62006
  437. 10:10:48:130 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify disconnected event to listeners
  438. 10:10:48:130 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Notify connected event to listeners.
  439. 10:10:48:132 WARN 12700 --- [nacos-grpc-client-executor-40] c.a.n.c.remote.client.grpc.GrpcClient : [1723083048115_192.168.110.13_62006]Ignore error event,isRunning:true,isAbandon=true
  440. 10:10:48:134 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Server check success, currentServer is 192.168.110.30:8848
  441. 10:10:48:223 ERROR 12700 --- [com.alibaba.nacos.client.naming.grpc.redo.0] com.alibaba.nacos.common.remote.client : Send request fail, request = InstanceRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  442. 10:10:48:226 INFO 12700 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Server check success, currentServer is 192.168.110.30:8848
  443. 10:10:51:743 INFO 12700 --- [nacos-grpc-client-executor-45] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Receive server push request, request = NotifySubscriberRequest, requestId = 219
  444. 10:10:51:744 INFO 12700 --- [nacos-grpc-client-executor-45] com.alibaba.nacos.common.remote.client : [6396fee8-a858-490a-8fc9-3d35b4d411f8] Ack server push request, request = NotifySubscriberRequest, requestId = 219
  445. 10:11:28:162 WARN 12700 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  446. 10:11:28:163 WARN 12700 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  447. 10:11:28:164 WARN 12700 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  448. 10:11:28:164 WARN 12700 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  449. 10:11:28:279 INFO 12700 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  450. 10:11:28:281 INFO 12700 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  451. 10:11:28:616 INFO 12700 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  452. 10:11:28:616 INFO 12700 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2dddd724[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  453. 10:11:28:616 INFO 12700 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083048231_192.168.110.13_62007
  454. 10:11:28:618 INFO 12700 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5358efd4[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 55]
  455. 10:11:33:909 INFO 1392 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  456. 10:11:34:413 WARN 1392 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  457. 10:11:34:457 INFO 1392 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  458. 10:11:34:637 INFO 1392 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  459. 10:11:34:646 INFO 1392 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  460. 10:11:34:646 INFO 1392 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  461. 10:11:34:725 INFO 1392 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  462. 10:11:34:725 INFO 1392 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 809 ms
  463. 10:11:35:529 INFO 1392 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  464. 10:11:35:849 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of f6690ba6-918f-4bfb-8ca2-eee6528507e8
  465. 10:11:35:849 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] RpcClient init label, labels = {module=naming, source=sdk}
  466. 10:11:35:850 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  467. 10:11:35:850 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  468. 10:11:35:850 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  469. 10:11:35:851 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  470. 10:11:35:978 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083096077_192.168.110.13_62168
  471. 10:11:35:980 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  472. 10:11:35:980 INFO 1392 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Notify connected event to listeners.
  473. 10:11:35:982 INFO 1392 --- [main] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b440
  474. 10:11:36:019 INFO 1392 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  475. 10:11:36:025 INFO 1392 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  476. 10:11:36:166 INFO 1392 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  477. 10:11:36:168 INFO 1392 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  478. 10:11:36:181 INFO 1392 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  479. 10:11:36:221 INFO 1392 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.28 seconds (JVM running for 4.801)
  480. 10:11:36:224 INFO 1392 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  481. 10:11:36:225 INFO 1392 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  482. 10:11:36:565 INFO 1392 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Receive server push request, request = NotifySubscriberRequest, requestId = 222
  483. 10:11:36:572 INFO 1392 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [f6690ba6-918f-4bfb-8ca2-eee6528507e8] Ack server push request, request = NotifySubscriberRequest, requestId = 222
  484. 10:11:40:815 INFO 1392 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  485. Note: further occurrences of this error will be logged at DEBUG level.
  486. 10:11:40:819 INFO 1392 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  487. 10:11:40:820 INFO 1392 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  488. 10:11:40:821 INFO 1392 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  489. 10:11:53:382 WARN 1392 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  490. 10:11:53:382 WARN 1392 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  491. 10:11:53:382 WARN 1392 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  492. 10:11:53:383 WARN 1392 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  493. 10:11:53:496 INFO 1392 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  494. 10:11:53:498 INFO 1392 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  495. 10:11:53:826 INFO 1392 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  496. 10:11:53:826 INFO 1392 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@42d74f22[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  497. 10:11:53:826 INFO 1392 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083096077_192.168.110.13_62168
  498. 10:11:53:829 INFO 1392 --- [nacos-grpc-client-executor-13] c.a.n.c.remote.client.grpc.GrpcClient : [1723083096077_192.168.110.13_62168]Ignore complete event,isRunning:false,isAbandon=false
  499. 10:11:53:830 INFO 1392 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1be00d6a[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 14]
  500. 10:11:57:986 INFO 10696 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  501. 10:11:58:443 WARN 10696 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  502. 10:11:58:489 INFO 10696 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  503. 10:11:58:681 INFO 10696 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  504. 10:11:58:687 INFO 10696 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  505. 10:11:58:687 INFO 10696 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  506. 10:11:58:760 INFO 10696 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  507. 10:11:58:760 INFO 10696 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 764 ms
  508. 10:11:59:630 INFO 10696 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  509. 10:11:59:943 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of c1ff41ed-c2a0-4613-b856-25ba858de987
  510. 10:11:59:943 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] RpcClient init label, labels = {module=naming, source=sdk}
  511. 10:11:59:944 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  512. 10:11:59:945 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  513. 10:11:59:945 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  514. 10:11:59:945 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  515. 10:12:00:068 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083120173_192.168.110.13_62286
  516. 10:12:00:068 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  517. 10:12:00:068 INFO 10696 --- [main] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  518. 10:12:00:068 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Notify connected event to listeners.
  519. 10:12:00:106 INFO 10696 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  520. 10:12:00:114 INFO 10696 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  521. 10:12:00:249 INFO 10696 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  522. 10:12:00:251 INFO 10696 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  523. 10:12:00:266 INFO 10696 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  524. 10:12:00:306 INFO 10696 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.383 seconds (JVM running for 4.944)
  525. 10:12:00:310 INFO 10696 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  526. 10:12:00:311 INFO 10696 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  527. 10:12:00:627 INFO 10696 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Receive server push request, request = NotifySubscriberRequest, requestId = 225
  528. 10:12:00:638 INFO 10696 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Ack server push request, request = NotifySubscriberRequest, requestId = 225
  529. 10:12:10:145 INFO 10696 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  530. Note: further occurrences of this error will be logged at DEBUG level.
  531. 10:12:10:150 INFO 10696 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  532. 10:12:10:150 INFO 10696 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  533. 10:12:10:151 INFO 10696 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 0 ms
  534. 10:12:47:758 INFO 10696 --- [nacos-grpc-client-executor-18] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 227
  535. 10:12:47:758 INFO 10696 --- [nacos-grpc-client-executor-11] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Receive server push request, request = ClientDetectionRequest, requestId = 228
  536. 10:12:47:759 INFO 10696 --- [nacos-grpc-client-executor-18] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 227
  537. 10:12:47:759 INFO 10696 --- [nacos-grpc-client-executor-11] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Ack server push request, request = ClientDetectionRequest, requestId = 228
  538. 10:12:47:767 ERROR 10696 --- [nacos-grpc-client-executor-18] c.a.n.c.remote.client.grpc.GrpcClient : [1723083117773_192.168.110.13_62280]Request stream onCompleted, switch server
  539. 10:12:47:767 ERROR 10696 --- [nacos-grpc-client-executor-11] c.a.n.c.remote.client.grpc.GrpcClient : [1723083120173_192.168.110.13_62286]Request stream onCompleted, switch server
  540. 10:12:47:769 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Server healthy check fail, currentConnection = 1723083120173_192.168.110.13_62286
  541. 10:12:47:769 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Server healthy check fail, currentConnection = 1723083117773_192.168.110.13_62280
  542. 10:12:47:769 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Try to reconnect to a new server, server is not appointed, will choose a random server.
  543. 10:12:47:769 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  544. 10:12:47:812 WARN 10696 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  545. 10:12:47:812 WARN 10696 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  546. 10:12:47:812 WARN 10696 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  547. 10:12:47:813 WARN 10696 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  548. 10:12:47:919 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083168010_192.168.110.13_62394
  549. 10:12:47:919 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Success to connect a server [192.168.110.30:8848], connectionId = 1723083168007_192.168.110.13_62393
  550. 10:12:47:919 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083117773_192.168.110.13_62280
  551. 10:12:47:919 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083120173_192.168.110.13_62286
  552. 10:12:47:920 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083117773_192.168.110.13_62280
  553. 10:12:47:920 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083120173_192.168.110.13_62286
  554. 10:12:47:922 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Try to reconnect to a new server, server is not appointed, will choose a random server.
  555. 10:12:47:922 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  556. 10:12:47:922 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Notify disconnected event to listeners
  557. 10:12:47:922 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Notify disconnected event to listeners
  558. 10:12:47:923 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Notify connected event to listeners.
  559. 10:12:47:923 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Notify connected event to listeners.
  560. 10:12:48:007 INFO 10696 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  561. 10:12:48:009 INFO 10696 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  562. 10:12:48:045 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083168153_192.168.110.13_62397
  563. 10:12:48:045 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Success to connect a server [192.168.110.30:8848], connectionId = 1723083168153_192.168.110.13_62396
  564. 10:12:48:045 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083168010_192.168.110.13_62394
  565. 10:12:48:045 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083168007_192.168.110.13_62393
  566. 10:12:48:045 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083168010_192.168.110.13_62394
  567. 10:12:48:045 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083168007_192.168.110.13_62393
  568. 10:12:48:049 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Notify disconnected event to listeners
  569. 10:12:48:049 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Notify disconnected event to listeners
  570. 10:12:48:049 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c1ff41ed-c2a0-4613-b856-25ba858de987] Notify connected event to listeners.
  571. 10:12:48:050 INFO 10696 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [99838388-0670-40e9-ac2d-40f9e9373e9a_config-0] Notify connected event to listeners.
  572. 10:12:48:050 INFO 10696 --- [nacos-grpc-client-executor-27] c.a.n.c.remote.client.grpc.GrpcClient : [1723083168010_192.168.110.13_62394]Ignore complete event,isRunning:true,isAbandon=true
  573. 10:12:48:050 INFO 10696 --- [nacos-grpc-client-executor-21] c.a.n.c.remote.client.grpc.GrpcClient : [1723083168007_192.168.110.13_62393]Ignore complete event,isRunning:true,isAbandon=true
  574. 10:12:48:325 INFO 10696 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  575. 10:12:48:325 INFO 10696 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2fa684bb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  576. 10:12:48:325 INFO 10696 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083168153_192.168.110.13_62396
  577. 10:12:48:325 INFO 10696 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6288b21d[Running, pool size = 11, active threads = 0, queued tasks = 0, completed tasks = 22]
  578. 10:12:53:034 INFO 20656 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  579. 10:12:53:469 WARN 20656 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  580. 10:12:53:511 INFO 20656 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  581. 10:12:53:678 INFO 20656 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  582. 10:12:53:684 INFO 20656 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  583. 10:12:53:684 INFO 20656 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  584. 10:12:53:766 INFO 20656 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  585. 10:12:53:767 INFO 20656 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 726 ms
  586. 10:12:54:618 INFO 20656 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  587. 10:12:54:897 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of e9791555-c4b5-47f9-9832-101b064796bf
  588. 10:12:54:897 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] RpcClient init label, labels = {module=naming, source=sdk}
  589. 10:12:54:898 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  590. 10:12:54:898 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  591. 10:12:54:898 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  592. 10:12:54:899 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  593. 10:12:55:027 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083175127_192.168.110.13_62473
  594. 10:12:55:029 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  595. 10:12:55:029 INFO 20656 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Notify connected event to listeners.
  596. 10:12:55:031 INFO 20656 --- [main] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  597. 10:12:55:067 INFO 20656 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  598. 10:12:55:072 INFO 20656 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  599. 10:12:55:215 INFO 20656 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  600. 10:12:55:218 INFO 20656 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  601. 10:12:55:235 INFO 20656 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  602. 10:12:55:279 INFO 20656 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.182 seconds (JVM running for 4.712)
  603. 10:12:55:286 INFO 20656 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  604. 10:12:55:289 INFO 20656 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  605. 10:12:55:566 INFO 20656 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Receive server push request, request = NotifySubscriberRequest, requestId = 230
  606. 10:12:55:573 INFO 20656 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [e9791555-c4b5-47f9-9832-101b064796bf] Ack server push request, request = NotifySubscriberRequest, requestId = 230
  607. 10:16:50:862 WARN 20656 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  608. 10:16:50:862 WARN 20656 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  609. 10:16:50:863 WARN 20656 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  610. 10:16:50:863 WARN 20656 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  611. 10:16:50:992 INFO 20656 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  612. 10:16:50:995 INFO 20656 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  613. 10:16:51:324 INFO 20656 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  614. 10:16:51:325 INFO 20656 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@278740ad[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  615. 10:16:51:325 INFO 20656 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083175127_192.168.110.13_62473
  616. 10:16:51:328 INFO 20656 --- [nacos-grpc-client-executor-61] c.a.n.c.remote.client.grpc.GrpcClient : [1723083175127_192.168.110.13_62473]Ignore complete event,isRunning:false,isAbandon=false
  617. 10:16:51:330 INFO 20656 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7b60f90c[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 62]
  618. 10:16:56:302 INFO 6392 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  619. 10:16:56:792 WARN 6392 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  620. 10:16:56:848 INFO 6392 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  621. 10:16:57:047 INFO 6392 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  622. 10:16:57:055 INFO 6392 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  623. 10:16:57:055 INFO 6392 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  624. 10:16:57:185 INFO 6392 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  625. 10:16:57:185 INFO 6392 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 876 ms
  626. 10:16:57:909 INFO 11072 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  627. 10:16:58:145 INFO 6392 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  628. 10:16:58:488 WARN 11072 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  629. 10:16:58:488 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 10782681-66c2-4e4c-9373-d0ffbf3c2199
  630. 10:16:58:489 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] RpcClient init label, labels = {module=naming, source=sdk}
  631. 10:16:58:490 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  632. 10:16:58:490 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  633. 10:16:58:490 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  634. 10:16:58:491 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  635. 10:16:58:540 INFO 11072 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  636. 10:16:58:616 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083418725_192.168.110.13_63106
  637. 10:16:58:616 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  638. 10:16:58:616 INFO 6392 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Notify connected event to listeners.
  639. 10:16:58:616 INFO 6392 --- [main] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  640. 10:16:58:661 INFO 6392 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  641. 10:16:58:669 INFO 6392 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  642. 10:16:58:763 INFO 11072 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  643. 10:16:58:771 INFO 11072 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  644. 10:16:58:771 INFO 11072 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  645. 10:16:58:814 INFO 6392 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  646. 10:16:58:816 INFO 6392 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  647. 10:16:58:832 INFO 6392 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  648. 10:16:58:857 INFO 11072 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  649. 10:16:58:857 INFO 11072 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 939 ms
  650. 10:16:58:874 INFO 6392 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.849 seconds (JVM running for 5.338)
  651. 10:16:58:879 INFO 6392 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  652. 10:16:58:881 INFO 6392 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  653. 10:16:59:176 INFO 6392 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Receive server push request, request = NotifySubscriberRequest, requestId = 233
  654. 10:16:59:184 INFO 6392 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [10782681-66c2-4e4c-9373-d0ffbf3c2199] Ack server push request, request = NotifySubscriberRequest, requestId = 233
  655. 10:16:59:849 INFO 11072 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  656. 10:17:00:210 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of ca3fdbc5-829a-493e-9b35-e3f2729cc4e4
  657. 10:17:00:210 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] RpcClient init label, labels = {module=naming, source=sdk}
  658. 10:17:00:211 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  659. 10:17:00:211 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  660. 10:17:00:211 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  661. 10:17:00:212 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  662. 10:17:00:331 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083420444_192.168.110.13_63112
  663. 10:17:00:332 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  664. 10:17:00:332 INFO 11072 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Notify connected event to listeners.
  665. 10:17:00:332 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  666. 10:17:00:370 WARN 11072 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8086 is already in use
  667. 10:17:00:877 INFO 11072 --- [nacos-grpc-client-executor-5] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Receive server push request, request = NotifySubscriberRequest, requestId = 235
  668. 10:17:00:881 INFO 11072 --- [nacos-grpc-client-executor-5] com.alibaba.nacos.common.remote.client : [ca3fdbc5-829a-493e-9b35-e3f2729cc4e4] Ack server push request, request = NotifySubscriberRequest, requestId = 235
  669. 10:17:01:027 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  670. 10:17:01:027 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@fd0e118[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  671. 10:17:01:028 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : Close current connection 1723083420444_192.168.110.13_63112
  672. 10:17:01:032 INFO 11072 --- [nacos-grpc-client-executor-6] c.a.n.c.remote.client.grpc.GrpcClient : [1723083420444_192.168.110.13_63112]Ignore complete event,isRunning:false,isAbandon=false
  673. 10:17:01:040 INFO 11072 --- [main] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@402c9a60[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 7]
  674. 10:17:01:043 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 733e7cec-5036-48b8-9b7d-8df20633575b
  675. 10:17:01:044 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] RpcClient init label, labels = {module=naming, source=sdk}
  676. 10:17:01:044 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  677. 10:17:01:044 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  678. 10:17:01:044 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  679. 10:17:01:045 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  680. 10:17:01:175 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083421279_192.168.110.13_63114
  681. 10:17:01:175 INFO 11072 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Notify connected event to listeners.
  682. 10:17:01:175 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  683. 10:17:01:175 INFO 11072 --- [main] com.alibaba.nacos.common.remote.client : [733e7cec-5036-48b8-9b7d-8df20633575b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  684. 10:17:01:182 INFO 11072 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  685. 10:17:01:191 INFO 11072 --- [main] ConditionEvaluationReportLoggingListener :
  686. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  687. 10:17:01:213 ERROR 11072 --- [main] o.s.b.d.LoggingFailureAnalysisReporter :
  688. ***************************
  689. APPLICATION FAILED TO START
  690. ***************************
  691. Description:
  692. Web server failed to start. Port 8086 was already in use.
  693. Action:
  694. Identify and stop the process that's listening on port 8086 or configure this application to listen on another port.
  695. 10:17:01:214 WARN 11072 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  696. 10:17:01:214 WARN 11072 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  697. 10:17:01:214 WARN 11072 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  698. 10:17:01:214 WARN 11072 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  699. 10:17:14:761 WARN 6392 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  700. 10:17:14:761 WARN 6392 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  701. 10:17:14:761 WARN 6392 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  702. 10:17:14:762 WARN 6392 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  703. 10:17:14:881 INFO 6392 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  704. 10:17:14:883 INFO 6392 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  705. 10:17:15:210 INFO 6392 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  706. 10:17:15:211 INFO 6392 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@370319ce[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  707. 10:17:15:211 INFO 6392 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083418725_192.168.110.13_63106
  708. 10:17:15:214 INFO 6392 --- [nacos-grpc-client-executor-12] c.a.n.c.remote.client.grpc.GrpcClient : [1723083418725_192.168.110.13_63106]Ignore complete event,isRunning:false,isAbandon=false
  709. 10:17:15:216 INFO 6392 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2cce9f92[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 13]
  710. 10:17:19:467 INFO 10116 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  711. 10:17:19:947 WARN 10116 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  712. 10:17:19:993 INFO 10116 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  713. 10:17:20:186 INFO 10116 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  714. 10:17:20:193 INFO 10116 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  715. 10:17:20:193 INFO 10116 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  716. 10:17:20:273 INFO 10116 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  717. 10:17:20:274 INFO 10116 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 800 ms
  718. 10:17:21:149 INFO 10116 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  719. 10:17:21:467 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of b1255487-be27-4d0f-9c15-0e212ee8bd28
  720. 10:17:21:467 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] RpcClient init label, labels = {module=naming, source=sdk}
  721. 10:17:21:468 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  722. 10:17:21:468 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  723. 10:17:21:469 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  724. 10:17:21:469 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  725. 10:17:21:593 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083441702_192.168.110.13_63221
  726. 10:17:21:594 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  727. 10:17:21:594 INFO 10116 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Notify connected event to listeners.
  728. 10:17:21:595 INFO 10116 --- [main] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  729. 10:17:21:635 INFO 10116 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  730. 10:17:21:642 INFO 10116 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  731. 10:17:21:770 INFO 10116 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  732. 10:17:21:772 INFO 10116 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  733. 10:17:21:788 INFO 10116 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  734. 10:17:21:829 INFO 10116 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.448 seconds (JVM running for 5.053)
  735. 10:17:21:833 INFO 10116 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  736. 10:17:21:834 INFO 10116 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  737. 10:17:22:133 INFO 10116 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Receive server push request, request = NotifySubscriberRequest, requestId = 237
  738. 10:17:22:140 INFO 10116 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b1255487-be27-4d0f-9c15-0e212ee8bd28] Ack server push request, request = NotifySubscriberRequest, requestId = 237
  739. 10:18:11:489 WARN 10116 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  740. 10:18:11:490 WARN 10116 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  741. 10:18:11:490 WARN 10116 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  742. 10:18:11:491 WARN 10116 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  743. 10:18:11:606 INFO 10116 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  744. 10:18:11:609 INFO 10116 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  745. 10:18:11:934 INFO 10116 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  746. 10:18:11:934 INFO 10116 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1fe94adf[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  747. 10:18:11:934 INFO 10116 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083441702_192.168.110.13_63221
  748. 10:18:11:936 INFO 10116 --- [nacos-grpc-client-executor-19] c.a.n.c.remote.client.grpc.GrpcClient : [1723083441702_192.168.110.13_63221]Ignore complete event,isRunning:false,isAbandon=false
  749. 10:18:11:938 INFO 10116 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1d046a8c[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 20]
  750. 10:18:21:553 INFO 10368 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  751. 10:18:22:017 WARN 10368 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  752. 10:18:22:058 INFO 10368 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  753. 10:18:22:225 INFO 10368 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  754. 10:18:22:233 INFO 10368 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  755. 10:18:22:233 INFO 10368 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  756. 10:18:22:303 INFO 10368 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  757. 10:18:22:303 INFO 10368 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 742 ms
  758. 10:18:23:130 INFO 10368 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  759. 10:18:23:429 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of d72cc900-39eb-43e6-8312-8f62f7ab957b
  760. 10:18:23:429 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] RpcClient init label, labels = {module=naming, source=sdk}
  761. 10:18:23:430 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  762. 10:18:23:430 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  763. 10:18:23:431 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  764. 10:18:23:431 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  765. 10:18:23:549 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083503665_192.168.110.13_63418
  766. 10:18:23:550 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  767. 10:18:23:550 INFO 10368 --- [main] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b440
  768. 10:18:23:550 INFO 10368 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Notify connected event to listeners.
  769. 10:18:23:585 INFO 10368 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  770. 10:18:23:592 INFO 10368 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  771. 10:18:23:730 INFO 10368 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  772. 10:18:23:733 INFO 10368 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  773. 10:18:23:746 INFO 10368 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  774. 10:18:23:782 INFO 10368 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.176 seconds (JVM running for 4.702)
  775. 10:18:23:784 INFO 10368 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  776. 10:18:23:786 INFO 10368 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  777. 10:18:24:079 INFO 10368 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Receive server push request, request = NotifySubscriberRequest, requestId = 239
  778. 10:18:24:082 INFO 10368 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Ack server push request, request = NotifySubscriberRequest, requestId = 239
  779. 10:18:29:843 WARN 10368 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  780. 10:18:29:844 WARN 10368 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  781. 10:18:29:844 WARN 10368 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  782. 10:18:29:845 WARN 10368 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  783. 10:18:29:994 INFO 10368 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  784. 10:18:29:996 INFO 10368 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  785. 10:18:30:586 INFO 10368 --- [nacos-grpc-client-executor-10] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Receive server push request, request = NotifySubscriberRequest, requestId = 241
  786. 10:18:30:593 INFO 10368 --- [nacos-grpc-client-executor-10] com.alibaba.nacos.common.remote.client : [d72cc900-39eb-43e6-8312-8f62f7ab957b] Ack server push request, request = NotifySubscriberRequest, requestId = 241
  787. 10:18:30:648 INFO 10368 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  788. 10:18:30:648 INFO 10368 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@79c4a326[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  789. 10:18:30:649 INFO 10368 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083503665_192.168.110.13_63418
  790. 10:18:30:651 INFO 10368 --- [nacos-grpc-client-executor-11] c.a.n.c.remote.client.grpc.GrpcClient : [1723083503665_192.168.110.13_63418]Ignore complete event,isRunning:false,isAbandon=false
  791. 10:18:30:653 INFO 10368 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5b9e27c2[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 12]
  792. 10:18:34:373 INFO 13940 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  793. 10:18:34:848 WARN 13940 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  794. 10:18:34:892 INFO 13940 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  795. 10:18:35:090 INFO 13940 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  796. 10:18:35:095 INFO 13940 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  797. 10:18:35:095 INFO 13940 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  798. 10:18:35:169 INFO 13940 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  799. 10:18:35:169 INFO 13940 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 787 ms
  800. 10:18:36:007 INFO 13940 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  801. 10:18:36:339 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8
  802. 10:18:36:339 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] RpcClient init label, labels = {module=naming, source=sdk}
  803. 10:18:36:340 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  804. 10:18:36:340 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  805. 10:18:36:341 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  806. 10:18:36:341 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  807. 10:18:36:465 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083516574_192.168.110.13_63997
  808. 10:18:36:466 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  809. 10:18:36:466 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Notify connected event to listeners.
  810. 10:18:36:466 INFO 13940 --- [main] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  811. 10:18:36:504 INFO 13940 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  812. 10:18:36:512 INFO 13940 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  813. 10:18:36:646 INFO 13940 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  814. 10:18:36:649 INFO 13940 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  815. 10:18:36:663 INFO 13940 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  816. 10:18:36:703 INFO 13940 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.399 seconds (JVM running for 4.956)
  817. 10:18:36:706 INFO 13940 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  818. 10:18:36:709 INFO 13940 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  819. 10:18:37:020 INFO 13940 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Receive server push request, request = NotifySubscriberRequest, requestId = 242
  820. 10:18:37:026 INFO 13940 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Ack server push request, request = NotifySubscriberRequest, requestId = 242
  821. 10:18:50:939 INFO 13940 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  822. Note: further occurrences of this error will be logged at DEBUG level.
  823. 10:18:50:944 INFO 13940 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  824. 10:18:50:944 INFO 13940 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  825. 10:18:50:945 INFO 13940 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 0 ms
  826. 10:21:25:564 INFO 13940 --- [nacos-grpc-client-executor-28] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 245
  827. 10:21:25:564 INFO 13940 --- [nacos-grpc-client-executor-28] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 245
  828. 10:21:25:564 INFO 13940 --- [nacos-grpc-client-executor-21] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Receive server push request, request = ClientDetectionRequest, requestId = 244
  829. 10:21:25:567 INFO 13940 --- [nacos-grpc-client-executor-21] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Ack server push request, request = ClientDetectionRequest, requestId = 244
  830. 10:21:25:574 ERROR 13940 --- [nacos-grpc-client-executor-28] c.a.n.c.remote.client.grpc.GrpcClient : [1723083514170_192.168.110.13_63992]Request stream onCompleted, switch server
  831. 10:21:25:582 ERROR 13940 --- [nacos-grpc-client-executor-21] c.a.n.c.remote.client.grpc.GrpcClient : [1723083516574_192.168.110.13_63997]Request stream onCompleted, switch server
  832. 10:21:25:591 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Server healthy check fail, currentConnection = 1723083516574_192.168.110.13_63997
  833. 10:21:25:591 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Server healthy check fail, currentConnection = 1723083514170_192.168.110.13_63992
  834. 10:21:25:591 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Try to reconnect to a new server, server is not appointed, will choose a random server.
  835. 10:21:25:590 ERROR 13940 --- [com.alibaba.nacos.client.naming.updater.1] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR
  836. Received Goaway
  837. app_requested
  838. 10:21:25:591 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  839. 10:21:25:623 WARN 13940 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  840. 10:21:25:623 WARN 13940 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  841. 10:21:25:623 WARN 13940 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  842. 10:21:25:624 WARN 13940 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  843. 10:21:25:701 ERROR 13940 --- [com.alibaba.nacos.client.naming.updater.1] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  844. 10:21:25:748 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083685851_192.168.110.13_64380
  845. 10:21:25:748 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083514170_192.168.110.13_63992
  846. 10:21:25:748 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Success to connect a server [192.168.110.30:8848], connectionId = 1723083685851_192.168.110.13_64379
  847. 10:21:25:748 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083514170_192.168.110.13_63992
  848. 10:21:25:748 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083516574_192.168.110.13_63997
  849. 10:21:25:748 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083516574_192.168.110.13_63997
  850. 10:21:25:750 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Try to reconnect to a new server, server is not appointed, will choose a random server.
  851. 10:21:25:750 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Notify disconnected event to listeners
  852. 10:21:25:750 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Notify disconnected event to listeners
  853. 10:21:25:750 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  854. 10:21:25:750 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Notify connected event to listeners.
  855. 10:21:25:751 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Notify connected event to listeners.
  856. 10:21:25:811 ERROR 13940 --- [com.alibaba.nacos.client.naming.updater.1] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  857. 10:21:25:858 ERROR 13940 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY
  858. 10:21:25:874 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083685989_192.168.110.13_64383
  859. 10:21:25:874 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Success to connect a server [192.168.110.30:8848], connectionId = 1723083685989_192.168.110.13_64382
  860. 10:21:25:875 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083685851_192.168.110.13_64380
  861. 10:21:25:875 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083685851_192.168.110.13_64379
  862. 10:21:25:875 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083685851_192.168.110.13_64380
  863. 10:21:25:875 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083685851_192.168.110.13_64379
  864. 10:21:25:878 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Notify disconnected event to listeners
  865. 10:21:25:878 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Notify disconnected event to listeners
  866. 10:21:25:878 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Notify connected event to listeners.
  867. 10:21:25:878 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6ed7fcdb-9954-4cae-b055-1e40321dcb3b_config-0] Notify connected event to listeners.
  868. 10:21:25:878 INFO 13940 --- [nacos-grpc-client-executor-30] c.a.n.c.remote.client.grpc.GrpcClient : [1723083685851_192.168.110.13_64379]Ignore complete event,isRunning:true,isAbandon=true
  869. 10:21:25:879 INFO 13940 --- [nacos-grpc-client-executor-37] c.a.n.c.remote.client.grpc.GrpcClient : [1723083685851_192.168.110.13_64380]Ignore complete event,isRunning:true,isAbandon=true
  870. 10:21:25:880 INFO 13940 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3ea121b7-547c-4bf4-8bfc-1fd8e7103bb8] Server check success, currentServer is 192.168.110.30:8848
  871. 10:21:25:967 ERROR 13940 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Send request fail, request = SubscribeServiceRequest{headers={app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  872. 10:21:25:981 INFO 13940 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  873. 10:21:25:984 INFO 13940 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  874. 10:21:26:316 INFO 13940 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  875. 10:21:26:317 INFO 13940 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@52d5e3f2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  876. 10:21:26:317 INFO 13940 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083685989_192.168.110.13_64382
  877. 10:21:26:318 INFO 13940 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2379af12[Running, pool size = 13, active threads = 0, queued tasks = 0, completed tasks = 34]
  878. 10:21:31:216 INFO 12732 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  879. 10:21:31:708 WARN 12732 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  880. 10:21:31:756 INFO 12732 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  881. 10:21:31:960 INFO 12732 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  882. 10:21:31:966 INFO 12732 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  883. 10:21:31:966 INFO 12732 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  884. 10:21:32:043 INFO 12732 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  885. 10:21:32:043 INFO 12732 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 818 ms
  886. 10:21:32:915 INFO 12732 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  887. 10:21:33:259 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of d85519c5-ed89-4715-a5cd-d63b4decf7ee
  888. 10:21:33:259 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] RpcClient init label, labels = {module=naming, source=sdk}
  889. 10:21:33:260 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  890. 10:21:33:261 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  891. 10:21:33:261 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  892. 10:21:33:262 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  893. 10:21:33:386 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083693498_192.168.110.13_64458
  894. 10:21:33:387 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  895. 10:21:33:387 INFO 12732 --- [main] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  896. 10:21:33:387 INFO 12732 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Notify connected event to listeners.
  897. 10:21:33:437 INFO 12732 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  898. 10:21:33:443 INFO 12732 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  899. 10:21:33:585 INFO 12732 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  900. 10:21:33:587 INFO 12732 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  901. 10:21:33:601 INFO 12732 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  902. 10:21:33:642 INFO 12732 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.471 seconds (JVM running for 5.057)
  903. 10:21:33:646 INFO 12732 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  904. 10:21:33:647 INFO 12732 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  905. 10:21:34:013 INFO 12732 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Receive server push request, request = NotifySubscriberRequest, requestId = 247
  906. 10:21:34:020 INFO 12732 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [d85519c5-ed89-4715-a5cd-d63b4decf7ee] Ack server push request, request = NotifySubscriberRequest, requestId = 247
  907. 10:21:35:833 INFO 12732 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  908. Note: further occurrences of this error will be logged at DEBUG level.
  909. 10:21:35:839 INFO 12732 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  910. 10:21:35:839 INFO 12732 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  911. 10:21:35:840 INFO 12732 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  912. 10:21:54:281 WARN 12732 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  913. 10:21:54:281 WARN 12732 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  914. 10:21:54:282 WARN 12732 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  915. 10:21:54:283 WARN 12732 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  916. 10:21:54:396 INFO 12732 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  917. 10:21:54:399 INFO 12732 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  918. 10:21:54:731 INFO 12732 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  919. 10:21:54:732 INFO 12732 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@a2a1f1b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  920. 10:21:54:732 INFO 12732 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723083693498_192.168.110.13_64458
  921. 10:21:54:734 INFO 12732 --- [nacos-grpc-client-executor-13] c.a.n.c.remote.client.grpc.GrpcClient : [1723083693498_192.168.110.13_64458]Ignore complete event,isRunning:false,isAbandon=false
  922. 10:21:54:736 INFO 12732 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@744f8078[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 14]
  923. 10:21:59:556 INFO 8784 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  924. 10:22:00:065 WARN 8784 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  925. 10:22:00:110 INFO 8784 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  926. 10:22:00:314 INFO 8784 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  927. 10:22:00:321 INFO 8784 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  928. 10:22:00:321 INFO 8784 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  929. 10:22:00:397 INFO 8784 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  930. 10:22:00:397 INFO 8784 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 834 ms
  931. 10:22:01:253 INFO 8784 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  932. 10:22:01:591 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b
  933. 10:22:01:592 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] RpcClient init label, labels = {module=naming, source=sdk}
  934. 10:22:01:593 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  935. 10:22:01:593 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  936. 10:22:01:593 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  937. 10:22:01:594 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  938. 10:22:01:708 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723083721830_192.168.110.13_64591
  939. 10:22:01:710 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  940. 10:22:01:710 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Notify connected event to listeners.
  941. 10:22:01:712 INFO 8784 --- [main] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  942. 10:22:01:761 INFO 8784 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  943. 10:22:01:768 INFO 8784 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  944. 10:22:01:902 INFO 8784 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  945. 10:22:01:904 INFO 8784 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  946. 10:22:01:919 INFO 8784 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  947. 10:22:01:961 INFO 8784 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.478 seconds (JVM running for 5.05)
  948. 10:22:01:964 INFO 8784 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  949. 10:22:01:966 INFO 8784 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  950. 10:22:02:263 INFO 8784 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Receive server push request, request = NotifySubscriberRequest, requestId = 251
  951. 10:22:02:269 INFO 8784 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Ack server push request, request = NotifySubscriberRequest, requestId = 251
  952. 10:24:12:139 INFO 8784 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  953. Note: further occurrences of this error will be logged at DEBUG level.
  954. 10:24:12:146 INFO 8784 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  955. 10:24:12:146 INFO 8784 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  956. 10:24:12:148 INFO 8784 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
  957. 10:24:33:573 INFO 8784 --- [nacos-grpc-client-executor-34] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Receive server push request, request = ClientDetectionRequest, requestId = 253
  958. 10:24:33:573 INFO 8784 --- [nacos-grpc-client-executor-40] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 252
  959. 10:24:33:573 INFO 8784 --- [nacos-grpc-client-executor-34] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Ack server push request, request = ClientDetectionRequest, requestId = 253
  960. 10:24:33:574 INFO 8784 --- [nacos-grpc-client-executor-40] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 252
  961. 10:24:33:585 ERROR 8784 --- [nacos-grpc-client-executor-40] c.a.n.c.remote.client.grpc.GrpcClient : [1723083719343_192.168.110.13_64587]Request stream onCompleted, switch server
  962. 10:24:33:588 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Server healthy check fail, currentConnection = 1723083719343_192.168.110.13_64587
  963. 10:24:33:588 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  964. 10:24:33:719 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083873832_192.168.110.13_64913
  965. 10:24:33:719 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083719343_192.168.110.13_64587
  966. 10:24:33:719 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083719343_192.168.110.13_64587
  967. 10:24:33:723 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  968. 10:24:33:723 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Notify disconnected event to listeners
  969. 10:24:33:723 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Notify connected event to listeners.
  970. 10:24:33:843 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723083873964_192.168.110.13_64914
  971. 10:24:33:843 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083873832_192.168.110.13_64913
  972. 10:24:33:843 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083873832_192.168.110.13_64913
  973. 10:24:33:845 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Notify disconnected event to listeners
  974. 10:24:33:845 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Notify connected event to listeners.
  975. 10:24:33:845 INFO 8784 --- [nacos-grpc-client-executor-49] c.a.n.c.remote.client.grpc.GrpcClient : [1723083873832_192.168.110.13_64913]Ignore complete event,isRunning:true,isAbandon=true
  976. 10:29:15:154 INFO 8784 --- [nacos-grpc-client-executor-62] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 254
  977. 10:29:15:155 INFO 8784 --- [nacos-grpc-client-executor-62] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 254
  978. 10:29:15:164 INFO 8784 --- [nacos-grpc-client-executor-49] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Receive server push request, request = ClientDetectionRequest, requestId = 255
  979. 10:29:15:170 INFO 8784 --- [nacos-grpc-client-executor-49] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Ack server push request, request = ClientDetectionRequest, requestId = 255
  980. 10:29:15:172 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Server healthy check fail, currentConnection = 1723083873964_192.168.110.13_64914
  981. 10:29:15:173 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  982. 10:29:15:171 ERROR 8784 --- [com.alibaba.nacos.client.naming.updater.2] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: HTTP/2 error code: NO_ERROR
  983. Received Goaway
  984. app_requested
  985. 10:29:15:172 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Server healthy check fail, currentConnection = 1723083721830_192.168.110.13_64591
  986. 10:29:15:204 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Try to reconnect to a new server, server is not appointed, will choose a random server.
  987. 10:29:15:205 INFO 8784 --- [nacos-grpc-client-executor-49] c.a.n.c.remote.client.grpc.GrpcClient : [1723083721830_192.168.110.13_64591]Ignore complete event,isRunning:false,isAbandon=false
  988. 10:29:15:205 INFO 8784 --- [nacos-grpc-client-executor-62] c.a.n.c.remote.client.grpc.GrpcClient : [1723083873964_192.168.110.13_64914]Ignore complete event,isRunning:false,isAbandon=false
  989. 10:29:15:209 WARN 8784 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  990. 10:29:15:210 WARN 8784 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  991. 10:29:15:210 WARN 8784 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  992. 10:29:15:213 WARN 8784 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  993. 10:29:15:339 ERROR 8784 --- [com.alibaba.nacos.client.Worker] com.alibaba.nacos.common.remote.client : Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered.
  994. 10:29:15:339 ERROR 8784 --- [com.alibaba.nacos.client.naming.updater.2] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Connection is unregistered.
  995. 10:29:15:354 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723084155469_192.168.110.13_65504
  996. 10:29:15:354 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Success to connect a server [192.168.110.30:8848], connectionId = 1723084155469_192.168.110.13_65505
  997. 10:29:15:354 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083873964_192.168.110.13_64914
  998. 10:29:15:354 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723083721830_192.168.110.13_64591
  999. 10:29:15:354 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083873964_192.168.110.13_64914
  1000. 10:29:15:354 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723083721830_192.168.110.13_64591
  1001. 10:29:15:355 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Notify disconnected event to listeners
  1002. 10:29:15:355 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Notify disconnected event to listeners
  1003. 10:29:15:356 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [1a9ecbf8-67fe-477e-ac40-33410dee14f6_config-0] Notify connected event to listeners.
  1004. 10:29:15:357 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Notify connected event to listeners.
  1005. 10:29:15:364 INFO 8784 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1006. 10:29:15:367 INFO 8784 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1007. 10:29:15:446 ERROR 8784 --- [com.alibaba.nacos.client.naming.updater.2] com.alibaba.nacos.common.remote.client : Send request fail, request = ServiceQueryRequest{headers={}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  1008. 10:29:15:446 ERROR 8784 --- [com.alibaba.nacos.client.Worker] com.alibaba.nacos.common.remote.client : Send request fail, request = ConfigBatchListenRequest{headers={}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  1009. 10:29:15:449 INFO 8784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6c0dcf41-5da1-4eaf-8e61-cf3380c70b0b] Server check success, currentServer is 192.168.110.30:8848
  1010. 10:29:15:451 INFO 8784 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1011. 10:29:15:452 INFO 8784 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@68ecdca5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1012. 10:29:15:452 INFO 8784 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723084155469_192.168.110.13_65505
  1013. 10:29:15:452 INFO 8784 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7f869123[Running, pool size = 11, active threads = 0, queued tasks = 0, completed tasks = 60]
  1014. 10:29:20:417 INFO 18824 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1015. 10:29:20:895 WARN 18824 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1016. 10:29:20:944 INFO 18824 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3ef8f087-44e2-32ef-901d-8324d10ea845
  1017. 10:29:21:155 INFO 18824 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1018. 10:29:21:161 INFO 18824 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1019. 10:29:21:162 INFO 18824 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1020. 10:29:21:234 INFO 18824 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1021. 10:29:21:234 INFO 18824 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 809 ms
  1022. 10:29:22:073 INFO 18824 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1023. 10:29:22:418 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 2f61cbef-e16e-4784-ac4d-495113c88245
  1024. 10:29:22:418 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] RpcClient init label, labels = {module=naming, source=sdk}
  1025. 10:29:22:419 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1026. 10:29:22:420 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1027. 10:29:22:420 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1028. 10:29:22:420 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1029. 10:29:22:546 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723084162665_192.168.110.13_49194
  1030. 10:29:22:547 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1031. 10:29:22:547 INFO 18824 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Notify connected event to listeners.
  1032. 10:29:22:549 INFO 18824 --- [main] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1033. 10:29:22:588 INFO 18824 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1034. 10:29:22:594 INFO 18824 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1035. 10:29:22:735 INFO 18824 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1036. 10:29:22:737 INFO 18824 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1037. 10:29:22:753 INFO 18824 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1038. 10:29:22:795 INFO 18824 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.464 seconds (JVM running for 5.067)
  1039. 10:29:22:798 INFO 18824 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1040. 10:29:22:800 INFO 18824 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1041. 10:29:23:110 INFO 18824 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Receive server push request, request = NotifySubscriberRequest, requestId = 258
  1042. 10:29:23:119 INFO 18824 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [2f61cbef-e16e-4784-ac4d-495113c88245] Ack server push request, request = NotifySubscriberRequest, requestId = 258
  1043. 10:29:30:326 INFO 18824 --- [http-nio-8086-exec-2] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  1044. Note: further occurrences of this error will be logged at DEBUG level.
  1045. 10:29:30:333 INFO 18824 --- [http-nio-8086-exec-2] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  1046. 10:29:30:333 INFO 18824 --- [http-nio-8086-exec-2] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  1047. 10:29:30:334 INFO 18824 --- [http-nio-8086-exec-2] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  1048. 10:29:30:610 INFO 18824 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDo37QU9ZWE+hj3DEtJW1NzD9SIEAsX62BfZi82e2Lt7stle/4rbFqQ9uKrNnZIB2oMVL81gfv4/nvbraljMdBC6KYLqonlMJiWygOavbihSPRUf/utsw7TY/1TeL6ThEsPpqEEnnFbU0lKt3LZg1gVzEGbYE14YguuSf/FTk2a5wIDAQAB
  1049. 10:29:30:706 INFO 18824 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:VyK0M0YPa0jQcHm14b1WX2AaIRRozxOm","refresh_token":"yczFQPWFZCBJM3yl6B3hzf0PPUIOK0Cc","magicId":"cC0KOIUPP0fzh3B6ly3MJBCZFWPQFzcy","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1050. 11:20:55:540 INFO 18824 --- [http-nio-8086-exec-3] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCy/C8V5cGqkpSi+24x51vy13x9wOEON61VwgDh1NzpffYFRt3aahq6y0NiSF/lbaWVF7uSebH4NvuQAFWb/tF2GTXNxYSxOm1pShfy63QIQsHQYEyykrdvPaxZZXApWHaPhYj0pAvawAW2v5UgC7Sdtg/GYWc8D8X3TqhDbR5mnwIDAQAB
  1051. 11:20:55:648 INFO 18824 --- [http-nio-8086-exec-3] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:5oTkzxGImp77ITTuG6Rk6tAdtRcEeyDa","refresh_token":"yXMsVa6eKDR8485QYIUYjb6uD2ybHKKH","magicId":"HKKHby2Du6bjYUIYQ5848RDKe6aVsMXy","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1052. 11:21:45:195 INFO 18824 --- [http-nio-8086-exec-4] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCsLtVhf14FOcZPNY2o8lbdjGuZgMXRFZg81quYCokRhtbbgL6v3kPPe6jouWvPQpDeGzF9VTVEyO6wi2PBCo5AzMNSz9A89R8iJlMLAoa/CVQjL0PQeEb4TW08Hvas+tBltL58hm/yJq6zhYKq8uJpXOmLx82zWj9Tt/EP+YpbqQIDAQAB
  1053. 11:21:45:285 INFO 18824 --- [http-nio-8086-exec-4] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:grpJT1lLwmu4o3kHrC2QpytnpSeGuL0F","refresh_token":"zwf3auXtd9k8Th1sXIT3IcvGksIbd5Dh","magicId":"hD5dbIskGvcI3TIXs1hT8k9dtXua3fwz","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1054. 14:08:28:570 INFO 18824 --- [http-nio-8086-exec-6] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCpfG18E08Ci0yB0GD+K5sy0Jrdywnfp3i8bk5ejivbGOJbrDpzflTc/jk2wdo+YbAqKnFctQY2MWYbTPQtnFMDsXxrC6/h/0SjyAn8psopk5sUZV8eW3ZUDNPsNpQ0sNIeE46fBuj/iNkJftEO3t+BnUoAUpYiwUmZtTfnmg2usQIDAQAB
  1055. 14:08:28:636 INFO 18824 --- [http-nio-8086-exec-6] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:FM171DI4ZNBoW9qCH0Pel31uintWxIJ2","refresh_token":"y4rQTXaRbTykvoZW5QhAXpAWs5ONNaLA","magicId":"ALaNNO5sWApXAhQ5WZovkyTbRaXTQr4y","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1056. 14:15:16:040 WARN 18824 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1057. 14:15:16:040 WARN 18824 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1058. 14:15:16:042 WARN 18824 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1059. 14:15:16:042 WARN 18824 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1060. 14:15:16:176 INFO 18824 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1061. 14:15:16:178 INFO 18824 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1062. 14:15:16:504 INFO 18824 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1063. 14:15:16:504 INFO 18824 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f01826[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1064. 14:15:16:504 INFO 18824 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723084162665_192.168.110.13_49194
  1065. 14:15:16:506 INFO 18824 --- [nacos-grpc-client-executor-2713] c.a.n.c.remote.client.grpc.GrpcClient : [1723084162665_192.168.110.13_49194]Ignore complete event,isRunning:false,isAbandon=false
  1066. 14:15:16:506 INFO 18824 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@64bfd758[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 2714]
  1067. 14:24:56:264 INFO 12836 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1068. 14:24:56:763 WARN 12836 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1069. 14:24:56:804 INFO 12836 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=6e60e606-cccb-320c-ba59-37d74e9a618c
  1070. 14:24:56:976 INFO 12836 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1071. 14:24:56:981 INFO 12836 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1072. 14:24:56:981 INFO 12836 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1073. 14:24:57:066 INFO 12836 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1074. 14:24:57:066 INFO 12836 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 795 ms
  1075. 14:24:57:907 INFO 12836 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1076. 14:24:58:200 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of ee5cd809-368e-4671-819c-51eaa1d55018
  1077. 14:24:58:200 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] RpcClient init label, labels = {module=naming, source=sdk}
  1078. 14:24:58:201 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1079. 14:24:58:201 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1080. 14:24:58:201 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1081. 14:24:58:201 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1082. 14:24:58:329 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723098298643_192.168.110.13_61088
  1083. 14:24:58:333 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1084. 14:24:58:333 INFO 12836 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Notify connected event to listeners.
  1085. 14:24:58:334 INFO 12836 --- [main] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  1086. 14:24:58:373 INFO 12836 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1087. 14:24:58:379 INFO 12836 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1088. 14:24:58:513 INFO 12836 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1089. 14:24:58:515 INFO 12836 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1090. 14:24:58:527 INFO 12836 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1091. 14:24:58:564 INFO 12836 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.599 seconds (JVM running for 5.22)
  1092. 14:24:58:568 INFO 12836 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1093. 14:24:58:577 INFO 12836 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1094. 14:24:58:894 INFO 12836 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Receive server push request, request = NotifySubscriberRequest, requestId = 261
  1095. 14:24:58:910 INFO 12836 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [ee5cd809-368e-4671-819c-51eaa1d55018] Ack server push request, request = NotifySubscriberRequest, requestId = 261
  1096. 14:25:10:257 INFO 12836 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  1097. Note: further occurrences of this error will be logged at DEBUG level.
  1098. 14:25:10:262 INFO 12836 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  1099. 14:25:10:262 INFO 12836 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  1100. 14:25:10:263 INFO 12836 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  1101. 14:25:10:552 INFO 12836 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCgcTSHSutfHXsmWGVmyQI2VsSWZXMy8ri6qjcXVevb12cb8G3w+EU9yJ9UUwLmNfOga26M1sqUoY1WU2S1/fvN44RupfisJORpeTGnc5U91eJ14xuvUNYCDz7wXSgPGOyMrCGxdOgeP8LLJ+0/6r83Ot5LaS7OU+G4sDAOKpdZPwIDAQAB
  1102. 14:25:10:669 INFO 12836 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:DkodKk6rWKPIaqlJWApsHShznK3ZcvYg","refresh_token":"B3EyqCKN3RkGDXIVsLJVyfkrUrzAgSoH","magicId":"HoSgAzrUrkfyVJLsVIXDGkR3NKCqyE3B","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1103. 14:26:25:590 WARN 12836 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1104. 14:26:25:592 WARN 12836 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1105. 14:26:25:591 WARN 12836 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1106. 14:26:25:594 WARN 12836 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1107. 14:26:25:719 INFO 12836 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1108. 14:26:25:722 INFO 12836 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1109. 14:26:26:057 INFO 12836 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1110. 14:26:26:058 INFO 12836 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@397bf30c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1111. 14:26:26:060 INFO 12836 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723098298643_192.168.110.13_61088
  1112. 14:26:26:065 INFO 12836 --- [nacos-grpc-client-executor-30] c.a.n.c.remote.client.grpc.GrpcClient : [1723098298643_192.168.110.13_61088]Ignore complete event,isRunning:false,isAbandon=false
  1113. 14:26:26:067 INFO 12836 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3c23cafa[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 31]
  1114. 14:26:30:746 INFO 22776 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1115. 14:26:31:220 WARN 22776 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1116. 14:26:31:262 INFO 22776 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=1c21a840-2b47-3213-a629-25f6c7c7bc0f
  1117. 14:26:31:442 INFO 22776 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1118. 14:26:31:447 INFO 22776 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1119. 14:26:31:447 INFO 22776 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1120. 14:26:31:523 INFO 22776 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1121. 14:26:31:523 INFO 22776 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 768 ms
  1122. 14:26:32:431 INFO 22776 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1123. 14:26:32:707 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 814f056a-7532-45d8-8f13-6769ac71aa2f
  1124. 14:26:32:707 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] RpcClient init label, labels = {module=naming, source=sdk}
  1125. 14:26:32:708 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1126. 14:26:32:709 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1127. 14:26:32:709 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1128. 14:26:32:709 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1129. 14:26:32:827 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723098393151_192.168.110.13_61319
  1130. 14:26:32:828 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1131. 14:26:32:828 INFO 22776 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Notify connected event to listeners.
  1132. 14:26:32:829 INFO 22776 --- [main] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1133. 14:26:32:864 INFO 22776 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1134. 14:26:32:869 INFO 22776 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1135. 14:26:33:004 INFO 22776 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1136. 14:26:33:006 INFO 22776 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1137. 14:26:33:020 INFO 22776 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1138. 14:26:33:057 INFO 22776 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.241 seconds (JVM running for 4.763)
  1139. 14:26:33:060 INFO 22776 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1140. 14:26:33:061 INFO 22776 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1141. 14:26:33:402 INFO 22776 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Receive server push request, request = NotifySubscriberRequest, requestId = 264
  1142. 14:26:33:409 INFO 22776 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [814f056a-7532-45d8-8f13-6769ac71aa2f] Ack server push request, request = NotifySubscriberRequest, requestId = 264
  1143. 14:26:35:310 INFO 22776 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  1144. Note: further occurrences of this error will be logged at DEBUG level.
  1145. 14:26:35:314 INFO 22776 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  1146. 14:26:35:314 INFO 22776 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  1147. 14:26:35:315 INFO 22776 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  1148. 14:26:35:540 INFO 22776 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDLJKhc/hCF9uongzeBJxbfRxHyW6whev+Dnf6M0wM+DjXfgixjZ5UvqVpO0bJT1E7vYEdMXsHTYKyQbviScApvnknAi+QKhJE7sd/ChVcuRKiYYG2tYKvt9jK5qBzoATtUJDMwg+gkwdGBSoCuc/QUjSQ1mx73RhqdT5QLsdeVRwIDAQAB
  1149. 14:26:35:615 INFO 22776 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:iZXSH0KtA16DcuUz1VVX4VJ4mRH9nfmY","refresh_token":"51rMhx55zfkZIGJFjDPAzS1jpUM4lMgY","magicId":"YgMl4MUpj1SzAPDjFJGIZkfz55xhMr15","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1150. 14:26:38:687 INFO 22776 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6mw6ALaZmnX5fd1HODkR9Xl+QX5b22JxdR40airHyQ0ny8jBMWxe8bXdq7xrmB9mRbygZY37xadJOsGb/ieOkNi1FF8icrMvN3PpKTeH/ltAElT147VXS3d60S8UK6a9ipS/h4vEqBZ9DjsmO3avDZMEAM1zOAYmPVB2HdAa3KwIDAQAB
  1151. 14:26:38:754 INFO 22776 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:lBjapZKN3gI0EBIpVmUWlTHNt1QPSPcj","refresh_token":"A4MFXeKgGJwrMKPK1xNJ5XPlbuzAH94V","magicId":"V49HAzublPX5JNx1KPKMrwJGgKeXFM4A","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1152. 14:26:40:117 INFO 22776 --- [http-nio-8086-exec-4] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVpgkJURPbCcIMjPvHoG4uZk2DGPs94r4F9RBj40GNQR8aU7t14rLso+UX8affs++TFOh+cyJSmc9W5dYvFwVLbffaqFm84s3Lm5DaSdUV689qeoFQOoR7xqXwde8fVVkAVGr5S05hxZoXxlypiMrsFl/Qw8zkxiZAQW0rH8eijwIDAQAB
  1153. 14:26:40:188 INFO 22776 --- [http-nio-8086-exec-4] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:rNJvxxX506ZFKs7jI87Hfm7KpnYZjmpv","refresh_token":"HFlnPNmOkCnD9ASan4eSuvIYX9oDl3sf","magicId":"fs3lDo9XYIvuSe4naSA9DnCkOmNPnlFH","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1154. 14:26:40:591 INFO 22776 --- [http-nio-8086-exec-6] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAXBOB/wPuD7o7JeYTeRVPMX8G02VsO+3A5QdQlR+w/ePzVkbve82mcrtBtkFz7LY81q+hnIs1V6y67wuzR6gjjJbBUiD2sk0yjGIpjVOJiAcOM0SjKfjqgZGJZXoBn7cgLCot64r/6142CfucHZPwfTMjFP10Ws8ww1nDEdo+fwIDAQAB
  1155. 14:26:40:662 INFO 22776 --- [http-nio-8086-exec-6] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:EU9tIfEX2FgCKQ3DumKwb276grA3vbSA","refresh_token":"YSkN6rBpoebK4DBiYPD0e7ReXb5fOzvx","magicId":"xvzOf5bXeR7e0DPYiBD4KbeopBr6NkSY","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1156. 14:26:40:755 INFO 22776 --- [http-nio-8086-exec-5] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCHJQByA5xazzyLr4Z4f2K4wOEBWlTcggb5pHxovswbRxulZ7/7tJCbTXFlir7Ph2KzeOd8fVakT/8HXS8Tql1ZM2NJ7sF6lXo88C1HYrE5rgVwYy16/Afm8SYMTg9vUIyol7PgJ91l7v59Zjn0LDA8chEEuybYK4ler1Z5bhCOMQIDAQAB
  1157. 14:26:40:819 INFO 22776 --- [http-nio-8086-exec-5] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:bsw0GThrkB7CpxpeFia589ozRDhM8TA6","refresh_token":"U5ASFFWQPFwymxjQd7AkNVn3kZoZFliK","magicId":"KilFZoZk3nVNkA7dQjxmywFPQWFFSA5U","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1158. 14:26:40:942 INFO 22776 --- [http-nio-8086-exec-3] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5SJQCtd8FcIzKdQ5Hv/Ljq9N4YXnh/OZWb5PyDDL08ENRp1V1z6wkfn/WoMjEp86/0ND0Vgr2v4bY2tMp9/ZX7ULDJcHyEad4RjwGWTY/EOkCZWIl8h6jPqlRB77VrHUmN4+Kwj8LBNid4CDhMb4yOvP8FhGEdaJ7qkA/uSvR9wIDAQAB
  1159. 14:26:41:002 INFO 22776 --- [http-nio-8086-exec-3] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:KtnyC11djXKE2xYCwJzTPpEV2hxx13X7","refresh_token":"pTemcLT3K26qiRztUKbumjE2WVpaoDEn","magicId":"nEDoapVW2EjmubKUtzRiq62K3TLcmeTp","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1160. 14:26:41:096 INFO 22776 --- [http-nio-8086-exec-7] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC0IqCNfjktnbhWMZtvDRkiyj5883yzoZf3dIw4B66xu/CuUNErAfmPzeL2VCuQc/omESx1FRJkUfRF7W3zeTEVhraxzY0eNfy4sJCiO8uFWwNtmlRzw90yAl4aurtob5egO7ha+nUlEDgj8fuw2bUJCZAK2W4AN404WWT9gRgNlQIDAQAB
  1161. 14:26:41:161 INFO 22776 --- [http-nio-8086-exec-7] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:UidmGUo4bDv2uFMsNW9JQCNPKbApJ9lD","refresh_token":"XOwx1E2RwgvcDQrhT0chEIr1m3vgDdqU","magicId":"UqdDgv3m1rIEhc0ThrQDcvgwR2E1xwOX","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1162. 14:26:41:262 INFO 22776 --- [http-nio-8086-exec-8] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnEJVrU0OfH3C4rTlNFMosRQioqSF1JOutvCOtqWOks7vDoC2o+qrWINDOiXbvboBFp64Ih0lINMIY7BLBpVVvEdnO8k7AA/GbQcIa/bVD0BmHUr3dfYO1XBZk7d0iECZpQkuJLpObd+4HPBrn/aTncvYLIjWPJyQGiMb+8WZq9wIDAQAB
  1163. 14:26:41:318 INFO 22776 --- [http-nio-8086-exec-8] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:q3VSwCGrbqZiZhdQxQFBTSLoS3YT5pbw","refresh_token":"j6OCdesPGL9DWNgWuEuOtkPNfcgaafYe","magicId":"eYfaagcfNPktOuEuWgNWD9LGPsedCO6j","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1164. 14:26:41:457 INFO 22776 --- [http-nio-8086-exec-9] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDhhxVp4rD7v+qmMrqUSbwffqSKWR5AxvjLGIUSRyuKVDdidAx49oBghhO+YXZNDzbjABAe45P4Cu+CGR4IDzzMwQEOsL1LEAs0bN3CJEqDWT2BHIX5UjWFmqZcr0WONprrkTRckZMKTBZQqh8QUyaTREMc+NpPjXgFbr/FAtPCfwIDAQAB
  1165. 14:26:41:528 INFO 22776 --- [http-nio-8086-exec-9] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:93eBCC9x192RbwsDvAEhOD9lX1jcUJXw","refresh_token":"7oeauw8epfCIjU9kpi4HN4g6sUvAFwPS","magicId":"SPwFAvUs6g4NH4ipk9UjICfpe8wuaeo7","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1166. 14:26:41:617 INFO 22776 --- [http-nio-8086-exec-10] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCKNSn1ewCGjYBRqNqQoEj3KAQnzkoZ3EItas6wxgBtF0FIFhxwKP0l0e/9sFGX5q3hd4HEDMz8ZHMxigIuKZsYsWRCN+KgW4DxLSMdU0iLjikoNi37LPetM0Q612cpxOgkHNkUlJhmsyRTue2Bh2JXnNs492tP6Y9jBsoOrsv6OQIDAQAB
  1167. 14:26:41:668 INFO 22776 --- [http-nio-8086-exec-10] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:jzh3NHUwSgzNhfsKT3Ki2BurIRRnzqtF","refresh_token":"ycL732GSbgIFJp5EHiS11haLvyI3TEQ4","magicId":"4QET3IyvLah11SiHE5pJFIgbSG237Lcy","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1168. 14:26:41:874 INFO 22776 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2vGgw4aKBB27lkqcMXvG90Yf5SZqXvH8K7ehbFqxpuVdo0IsXmRHAd+xcATimEKKknIavA+6oVj9BLGGFwy+IY9c1NHoYH8IryMdDR9ND55VCI0DvaFWwWFjqpgxwih8cxZMc1xtFI15I2ma4hrb03qyIP1CfhszkozTtG8dUtQIDAQAB
  1169. 14:26:41:940 INFO 22776 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:yXdv81OEM2jUobhruhdFHsQGg8tgNA7a","refresh_token":"5bfNafYFItw62WAlwvfkMYA3GepXKFvN","magicId":"NvFKXpeG3AYMkfvwlAW26wtIFYfaNfb5","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1170. 14:26:41:995 INFO 22776 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDGBXso62+hCpY/a6D2eND/dwaY4Utx4Q2UXKY06EvVRLQXiApadQKcj8oeHLn1XNMSzu/R2P7JUNql0RAm2iSkoSVuu1gd5ry6qOLA0IlDgEMyogVD7YOpiRtNpyxDdGRx6nCJP7F/DgzR3awQqNPmeZ/kOodD24Mbg2LaXLpxmwIDAQAB
  1171. 14:26:42:061 INFO 22776 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:ugsoGu1QL2ptV8gmoeZMq0u121AE7ax3","refresh_token":"3CXS0PbT6i6BuH1vNS7bnIBloma3p4tx","magicId":"xt4p3amolBInb7SNv1HuB6i6TbP0SXC3","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1172. 14:26:42:185 INFO 22776 --- [http-nio-8086-exec-4] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCu+C3fAFov3XOJljv67VEFHCYM9NGQF9WxB4sZLV6CKwASNRLlq0090dpsSdFex6Nd1j5T/j65Uqr1giZXwqoip3/0Zj+QCv2WxAKHsye1DU+aLkFO/QKL7bycejmLBeYzI4FZRB4v9kbd6aPEJao3Oz+3w7yxbkTXLlFLf195uQIDAQAB
  1173. 14:26:42:244 INFO 22776 --- [http-nio-8086-exec-4] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:4kIXtHaVAg6vzfYXJwMnxNBh5pr0ahNI","refresh_token":"kOqxvEBGLrvImJOdeeeTuKMFN6BZSkNu","magicId":"uNkSZB6NFMKuTeeedOJmIvrLGBEvxqOk","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1174. 14:26:42:337 INFO 22776 --- [http-nio-8086-exec-6] c.z.v.c.VisualizationController : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCsI77kg8MOcAculec3h/NGYRlzpsTUyeT/9MVo2mB+3KdzXjpER/VALf2Cyk2ybNZEN0rmak25sRna5A3cdZbHiToovLyjHFeTzDDqaWs3UD98WpI3yMkyVq24o4pBORE/3aXAqGiOFElZ39xM8q1Eqa34O0RLJMqrndPZJj9twQIDAQAB
  1175. 14:26:42:403 INFO 22776 --- [http-nio-8086-exec-6] c.z.v.c.VisualizationController : Response Body: {"success":true,"data":{"access_token":"1:9H0oq6BUsgZeIL3ParexrGgz7Ws4myop","refresh_token":"0ff3NQ6Sie7I53NroDbk9C5kLffUVtRK","magicId":"KRtVUffLk5C9kbDorN35I7eiS6QN3ff0","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1176. 14:31:26:581 WARN 22776 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1177. 14:31:26:581 WARN 22776 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1178. 14:31:26:581 WARN 22776 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1179. 14:31:26:583 WARN 22776 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1180. 14:31:26:705 INFO 22776 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1181. 14:31:26:709 INFO 22776 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1182. 14:31:27:036 INFO 22776 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1183. 14:31:27:036 INFO 22776 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4b601ca1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1184. 14:31:27:036 INFO 22776 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723098393151_192.168.110.13_61319
  1185. 14:31:27:037 INFO 22776 --- [nacos-grpc-client-executor-69] c.a.n.c.remote.client.grpc.GrpcClient : [1723098393151_192.168.110.13_61319]Ignore complete event,isRunning:false,isAbandon=false
  1186. 14:31:27:040 INFO 22776 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3ed00b57[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 70]
  1187. 14:31:45:127 INFO 14084 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1188. 14:31:45:591 WARN 14084 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1189. 14:31:45:631 INFO 14084 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1190. 14:31:45:806 INFO 14084 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1191. 14:31:45:811 INFO 14084 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1192. 14:31:45:811 INFO 14084 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1193. 14:31:45:880 INFO 14084 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1194. 14:31:45:880 INFO 14084 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 745 ms
  1195. 14:31:46:751 INFO 14084 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1196. 14:31:47:026 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2
  1197. 14:31:47:026 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] RpcClient init label, labels = {module=naming, source=sdk}
  1198. 14:31:47:027 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1199. 14:31:47:028 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1200. 14:31:47:028 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1201. 14:31:47:028 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1202. 14:31:47:146 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723098707475_192.168.110.13_61956
  1203. 14:31:47:146 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1204. 14:31:47:146 INFO 14084 --- [main] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1205. 14:31:47:146 INFO 14084 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Notify connected event to listeners.
  1206. 14:31:47:181 INFO 14084 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1207. 14:31:47:187 INFO 14084 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1208. 14:31:47:323 INFO 14084 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1209. 14:31:47:325 INFO 14084 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1210. 14:31:47:340 INFO 14084 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1211. 14:31:47:377 INFO 14084 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.172 seconds (JVM running for 4.671)
  1212. 14:31:47:380 INFO 14084 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1213. 14:31:47:381 INFO 14084 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1214. 14:31:47:697 INFO 14084 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Receive server push request, request = NotifySubscriberRequest, requestId = 266
  1215. 14:31:47:703 INFO 14084 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [a5c4d3b9-a476-4cea-82d8-f5d8ea3b3af2] Ack server push request, request = NotifySubscriberRequest, requestId = 266
  1216. 14:31:50:189 INFO 14084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCpgtvMrNYv6snChMW4q1H8NOBsPL+J8Tr55Ru3V9EBV5nck0lup7qqeHMo5QHPkvu0MICaARnA1rnQPLESUhHMdhmFYxcXeEXplkippnb02WX7OtTVvKUQKGpjGOwm6w910byy4PmMLV2NN4RBAcm0qU9E31KD2FEkMRkxTQZBzQIDAQAB
  1217. 14:31:55:041 INFO 14084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEhbGRMMMPLhl134RVucFhiqA2ZfojFNCTzYdjzepYUKpn28Co7WS8ULgDVSsB6RBjyo003WLiD/Jv155oXC2Eqre/C43mkstS9hI1Uaw3eu40adVynAjig3kmR1YRA6Hpe2CnHQgyOZBNOrhBUJ4uPDY80+QVe2vzQRgqexRziQIDAQAB
  1218. 14:32:00:037 INFO 14084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDKrXBKac/mLJqAkJ3vWT3s0SdfO0u1u9/VlTdkm2mVOusGLkyi0pTD5iFVNOMRYQSjwzxiqtir+16uSB8P9VQqJgsP6Vy6gAuOgNQ2uaVzKm6ol2+jMT7Ylze99h9SxLtEIqPe//UyFbdAWDL+g0uYB/fcVHQNFsI1OSF3DTinrwIDAQAB
  1219. 14:32:05:038 INFO 14084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD1iauuCuVBrxHtPSX/oq0sVIEb4qgeydl9Ys9FtuDno89GekqrpGsVspM8ZhPPxPHoyfFPjUXN7nWSpUXKtIA7Wb8vQzvs9fXGQ/YMGcWgd/Tj9xPumwimz7AoSkk41yYGokNgU3NZN7QcuKXRu4Iln4crchJ5Jsd7bzPFkgArHQIDAQAB
  1220. 14:32:10:046 INFO 14084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDycyhAHsGsrlkr0bX+7KkyXIilVOnat+rZeKHE80BamGR+MIW12GIdfwAWyLCVnLcAGjaPUDLdBQs+2ArSe+2kyKCwU8Y+qGdj9I/4MsPmsFf4S9zMc9Nj9rxtYSqNnOPDd3BAXowpqkWST8fEQZqX7FY85OzrHKXWQIY+3gMFlwIDAQAB
  1221. 14:32:15:047 INFO 14084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMKheV2DAHN3mmwWWlTcXyT7IvEWSMSbyfscIWq6BbbprSuJmgKnFX/2CBIclnk2wAlMKNQ4AHd8dl973puyUsTBFzq0R3vVNTluXdiSpf5BE4432IQoFUSNzHNBKVZ5hPBvjl8XUOTD7FOOyULZkVol6CJiAtVJNLXukj+IFb4QIDAQAB
  1222. 14:32:15:885 WARN 14084 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1223. 14:32:15:885 WARN 14084 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1224. 14:32:15:885 WARN 14084 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1225. 14:32:15:885 WARN 14084 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1226. 14:32:15:994 INFO 14084 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1227. 14:32:15:997 INFO 14084 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1228. 14:32:16:321 INFO 14084 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1229. 14:32:16:321 INFO 14084 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@58f6051e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1230. 14:32:16:321 INFO 14084 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723098707475_192.168.110.13_61956
  1231. 14:32:16:325 INFO 14084 --- [nacos-grpc-client-executor-18] c.a.n.c.remote.client.grpc.GrpcClient : [1723098707475_192.168.110.13_61956]Ignore complete event,isRunning:false,isAbandon=false
  1232. 14:32:16:327 INFO 14084 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@35c25e52[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 19]
  1233. 14:33:30:572 INFO 6680 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1234. 14:33:31:003 WARN 6680 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1235. 14:33:31:043 INFO 6680 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1236. 14:33:31:213 INFO 6680 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1237. 14:33:31:221 INFO 6680 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1238. 14:33:31:221 INFO 6680 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1239. 14:33:31:304 INFO 6680 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1240. 14:33:31:304 INFO 6680 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 724 ms
  1241. 14:33:31:650 INFO 6680 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCb8OGk3ucZj93b34gP+Mj8VcRh7Yz0aOTvC1hspoLuzy9NlV2/i2qT8Kl1N2ykhVRWpTytIG9+r1tpxFtku/3ljP8q68QxH2r5wkeDAECJbeP9Xo5mIAWO/cf56rnsfnDYkgKPkJ6pbf9g+wLhkrrmMqkxhRcRNtZkq15WoAOk8QIDAQAB
  1242. 14:33:32:398 INFO 6680 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1243. 14:33:32:646 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 5f860086-34ba-4f6b-bc6c-d9ba7b9a3830
  1244. 14:33:32:646 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] RpcClient init label, labels = {module=naming, source=sdk}
  1245. 14:33:32:647 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1246. 14:33:32:647 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1247. 14:33:32:648 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1248. 14:33:32:648 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1249. 14:33:32:774 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723098813097_192.168.110.13_62222
  1250. 14:33:32:774 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1251. 14:33:32:774 INFO 6680 --- [main] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b440
  1252. 14:33:32:774 INFO 6680 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Notify connected event to listeners.
  1253. 14:33:32:810 INFO 6680 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1254. 14:33:32:817 INFO 6680 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1255. 14:33:32:952 INFO 6680 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1256. 14:33:32:955 INFO 6680 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1257. 14:33:32:969 INFO 6680 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1258. 14:33:33:006 INFO 6680 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.372 seconds (JVM running for 4.88)
  1259. 14:33:33:009 INFO 6680 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1260. 14:33:33:011 INFO 6680 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1261. 14:33:33:348 INFO 6680 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Receive server push request, request = NotifySubscriberRequest, requestId = 270
  1262. 14:33:33:357 INFO 6680 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [5f860086-34ba-4f6b-bc6c-d9ba7b9a3830] Ack server push request, request = NotifySubscriberRequest, requestId = 270
  1263. 14:35:50:438 WARN 6680 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1264. 14:35:50:438 WARN 6680 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1265. 14:35:50:439 WARN 6680 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1266. 14:35:50:439 WARN 6680 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1267. 14:35:50:555 INFO 6680 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1268. 14:35:50:558 INFO 6680 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1269. 14:35:50:887 INFO 6680 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1270. 14:35:50:887 INFO 6680 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5a1a4883[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1271. 14:35:50:887 INFO 6680 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723098813097_192.168.110.13_62222
  1272. 14:35:50:889 INFO 6680 --- [nacos-grpc-client-executor-38] c.a.n.c.remote.client.grpc.GrpcClient : [1723098813097_192.168.110.13_62222]Ignore complete event,isRunning:false,isAbandon=false
  1273. 14:35:50:891 INFO 6680 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1d17b66c[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 39]
  1274. 14:35:55:551 INFO 15008 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1275. 14:35:56:005 WARN 15008 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1276. 14:35:56:046 INFO 15008 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1277. 14:35:56:220 INFO 15008 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1278. 14:35:56:228 INFO 15008 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1279. 14:35:56:228 INFO 15008 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1280. 14:35:56:315 INFO 15008 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1281. 14:35:56:315 INFO 15008 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 756 ms
  1282. 14:35:56:462 ERROR 15008 --- [main] c.z.v.schedule.ScheduledTasks : 信息: {}
  1283. java.lang.ArithmeticException: / by zero
  1284. at com.zksy.visualization.schedule.ScheduledTasks.getPublicKey(ScheduledTasks.java:51) ~[classes/:na]
  1285. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:30) ~[classes/:na]
  1286. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1287. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1288. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1289. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1290. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1291. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1292. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1293. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1294. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1295. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1296. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1297. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1298. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1299. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1300. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1301. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1302. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1303. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1304. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1305. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1306. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1307. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1308. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1309. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1310. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1311. 14:35:56:462 INFO 15008 --- [main] c.z.v.schedule.ScheduledTasks : Public Key:
  1312. 14:35:57:243 INFO 15008 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1313. 14:35:57:503 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of c5d6de47-0c99-4fd2-adef-2f5e6c03afde
  1314. 14:35:57:503 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] RpcClient init label, labels = {module=naming, source=sdk}
  1315. 14:35:57:504 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1316. 14:35:57:504 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1317. 14:35:57:505 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1318. 14:35:57:505 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1319. 14:35:57:622 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723098957954_192.168.110.13_62541
  1320. 14:35:57:622 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1321. 14:35:57:622 INFO 15008 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Notify connected event to listeners.
  1322. 14:35:57:623 INFO 15008 --- [main] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1323. 14:35:57:660 INFO 15008 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1324. 14:35:57:666 INFO 15008 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1325. 14:35:57:806 INFO 15008 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1326. 14:35:57:811 INFO 15008 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1327. 14:35:57:826 INFO 15008 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1328. 14:35:57:864 INFO 15008 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.26 seconds (JVM running for 4.771)
  1329. 14:35:57:868 INFO 15008 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1330. 14:35:57:869 INFO 15008 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1331. 14:35:58:227 INFO 15008 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Receive server push request, request = NotifySubscriberRequest, requestId = 272
  1332. 14:35:58:234 INFO 15008 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [c5d6de47-0c99-4fd2-adef-2f5e6c03afde] Ack server push request, request = NotifySubscriberRequest, requestId = 272
  1333. 14:36:09:318 WARN 15008 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1334. 14:36:09:319 WARN 15008 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1335. 14:36:09:319 WARN 15008 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1336. 14:36:09:321 WARN 15008 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1337. 14:36:09:443 INFO 15008 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1338. 14:36:09:446 INFO 15008 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1339. 14:36:09:773 INFO 15008 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1340. 14:36:09:773 INFO 15008 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@524ef02c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1341. 14:36:09:774 INFO 15008 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723098957954_192.168.110.13_62541
  1342. 14:36:09:777 INFO 15008 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@78d6ced6[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 11]
  1343. 14:43:12:949 INFO 25536 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1344. 14:43:13:406 WARN 25536 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1345. 14:43:13:446 INFO 25536 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1346. 14:43:13:626 INFO 25536 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1347. 14:43:13:630 INFO 25536 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1348. 14:43:13:631 INFO 25536 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1349. 14:43:13:701 INFO 25536 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1350. 14:43:13:703 INFO 25536 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 743 ms
  1351. 14:43:14:030 INFO 25536 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCkdaW5HdFRML89hpzGxzTmwIJBWiliRM4wOy1puZFkv/XqJCYGiogKVEtH9eEewi49fo3cIEI2HhCVNyZEqqN+6jfHV+nMZdIQcDDKbK3VjXAlJ9B1R8f6zOgnqlT/jw2hpM9FJuNN6BNlGNnVCxB/tYFI/9JZjSf4vpQea3tKPQIDAQAB
  1352. 14:43:14:794 INFO 25536 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1353. 14:43:15:041 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of b5a7e48e-b53e-4842-bcae-104bdb7ee8d1
  1354. 14:43:15:041 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] RpcClient init label, labels = {module=naming, source=sdk}
  1355. 14:43:15:043 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1356. 14:43:15:043 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1357. 14:43:15:043 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1358. 14:43:15:043 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1359. 14:43:15:161 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723099395500_192.168.110.13_63416
  1360. 14:43:15:163 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1361. 14:43:15:163 INFO 25536 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Notify connected event to listeners.
  1362. 14:43:15:164 INFO 25536 --- [main] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041bc40
  1363. 14:43:15:201 INFO 25536 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1364. 14:43:15:208 INFO 25536 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1365. 14:43:15:341 INFO 25536 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1366. 14:43:15:344 INFO 25536 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1367. 14:43:15:358 INFO 25536 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1368. 14:43:15:396 INFO 25536 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.436 seconds (JVM running for 4.948)
  1369. 14:43:15:399 INFO 25536 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1370. 14:43:15:400 INFO 25536 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1371. 14:43:15:775 INFO 25536 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Receive server push request, request = NotifySubscriberRequest, requestId = 276
  1372. 14:43:15:781 INFO 25536 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [b5a7e48e-b53e-4842-bcae-104bdb7ee8d1] Ack server push request, request = NotifySubscriberRequest, requestId = 276
  1373. 14:48:16:256 WARN 25536 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1374. 14:48:16:256 WARN 25536 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1375. 14:48:16:257 WARN 25536 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1376. 14:48:16:257 WARN 25536 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1377. 14:48:16:368 INFO 25536 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1378. 14:48:16:371 INFO 25536 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1379. 14:48:16:704 INFO 25536 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1380. 14:48:16:704 INFO 25536 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5b7b5a9c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1381. 14:48:16:704 INFO 25536 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723099395500_192.168.110.13_63416
  1382. 14:48:16:706 INFO 25536 --- [nacos-grpc-client-executor-74] c.a.n.c.remote.client.grpc.GrpcClient : [1723099395500_192.168.110.13_63416]Ignore complete event,isRunning:false,isAbandon=false
  1383. 14:48:16:708 INFO 25536 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@e41e1fb[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 75]
  1384. 14:48:21:296 INFO 14284 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1385. 14:48:21:758 WARN 14284 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1386. 14:48:21:799 INFO 14284 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1387. 14:48:21:974 INFO 14284 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1388. 14:48:21:980 INFO 14284 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1389. 14:48:21:980 INFO 14284 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1390. 14:48:22:049 INFO 14284 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1391. 14:48:22:049 INFO 14284 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 746 ms
  1392. 14:48:32:213 ERROR 14284 --- [main] c.z.v.schedule.ScheduledTasks : 信息: {}
  1393. java.net.SocketTimeoutException: connect timed out
  1394. at java.base/java.net.PlainSocketImpl.waitForConnect(Native Method) ~[na:na]
  1395. at java.base/java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:107) ~[na:na]
  1396. at java.base/java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:412) ~[na:na]
  1397. at java.base/java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:255) ~[na:na]
  1398. at java.base/java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:237) ~[na:na]
  1399. at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:na]
  1400. at java.base/java.net.Socket.connect(Socket.java:609) ~[na:na]
  1401. at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128) ~[okhttp-4.9.3.jar:na]
  1402. at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.3.jar:na]
  1403. at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.3.jar:na]
  1404. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.3.jar:na]
  1405. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  1406. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  1407. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  1408. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  1409. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1410. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  1411. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1412. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  1413. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1414. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  1415. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1416. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  1417. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  1418. at com.zksy.visualization.schedule.ScheduledTasks.getPublicKey(ScheduledTasks.java:81) ~[classes/:na]
  1419. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:46) ~[classes/:na]
  1420. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:36) ~[classes/:na]
  1421. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1422. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1423. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1424. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1425. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1426. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1427. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1428. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1429. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1430. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1431. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1432. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1433. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1434. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1435. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1436. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1437. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1438. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1439. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1440. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1441. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1442. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1443. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1444. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1445. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1446. 14:48:32:215 WARN 14284 --- [main] c.z.v.schedule.ScheduledTasks : 公钥是空将于 5 秒后. 重试 1/3
  1447. 14:48:47:241 ERROR 14284 --- [main] c.z.v.schedule.ScheduledTasks : 信息: {}
  1448. java.net.SocketTimeoutException: connect timed out
  1449. at java.base/java.net.PlainSocketImpl.waitForConnect(Native Method) ~[na:na]
  1450. at java.base/java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:107) ~[na:na]
  1451. at java.base/java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:412) ~[na:na]
  1452. at java.base/java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:255) ~[na:na]
  1453. at java.base/java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:237) ~[na:na]
  1454. at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:na]
  1455. at java.base/java.net.Socket.connect(Socket.java:609) ~[na:na]
  1456. at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128) ~[okhttp-4.9.3.jar:na]
  1457. at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.3.jar:na]
  1458. at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.3.jar:na]
  1459. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.3.jar:na]
  1460. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  1461. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  1462. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  1463. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  1464. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1465. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  1466. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1467. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  1468. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1469. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  1470. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1471. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  1472. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  1473. at com.zksy.visualization.schedule.ScheduledTasks.getPublicKey(ScheduledTasks.java:81) ~[classes/:na]
  1474. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:46) ~[classes/:na]
  1475. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:36) ~[classes/:na]
  1476. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1477. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1478. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1479. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1480. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1481. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1482. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1483. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1484. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1485. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1486. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1487. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1488. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1489. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1490. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1491. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1492. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1493. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1494. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1495. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1496. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1497. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1498. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1499. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1500. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1501. 14:48:47:249 WARN 14284 --- [main] c.z.v.schedule.ScheduledTasks : 公钥是空将于 5 秒后. 重试 2/3
  1502. 14:49:02:262 ERROR 14284 --- [main] c.z.v.schedule.ScheduledTasks : 信息: {}
  1503. java.net.SocketTimeoutException: connect timed out
  1504. at java.base/java.net.PlainSocketImpl.waitForConnect(Native Method) ~[na:na]
  1505. at java.base/java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:107) ~[na:na]
  1506. at java.base/java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:412) ~[na:na]
  1507. at java.base/java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:255) ~[na:na]
  1508. at java.base/java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:237) ~[na:na]
  1509. at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:na]
  1510. at java.base/java.net.Socket.connect(Socket.java:609) ~[na:na]
  1511. at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128) ~[okhttp-4.9.3.jar:na]
  1512. at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.3.jar:na]
  1513. at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.3.jar:na]
  1514. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.3.jar:na]
  1515. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  1516. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  1517. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  1518. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  1519. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1520. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  1521. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1522. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  1523. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1524. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  1525. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1526. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  1527. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  1528. at com.zksy.visualization.schedule.ScheduledTasks.getPublicKey(ScheduledTasks.java:81) ~[classes/:na]
  1529. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:46) ~[classes/:na]
  1530. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:36) ~[classes/:na]
  1531. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1532. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1533. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1534. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1535. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1536. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1537. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1538. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1539. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1540. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1541. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1542. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1543. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1544. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1545. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1546. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1547. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1548. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1549. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1550. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1551. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1552. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1553. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1554. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1555. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1556. 14:49:02:265 WARN 14284 --- [main] c.z.v.schedule.ScheduledTasks : 公钥是空将于 5 秒后. 重试 3/3
  1557. 14:49:07:278 ERROR 14284 --- [main] c.z.v.schedule.ScheduledTasks : 获取公钥失败超过重试次数 3 .
  1558. 14:49:07:281 ERROR 14284 --- [main] c.z.v.schedule.ScheduledTasks : 获取公钥失败,终止应用程序
  1559. java.lang.RuntimeException: 获取公钥失败超过最大重试次数
  1560. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:61) ~[classes/:na]
  1561. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:36) ~[classes/:na]
  1562. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1563. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1564. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1565. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1566. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1567. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1568. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1569. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1570. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1571. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1572. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1573. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1574. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1575. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1576. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1577. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1578. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1579. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1580. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1581. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1582. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1583. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1584. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1585. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1586. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1587. 14:49:07:283 WARN 14284 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1588. 14:49:07:284 WARN 14284 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1589. 14:49:07:285 WARN 14284 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1590. 14:49:07:285 WARN 14284 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1591. 14:51:53:714 INFO 10784 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1592. 14:51:54:174 WARN 10784 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1593. 14:51:54:218 INFO 10784 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1594. 14:51:54:408 INFO 10784 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1595. 14:51:54:413 INFO 10784 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1596. 14:51:54:413 INFO 10784 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1597. 14:51:54:484 INFO 10784 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1598. 14:51:54:484 INFO 10784 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 763 ms
  1599. 14:51:54:787 INFO 10784 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCsrAYJrFXx5S05y0nhDHn/178vYQv9Ve1MEgjq33YAU+pRJtGE/KplKtcftsBdQohZ0JTMLQIIFsy0YLYK/0fFf7kJfiHTLOfAyFaMXAye7hnLjWB/06XinSHW+bAQ6rD+7rfmY1VMM6Ku+xmfDEEQFfwBWGl5wKaaAUaoKfDGgQIDAQAB
  1600. 14:51:55:549 INFO 10784 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1601. 14:51:55:803 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of bc141ff6-659f-49f2-8855-25c5bdd79855
  1602. 14:51:55:803 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] RpcClient init label, labels = {module=naming, source=sdk}
  1603. 14:51:55:804 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1604. 14:51:55:805 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1605. 14:51:55:805 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1606. 14:51:55:805 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1607. 14:51:55:928 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723099916269_192.168.110.13_64952
  1608. 14:51:55:929 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1609. 14:51:55:929 INFO 10784 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Notify connected event to listeners.
  1610. 14:51:55:931 INFO 10784 --- [main] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b440
  1611. 14:51:55:969 INFO 10784 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1612. 14:51:55:975 INFO 10784 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1613. 14:51:56:111 INFO 10784 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1614. 14:51:56:114 INFO 10784 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1615. 14:51:56:128 INFO 10784 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1616. 14:51:56:166 INFO 10784 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.395 seconds (JVM running for 4.917)
  1617. 14:51:56:169 INFO 10784 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1618. 14:51:56:171 INFO 10784 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1619. 14:51:56:505 INFO 10784 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Receive server push request, request = NotifySubscriberRequest, requestId = 279
  1620. 14:51:56:511 INFO 10784 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [bc141ff6-659f-49f2-8855-25c5bdd79855] Ack server push request, request = NotifySubscriberRequest, requestId = 279
  1621. 14:54:03:245 WARN 10784 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1622. 14:54:03:246 WARN 10784 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1623. 14:54:03:245 WARN 10784 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1624. 14:54:03:247 WARN 10784 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1625. 14:54:03:380 INFO 10784 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1626. 14:54:03:383 INFO 10784 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1627. 14:54:03:706 INFO 10784 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1628. 14:54:03:706 INFO 10784 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@55fe84dc[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1629. 14:54:03:706 INFO 10784 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723099916269_192.168.110.13_64952
  1630. 14:54:03:709 INFO 10784 --- [nacos-grpc-client-executor-37] c.a.n.c.remote.client.grpc.GrpcClient : [1723099916269_192.168.110.13_64952]Ignore complete event,isRunning:false,isAbandon=false
  1631. 14:54:03:712 INFO 10784 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@10451b24[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 38]
  1632. 14:54:08:469 INFO 19768 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1633. 14:54:08:827 WARN 19768 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1634. 14:54:08:828 WARN 19768 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1635. 14:54:08:828 WARN 19768 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1636. 14:54:08:829 WARN 19768 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1637. 14:54:08:934 WARN 19768 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1638. 14:54:15:011 INFO 5748 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1639. 14:54:15:483 WARN 5748 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1640. 14:54:15:524 INFO 5748 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1641. 14:54:15:701 INFO 5748 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1642. 14:54:15:707 INFO 5748 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1643. 14:54:15:707 INFO 5748 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1644. 14:54:15:777 INFO 5748 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1645. 14:54:15:777 INFO 5748 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 755 ms
  1646. 14:54:25:931 ERROR 5748 --- [main] c.z.v.schedule.ScheduledTasks : 信息: {}
  1647. java.net.SocketTimeoutException: connect timed out
  1648. at java.base/java.net.PlainSocketImpl.waitForConnect(Native Method) ~[na:na]
  1649. at java.base/java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:107) ~[na:na]
  1650. at java.base/java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:412) ~[na:na]
  1651. at java.base/java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:255) ~[na:na]
  1652. at java.base/java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:237) ~[na:na]
  1653. at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:na]
  1654. at java.base/java.net.Socket.connect(Socket.java:609) ~[na:na]
  1655. at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128) ~[okhttp-4.9.3.jar:na]
  1656. at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.3.jar:na]
  1657. at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.3.jar:na]
  1658. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.3.jar:na]
  1659. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  1660. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  1661. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  1662. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  1663. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1664. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  1665. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1666. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  1667. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1668. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  1669. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1670. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  1671. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  1672. at com.zksy.visualization.schedule.ScheduledTasks.getPublicKey(ScheduledTasks.java:82) ~[classes/:na]
  1673. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:47) ~[classes/:na]
  1674. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:37) ~[classes/:na]
  1675. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1676. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1677. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1678. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1679. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1680. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1681. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1682. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1683. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1684. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1685. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1686. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1687. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1688. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1689. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1690. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1691. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1692. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1693. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1694. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1695. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1696. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1697. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1698. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1699. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1700. 14:54:25:934 WARN 5748 --- [main] c.z.v.schedule.ScheduledTasks : 公钥获取失败将于 1 秒后. 重试 1/2
  1701. 14:54:36:942 ERROR 5748 --- [main] c.z.v.schedule.ScheduledTasks : 信息: {}
  1702. java.net.SocketTimeoutException: connect timed out
  1703. at java.base/java.net.PlainSocketImpl.waitForConnect(Native Method) ~[na:na]
  1704. at java.base/java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:107) ~[na:na]
  1705. at java.base/java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:412) ~[na:na]
  1706. at java.base/java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:255) ~[na:na]
  1707. at java.base/java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:237) ~[na:na]
  1708. at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:na]
  1709. at java.base/java.net.Socket.connect(Socket.java:609) ~[na:na]
  1710. at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128) ~[okhttp-4.9.3.jar:na]
  1711. at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.3.jar:na]
  1712. at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.3.jar:na]
  1713. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.3.jar:na]
  1714. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  1715. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  1716. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  1717. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  1718. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1719. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  1720. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1721. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  1722. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1723. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  1724. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  1725. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  1726. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  1727. at com.zksy.visualization.schedule.ScheduledTasks.getPublicKey(ScheduledTasks.java:82) ~[classes/:na]
  1728. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:47) ~[classes/:na]
  1729. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:37) ~[classes/:na]
  1730. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1731. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1732. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1733. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1734. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1735. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1736. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1737. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1738. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1739. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1740. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1741. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1742. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1743. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1744. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1745. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1746. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1747. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1748. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1749. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1750. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1751. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1752. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1753. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1754. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1755. 14:54:36:944 WARN 5748 --- [main] c.z.v.schedule.ScheduledTasks : 公钥获取失败将于 1 秒后. 重试 2/2
  1756. 14:54:37:949 ERROR 5748 --- [main] c.z.v.schedule.ScheduledTasks : 获取公钥失败超过重试次数 2 .
  1757. 14:54:37:951 ERROR 5748 --- [main] c.z.v.schedule.ScheduledTasks : 获取公钥失败,终止应用程序
  1758. java.lang.RuntimeException: 获取公钥失败超过最大重试次数
  1759. at com.zksy.visualization.schedule.ScheduledTasks.retrievePublicKey(ScheduledTasks.java:62) ~[classes/:na]
  1760. at com.zksy.visualization.schedule.ScheduledTasks.init(ScheduledTasks.java:37) ~[classes/:na]
  1761. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  1762. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  1763. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  1764. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  1765. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  1766. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1767. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  1768. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  1769. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  1770. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  1771. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  1772. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  1773. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  1774. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  1775. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  1776. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  1777. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  1778. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  1779. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  1780. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  1781. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  1782. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  1783. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  1784. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  1785. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  1786. 14:54:37:954 WARN 5748 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1787. 14:54:37:955 WARN 5748 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1788. 14:54:37:956 WARN 5748 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1789. 14:54:37:956 WARN 5748 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1790. 14:57:44:981 INFO 22524 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1791. 14:57:45:424 WARN 22524 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1792. 14:57:45:467 INFO 22524 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1793. 14:57:45:646 INFO 22524 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1794. 14:57:45:652 INFO 22524 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1795. 14:57:45:652 INFO 22524 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1796. 14:57:45:735 INFO 22524 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1797. 14:57:45:735 INFO 22524 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 744 ms
  1798. 14:57:46:077 INFO 22524 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEOPxxsX7B7WNr9meJW7NnYbH7Moty1tXFT7C1OrzkJIBL7YXMF23Z6D7fFQposl4CAwywpzk/yHKmUEbcaPi+5ostsZ2upghU0lPxGxO3vbJbfEmlp1F9WIsxCljSALxQCSHImgeNYVl2QtpwTRJL08S4I83tY6zLEh3A48bB+wIDAQAB
  1799. 14:57:46:080 INFO 22524 --- [main] c.z.v.schedule.ScheduledTasks : 获取秘钥成功
  1800. 14:57:46:828 INFO 22524 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1801. 14:57:47:079 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of a6b90f16-46f3-4773-8327-def61b87d948
  1802. 14:57:47:079 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] RpcClient init label, labels = {module=naming, source=sdk}
  1803. 14:57:47:081 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1804. 14:57:47:081 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1805. 14:57:47:081 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1806. 14:57:47:081 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1807. 14:57:47:206 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723100267552_192.168.110.13_49390
  1808. 14:57:47:208 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1809. 14:57:47:208 INFO 22524 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Notify connected event to listeners.
  1810. 14:57:47:211 INFO 22524 --- [main] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1811. 14:57:47:248 INFO 22524 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1812. 14:57:47:255 INFO 22524 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1813. 14:57:47:391 INFO 22524 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1814. 14:57:47:395 INFO 22524 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1815. 14:57:47:407 INFO 22524 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1816. 14:57:47:444 INFO 22524 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.436 seconds (JVM running for 4.937)
  1817. 14:57:47:447 INFO 22524 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1818. 14:57:47:448 INFO 22524 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1819. 14:57:47:782 INFO 22524 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Receive server push request, request = NotifySubscriberRequest, requestId = 282
  1820. 14:57:47:788 INFO 22524 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [a6b90f16-46f3-4773-8327-def61b87d948] Ack server push request, request = NotifySubscriberRequest, requestId = 282
  1821. 14:58:48:818 WARN 22524 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1822. 14:58:48:818 WARN 22524 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1823. 14:58:48:818 WARN 22524 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1824. 14:58:48:819 WARN 22524 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1825. 14:58:48:929 INFO 22524 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1826. 14:58:48:938 INFO 22524 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1827. 14:58:49:266 INFO 22524 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1828. 14:58:49:266 INFO 22524 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@519bb824[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1829. 14:58:49:266 INFO 22524 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723100267552_192.168.110.13_49390
  1830. 14:58:49:268 INFO 22524 --- [nacos-grpc-client-executor-24] c.a.n.c.remote.client.grpc.GrpcClient : [1723100267552_192.168.110.13_49390]Ignore complete event,isRunning:false,isAbandon=false
  1831. 14:58:49:270 INFO 22524 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@471726dc[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 25]
  1832. 14:58:54:326 INFO 3824 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1833. 14:58:54:784 WARN 3824 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1834. 14:58:54:824 INFO 3824 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1835. 14:58:55:005 INFO 3824 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1836. 14:58:55:012 INFO 3824 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1837. 14:58:55:012 INFO 3824 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1838. 14:58:55:085 INFO 3824 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1839. 14:58:55:085 INFO 3824 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 750 ms
  1840. 14:58:55:408 INFO 3824 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC48hmzaV8tTsrURhlnzgw0KCqsC0mZ/j5yzdFi3vyGfDqF2cBPmY4KlrLB78Ae1ka7LcfZcPGqo6Z8jwe95rsvVMqWL4Yhcc4ktMu50lLKhCugJm8UsgwmIv8vX08c1s97EV6wJ59n0pBwu6EBuRas5KD6XpaPMGxFAfz0//0IAwIDAQAB
  1841. 14:58:55:411 INFO 3824 --- [main] c.z.v.schedule.ScheduledTasks : 获取秘钥成功
  1842. 14:58:56:192 INFO 3824 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1843. 14:58:56:441 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of eff6424a-dc33-40af-82ee-25095cc3e26e
  1844. 14:58:56:441 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] RpcClient init label, labels = {module=naming, source=sdk}
  1845. 14:58:56:442 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1846. 14:58:56:443 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1847. 14:58:56:443 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1848. 14:58:56:443 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1849. 14:58:56:561 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723100336912_192.168.110.13_49584
  1850. 14:58:56:561 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1851. 14:58:56:561 INFO 3824 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Notify connected event to listeners.
  1852. 14:58:56:561 INFO 3824 --- [main] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1853. 14:58:56:594 INFO 3824 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1854. 14:58:56:601 INFO 3824 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1855. 14:58:56:737 INFO 3824 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1856. 14:58:56:740 INFO 3824 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1857. 14:58:56:754 INFO 3824 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1858. 14:58:56:792 INFO 3824 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.39 seconds (JVM running for 4.896)
  1859. 14:58:56:795 INFO 3824 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1860. 14:58:56:797 INFO 3824 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1861. 14:58:57:177 INFO 3824 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Receive server push request, request = NotifySubscriberRequest, requestId = 285
  1862. 14:58:57:184 INFO 3824 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Ack server push request, request = NotifySubscriberRequest, requestId = 285
  1863. 14:59:02:268 WARN 3824 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1864. 14:59:02:270 WARN 3824 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1865. 14:59:02:271 WARN 3824 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1866. 14:59:02:271 WARN 3824 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1867. 14:59:02:380 INFO 3824 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1868. 14:59:02:382 INFO 3824 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1869. 14:59:02:980 INFO 3824 --- [nacos-grpc-client-executor-10] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Receive server push request, request = NotifySubscriberRequest, requestId = 287
  1870. 14:59:02:982 INFO 3824 --- [nacos-grpc-client-executor-10] com.alibaba.nacos.common.remote.client : [eff6424a-dc33-40af-82ee-25095cc3e26e] Ack server push request, request = NotifySubscriberRequest, requestId = 287
  1871. 14:59:03:045 INFO 3824 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1872. 14:59:03:045 INFO 3824 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@643465b8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1873. 14:59:03:045 INFO 3824 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723100336912_192.168.110.13_49584
  1874. 14:59:03:047 INFO 3824 --- [nacos-grpc-client-executor-11] c.a.n.c.remote.client.grpc.GrpcClient : [1723100336912_192.168.110.13_49584]Ignore complete event,isRunning:false,isAbandon=false
  1875. 14:59:03:049 INFO 3824 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@30d274f8[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 12]
  1876. 15:07:26:258 INFO 14532 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1877. 15:07:26:729 WARN 14532 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1878. 15:07:26:771 INFO 14532 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=85c1124d-c57d-3bd2-8b23-12e1bde725a4
  1879. 15:07:26:946 INFO 14532 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1880. 15:07:26:952 INFO 14532 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1881. 15:07:26:952 INFO 14532 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1882. 15:07:27:020 INFO 14532 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1883. 15:07:27:020 INFO 14532 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 755 ms
  1884. 15:07:27:329 INFO 14532 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBX4tj1972B+2DVhT8zd+EPUXlZm6pQxD4kciX0oXk4OGRao7IkzHwjSAvMvrMoTT1TRRRYKPsy3Cp80cnoPN/eNUvw5HuQoYV7ICajWbbQqfLzpkVCNNZt0l6Cf0uiKAbT6YImccSSh/X3L0B1eRyWwxIFIAnYjE1eSv83rO8HwIDAQAB
  1885. 15:07:27:330 INFO 14532 --- [main] c.z.v.schedule.ScheduledTasks : 获取秘钥成功
  1886. 15:07:27:405 INFO 14532 --- [main] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:R8sYhPuflMNKaRy1elXZEEICDEcfAdmV","refresh_token":"53pHI5RrOlPR9uiYgtjwbMAW8OJ6wd0Q","magicId":"Q0dw6JO8WAMbwjtgYiu9RPlOrR5IHp35","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1887. 15:07:28:211 INFO 14532 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1888. 15:07:28:457 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 4401d0cd-14c2-4d53-806a-f1d099d94e01
  1889. 15:07:28:457 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] RpcClient init label, labels = {module=naming, source=sdk}
  1890. 15:07:28:458 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1891. 15:07:28:458 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1892. 15:07:28:458 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1893. 15:07:28:458 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1894. 15:07:28:583 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723100848936_192.168.110.13_50802
  1895. 15:07:28:584 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1896. 15:07:28:584 INFO 14532 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Notify connected event to listeners.
  1897. 15:07:28:586 INFO 14532 --- [main] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1898. 15:07:28:625 INFO 14532 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1899. 15:07:28:631 INFO 14532 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1900. 15:07:28:764 INFO 14532 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1901. 15:07:28:766 INFO 14532 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1902. 15:07:28:779 INFO 14532 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1903. 15:07:28:817 INFO 14532 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.498 seconds (JVM running for 5.046)
  1904. 15:07:28:820 INFO 14532 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1905. 15:07:28:821 INFO 14532 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1906. 15:07:29:182 INFO 14532 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Receive server push request, request = NotifySubscriberRequest, requestId = 288
  1907. 15:07:29:192 INFO 14532 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [4401d0cd-14c2-4d53-806a-f1d099d94e01] Ack server push request, request = NotifySubscriberRequest, requestId = 288
  1908. 15:29:07:175 WARN 14532 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1909. 15:29:07:174 WARN 14532 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1910. 15:29:07:175 WARN 14532 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1911. 15:29:07:175 WARN 14532 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1912. 15:29:07:286 INFO 14532 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1913. 15:29:07:289 INFO 14532 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1914. 15:29:07:623 INFO 14532 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1915. 15:29:07:623 INFO 14532 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@618c3d5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1916. 15:29:07:623 INFO 14532 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723100848936_192.168.110.13_50802
  1917. 15:29:07:625 INFO 14532 --- [nacos-grpc-client-executor-273] c.a.n.c.remote.client.grpc.GrpcClient : [1723100848936_192.168.110.13_50802]Ignore complete event,isRunning:false,isAbandon=false
  1918. 15:29:07:627 INFO 14532 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7ed553eb[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 274]
  1919. 15:29:13:863 INFO 18516 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1920. 15:29:14:342 INFO 18516 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  1921. 15:29:14:344 INFO 18516 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1922. 15:29:14:361 INFO 18516 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  1923. 15:29:14:445 WARN 18516 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1924. 15:29:14:484 INFO 18516 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=d39c0a24-0ca7-3241-82c5-fb915a6ce7ff
  1925. 15:29:14:712 INFO 18516 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1926. 15:29:14:719 INFO 18516 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1927. 15:29:14:719 INFO 18516 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1928. 15:29:14:794 INFO 18516 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1929. 15:29:14:794 INFO 18516 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 923 ms
  1930. 15:29:15:144 INFO 18516 --- [main] c.z.v.schedule.ScheduledTasks : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrC+3FpsL5Xpq+SN06JKvFYkBKFd+wkxL4SbVnQoOyTeE7Xa3GRTWD3IVFKPee+uinLOm53NiGq6yiADDuDYt1NZAohXq+8auG1iQdufdF9ZzaCzjDJlDrWNqPDJBwZC3ItM917JvEmLeaz3tXbgTIVcMZj/U+QgFw2+S3PkG1nQIDAQAB
  1931. 15:29:15:146 INFO 18516 --- [main] c.z.v.schedule.ScheduledTasks : 获取秘钥成功
  1932. 15:29:15:260 INFO 18516 --- [main] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:LxyTPoQ5QBY3poYFfQwI9VPOrdH01279","refresh_token":"zT1QVRnT6pjovnOK49fsJ3vGFEPkutDM","magicId":"MDtukPEFGv3Jsf94KOnvojp6TnRVQ1Tz","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1933. 15:29:16:033 INFO 18516 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1934. 15:29:16:503 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 0f293762-00d4-4554-8803-58cf41776402
  1935. 15:29:16:503 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] RpcClient init label, labels = {module=naming, source=sdk}
  1936. 15:29:16:504 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1937. 15:29:16:505 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1938. 15:29:16:505 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1939. 15:29:16:505 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1940. 15:29:16:631 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723102157001_192.168.110.13_53532
  1941. 15:29:16:631 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1942. 15:29:16:631 INFO 18516 --- [main] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  1943. 15:29:16:631 INFO 18516 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Notify connected event to listeners.
  1944. 15:29:16:667 INFO 18516 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1945. 15:29:16:673 INFO 18516 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1946. 15:29:16:809 INFO 18516 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1947. 15:29:16:811 INFO 18516 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1948. 15:29:16:825 INFO 18516 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1949. 15:29:16:862 INFO 18516 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.005 seconds (JVM running for 5.534)
  1950. 15:29:16:866 INFO 18516 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1951. 15:29:16:874 INFO 18516 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1952. 15:29:17:184 INFO 18516 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Receive server push request, request = NotifySubscriberRequest, requestId = 291
  1953. 15:29:17:191 INFO 18516 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [0f293762-00d4-4554-8803-58cf41776402] Ack server push request, request = NotifySubscriberRequest, requestId = 291
  1954. 15:37:35:221 WARN 18516 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1955. 15:37:35:220 WARN 18516 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1956. 15:37:35:222 WARN 18516 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1957. 15:37:35:222 WARN 18516 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1958. 15:37:35:353 INFO 18516 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1959. 15:37:35:357 INFO 18516 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1960. 15:37:35:679 INFO 18516 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1961. 15:37:35:679 INFO 18516 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@687e020d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1962. 15:37:35:679 INFO 18516 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723102157001_192.168.110.13_53532
  1963. 15:37:35:683 INFO 18516 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@167d1926[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 114]
  1964. 15:37:40:655 INFO 9832 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  1965. 15:37:41:114 INFO 9832 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  1966. 15:37:41:116 INFO 9832 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1967. 15:37:41:129 INFO 9832 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  1968. 15:37:41:211 WARN 9832 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  1969. 15:37:41:257 INFO 9832 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  1970. 15:37:41:492 INFO 9832 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  1971. 15:37:41:499 INFO 9832 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1972. 15:37:41:500 INFO 9832 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  1973. 15:37:41:574 INFO 9832 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1974. 15:37:41:574 INFO 9832 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 912 ms
  1975. 15:37:41:902 INFO 9832 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCTzfBzfotmdeI1TwF8ZXFuhC71KyUx3izt55cTmbTZbekm4V1OJAentjWhGGpnR3Q2A0oAk5GSFWJ6UB8UF/UANxSCRN6mcYhyNOUJYaN3HaoP9z8O2ahW/RL2OJc/KGbIRDYuAeE7275kqkGx2Q9pWyepAbquL5CN0Dv3L+MwDQIDAQAB
  1976. 15:37:41:903 INFO 9832 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  1977. 15:37:41:979 INFO 9832 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:VmOMtJWBs4O12A8WcNiEnS6euudvA7rj","refresh_token":"LqljIhUgXnUCSXQabed9ebPyJ5ERdrgW","magicId":"WgrdRE5JyPbe9debaQXSCUnXgUhIjlqL","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  1978. 15:37:42:777 INFO 9832 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1979. 15:37:43:225 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of caa00948-2d24-446e-9afe-f9203a775e51
  1980. 15:37:43:225 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] RpcClient init label, labels = {module=naming, source=sdk}
  1981. 15:37:43:226 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1982. 15:37:43:226 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1983. 15:37:43:226 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1984. 15:37:43:227 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  1985. 15:37:43:346 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723102663730_192.168.110.13_54502
  1986. 15:37:43:346 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1987. 15:37:43:346 INFO 9832 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Notify connected event to listeners.
  1988. 15:37:43:347 INFO 9832 --- [main] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  1989. 15:37:43:384 INFO 9832 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  1990. 15:37:43:391 INFO 9832 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  1991. 15:37:43:523 INFO 9832 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1992. 15:37:43:525 INFO 9832 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1993. 15:37:43:541 INFO 9832 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1994. 15:37:43:578 INFO 9832 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.006 seconds (JVM running for 5.542)
  1995. 15:37:43:582 INFO 9832 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  1996. 15:37:43:584 INFO 9832 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  1997. 15:37:43:914 INFO 9832 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Receive server push request, request = NotifySubscriberRequest, requestId = 295
  1998. 15:37:43:922 INFO 9832 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [caa00948-2d24-446e-9afe-f9203a775e51] Ack server push request, request = NotifySubscriberRequest, requestId = 295
  1999. 15:37:45:009 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2000. 15:37:50:005 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2001. 15:37:55:002 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2002. 15:38:00:008 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2003. 15:38:05:007 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2004. 15:38:10:013 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2005. 15:38:15:015 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2006. 15:38:20:006 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2007. 15:38:25:013 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2008. 15:38:30:006 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2009. 15:38:35:014 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2010. 15:38:40:005 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2011. 15:38:45:010 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2012. 15:38:50:011 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2013. 15:38:55:012 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2014. 15:39:00:016 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2015. 15:39:05:005 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2016. 15:39:10:015 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2017. 15:39:15:005 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2018. 15:39:20:001 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2019. 15:39:25:000 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2020. 15:39:30:006 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2021. 15:39:35:009 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2022. 15:39:40:001 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2023. 15:39:45:008 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2024. 15:39:50:011 INFO 9832 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2025. 15:39:52:196 WARN 9832 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2026. 15:39:52:197 WARN 9832 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2027. 15:39:52:196 WARN 9832 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2028. 15:39:52:199 WARN 9832 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2029. 15:39:52:324 INFO 9832 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2030. 15:39:52:327 INFO 9832 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2031. 15:39:52:660 INFO 9832 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2032. 15:39:52:660 INFO 9832 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6d0650ab[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2033. 15:39:52:660 INFO 9832 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723102663730_192.168.110.13_54502
  2034. 15:39:52:664 INFO 9832 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@41f7adf8[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 38]
  2035. 15:39:57:751 INFO 14580 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2036. 15:39:58:200 INFO 14580 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2037. 15:39:58:202 INFO 14580 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2038. 15:39:58:216 INFO 14580 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2039. 15:39:58:304 WARN 14580 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2040. 15:39:58:351 INFO 14580 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2041. 15:39:58:568 INFO 14580 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2042. 15:39:58:576 INFO 14580 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2043. 15:39:58:577 INFO 14580 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2044. 15:39:58:654 INFO 14580 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2045. 15:39:58:654 INFO 14580 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 894 ms
  2046. 15:39:59:051 INFO 14580 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDXP9ToaAFY+zCwwHR40IBuJiZpXYsWG3XQUgBrq0v5PiuNQpMmrwpLlUlv00BjsckuZwuOyXq+BzFDSHk540BQHeilmbpqTAthUgprF1TrB090BajD9jeQamr8cjLwOu25fevhdsTfeAdWNFjIFMEAhN6I5Bc804Ikn46yUOxUbwIDAQAB
  2047. 15:39:59:053 INFO 14580 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2048. 15:39:59:156 INFO 14580 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:AM8YEChsHzSWsPqoQP0dI74ov9gsdmgf","refresh_token":"V80mheD2CcRLATFpRBPF1aZRprqyAugU","magicId":"UguAyqrpRZa1FPBRpFTALRcC2Dehm08V","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2049. 15:40:08:159 INFO 14580 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2050. 15:40:08:626 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 35b6f569-9073-4509-89ea-002766120c79
  2051. 15:40:08:627 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] RpcClient init label, labels = {module=naming, source=sdk}
  2052. 15:40:08:628 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2053. 15:40:08:628 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2054. 15:40:08:628 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2055. 15:40:08:628 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2056. 15:40:08:754 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723102809134_192.168.110.13_54817
  2057. 15:40:08:754 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2058. 15:40:08:754 INFO 14580 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Notify connected event to listeners.
  2059. 15:40:08:756 INFO 14580 --- [main] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  2060. 15:40:08:796 INFO 14580 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2061. 15:40:08:802 INFO 14580 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2062. 15:40:08:937 INFO 14580 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2063. 15:40:08:939 INFO 14580 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2064. 15:40:08:969 INFO 14580 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2065. 15:40:09:013 INFO 14580 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 13.38 seconds (JVM running for 13.954)
  2066. 15:40:09:017 INFO 14580 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2067. 15:40:09:019 INFO 14580 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2068. 15:40:09:349 INFO 14580 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Receive server push request, request = NotifySubscriberRequest, requestId = 298
  2069. 15:40:09:356 INFO 14580 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [35b6f569-9073-4509-89ea-002766120c79] Ack server push request, request = NotifySubscriberRequest, requestId = 298
  2070. 15:40:10:012 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2071. 15:40:15:016 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2072. 15:40:20:009 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2073. 15:40:25:013 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2074. 15:40:30:003 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2075. 15:40:35:003 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2076. 15:40:40:008 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2077. 15:40:45:002 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2078. 15:40:50:008 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2079. 15:40:55:010 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2080. 15:41:00:010 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2081. 15:41:05:011 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2082. 15:41:10:015 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2083. 15:41:15:010 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2084. 15:41:20:016 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2085. 15:41:25:001 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2086. 15:41:30:000 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2087. 15:41:35:014 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2088. 15:41:40:002 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2089. 15:41:45:006 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2090. 15:41:50:003 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2091. 15:41:55:006 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2092. 15:42:00:003 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2093. 15:42:05:015 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2094. 15:42:10:009 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2095. 15:42:15:002 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2096. 15:42:20:009 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2097. 15:42:25:001 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2098. 15:42:30:010 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2099. 15:42:35:011 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2100. 15:42:40:002 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2101. 15:42:45:007 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2102. 15:42:50:013 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2103. 15:42:55:001 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2104. 15:43:00:001 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2105. 15:43:05:007 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2106. 15:43:10:003 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2107. 15:43:15:001 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2108. 15:43:20:015 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2109. 15:43:25:006 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2110. 15:43:30:011 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2111. 15:43:35:010 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2112. 15:43:40:012 INFO 14580 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2113. 15:43:40:334 WARN 14580 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2114. 15:43:40:334 WARN 14580 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2115. 15:43:40:335 WARN 14580 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2116. 15:43:40:336 WARN 14580 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2117. 15:43:40:460 INFO 14580 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2118. 15:43:40:462 INFO 14580 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2119. 15:43:40:789 INFO 14580 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2120. 15:43:40:789 INFO 14580 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2d0140df[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2121. 15:43:40:789 INFO 14580 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723102809134_192.168.110.13_54817
  2122. 15:43:40:791 INFO 14580 --- [nacos-grpc-client-executor-51] c.a.n.c.remote.client.grpc.GrpcClient : [1723102809134_192.168.110.13_54817]Ignore complete event,isRunning:false,isAbandon=false
  2123. 15:43:40:793 INFO 14580 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6fb43f35[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 52]
  2124. 15:43:45:604 INFO 21128 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2125. 15:43:46:038 INFO 21128 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2126. 15:43:46:039 INFO 21128 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2127. 15:43:46:052 INFO 21128 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2128. 15:43:46:135 WARN 21128 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2129. 15:43:46:180 INFO 21128 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2130. 15:43:46:400 INFO 21128 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2131. 15:43:46:408 INFO 21128 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2132. 15:43:46:408 INFO 21128 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2133. 15:43:46:483 INFO 21128 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2134. 15:43:46:484 INFO 21128 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 867 ms
  2135. 15:43:46:836 INFO 21128 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC3FktUMXdvF4P9+lXmsjSmGmsvCpi9jYKFn7N2qAD4ZrpdH9I/xvcaoyLI64B7sZYcK+2fhfT9fiaJKo1sphOIQzOJIFreSwv0a5pUmMHCC48I4iPmtftfjCjWRCYFTGZGr1Fya+ButixA9Ago/5Y1ztcCxNkZxrnibGkRfO3lMwIDAQAB
  2136. 15:43:46:837 INFO 21128 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2137. 15:43:46:926 INFO 21128 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:Ve1oS9BJw805POWrdXd43n4KYQw9hlqo","refresh_token":"4s5cUWBRBvznc33AViMkgNjhr4Cjvr3E","magicId":"E3rvjC4rhjNgkMiVA33cnzvBRBWUc5s4","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2138. 15:43:47:733 INFO 21128 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2139. 15:43:48:185 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of e8652c9d-b784-4282-a096-8c28945db26b
  2140. 15:43:48:186 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] RpcClient init label, labels = {module=naming, source=sdk}
  2141. 15:43:48:187 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2142. 15:43:48:187 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2143. 15:43:48:188 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2144. 15:43:48:188 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2145. 15:43:48:309 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723103028696_192.168.110.13_55280
  2146. 15:43:48:309 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2147. 15:43:48:310 INFO 21128 --- [main] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  2148. 15:43:48:309 INFO 21128 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Notify connected event to listeners.
  2149. 15:43:48:354 INFO 21128 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2150. 15:43:48:361 INFO 21128 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2151. 15:43:48:494 INFO 21128 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2152. 15:43:48:498 INFO 21128 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2153. 15:43:48:513 INFO 21128 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2154. 15:43:48:552 INFO 21128 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.857 seconds (JVM running for 5.363)
  2155. 15:43:48:557 INFO 21128 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2156. 15:43:48:559 INFO 21128 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2157. 15:43:48:902 INFO 21128 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Receive server push request, request = NotifySubscriberRequest, requestId = 301
  2158. 15:43:48:908 INFO 21128 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [e8652c9d-b784-4282-a096-8c28945db26b] Ack server push request, request = NotifySubscriberRequest, requestId = 301
  2159. 15:43:50:015 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2160. 15:43:55:005 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2161. 15:44:00:010 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2162. 15:44:05:015 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2163. 15:44:10:016 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2164. 15:44:15:007 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2165. 15:44:20:009 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2166. 15:44:25:014 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2167. 15:44:30:012 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2168. 15:44:35:005 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2169. 15:44:40:004 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2170. 15:44:45:001 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2171. 15:44:50:007 INFO 21128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2172. 15:44:54:034 WARN 21128 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2173. 15:44:54:034 WARN 21128 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2174. 15:44:54:034 WARN 21128 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2175. 15:44:54:035 WARN 21128 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2176. 15:44:54:160 INFO 21128 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2177. 15:44:54:163 INFO 21128 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2178. 15:44:54:496 INFO 21128 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2179. 15:44:54:497 INFO 21128 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@14e8dd52[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2180. 15:44:54:497 INFO 21128 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723103028696_192.168.110.13_55280
  2181. 15:44:54:498 INFO 21128 --- [nacos-grpc-client-executor-24] c.a.n.c.remote.client.grpc.GrpcClient : [1723103028696_192.168.110.13_55280]Ignore complete event,isRunning:false,isAbandon=false
  2182. 15:44:54:500 INFO 21128 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@a5d881[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 25]
  2183. 15:45:18:007 INFO 20068 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2184. 15:45:18:499 INFO 20068 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2185. 15:45:18:500 INFO 20068 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2186. 15:45:18:513 INFO 20068 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2187. 15:45:18:592 WARN 20068 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2188. 15:45:18:634 INFO 20068 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2189. 15:45:18:835 INFO 20068 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2190. 15:45:18:842 INFO 20068 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2191. 15:45:18:842 INFO 20068 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2192. 15:45:18:925 INFO 20068 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2193. 15:45:18:925 INFO 20068 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 903 ms
  2194. 15:45:19:268 INFO 20068 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDRJ3b809pfepBMBC6pEXvOyl/uSpyQaepSRI8o5pSmf2ITAWCWGn/OTcJzdP1CFfrc0MHZLay+XnHP69cTZBF4MzI4ywcgz8qji5+DIZtfXUwTUD6tQ/xcRvvfL2UiNieED445Hg2ZuZd7kIvH4CW+3gLbHOCwJ9y/wGsaijUSvwIDAQAB
  2195. 15:45:19:269 INFO 20068 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2196. 15:45:19:346 INFO 20068 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:iQGOUxfWbSmFHXH1bdARBIHhVK6fMEo7","refresh_token":"3s43aggbpmY3vkF2VmTRsgneNyrpyDtI","magicId":"ItDypryNengsRTmV2Fkv3Ympbgga34s3","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2197. 15:45:20:159 INFO 20068 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2198. 15:45:20:571 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of ec1721a0-5f60-4575-87e6-b0f95ae5c70f
  2199. 15:45:20:571 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] RpcClient init label, labels = {module=naming, source=sdk}
  2200. 15:45:20:572 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2201. 15:45:20:572 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2202. 15:45:20:572 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2203. 15:45:20:572 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2204. 15:45:20:693 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723103121084_192.168.110.13_55537
  2205. 15:45:20:694 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2206. 15:45:20:694 INFO 20068 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Notify connected event to listeners.
  2207. 15:45:20:698 INFO 20068 --- [main] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  2208. 15:45:20:744 INFO 20068 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2209. 15:45:20:749 INFO 20068 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2210. 15:45:20:884 INFO 20068 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2211. 15:45:20:886 INFO 20068 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2212. 15:45:20:900 INFO 20068 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2213. 15:45:20:935 INFO 20068 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 4.85 seconds (JVM running for 5.346)
  2214. 15:45:20:938 INFO 20068 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2215. 15:45:20:940 INFO 20068 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2216. 15:45:21:234 INFO 20068 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Receive server push request, request = NotifySubscriberRequest, requestId = 303
  2217. 15:45:21:241 INFO 20068 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [ec1721a0-5f60-4575-87e6-b0f95ae5c70f] Ack server push request, request = NotifySubscriberRequest, requestId = 303
  2218. 15:45:25:012 INFO 20068 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2219. 15:45:30:015 INFO 20068 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2220. 15:45:35:013 INFO 20068 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2221. 15:45:39:545 WARN 20068 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2222. 15:45:39:545 WARN 20068 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2223. 15:45:39:546 WARN 20068 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2224. 15:45:39:546 WARN 20068 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2225. 15:45:39:677 INFO 20068 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2226. 15:45:39:679 INFO 20068 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2227. 15:45:40:006 INFO 20068 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2228. 15:45:40:006 INFO 20068 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3b970e46[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2229. 15:45:40:006 INFO 20068 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723103121084_192.168.110.13_55537
  2230. 15:45:40:009 INFO 20068 --- [nacos-grpc-client-executor-12] c.a.n.c.remote.client.grpc.GrpcClient : [1723103121084_192.168.110.13_55537]Ignore complete event,isRunning:false,isAbandon=false
  2231. 15:45:40:010 INFO 20068 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@50c1f509[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 13]
  2232. 15:45:43:784 INFO 7740 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2233. 15:45:44:235 INFO 7740 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2234. 15:45:44:237 INFO 7740 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2235. 15:45:44:251 INFO 7740 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2236. 15:45:44:335 WARN 7740 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2237. 15:45:44:382 INFO 7740 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2238. 15:45:44:602 INFO 7740 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2239. 15:45:44:608 INFO 7740 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2240. 15:45:44:609 INFO 7740 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2241. 15:45:44:682 INFO 7740 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2242. 15:45:44:682 INFO 7740 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 889 ms
  2243. 15:45:45:058 INFO 7740 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC3kCuqEd+IegVMX7fc/cpmD1TyKruD5m9rbI0rJlGgxrIO+FWM5K+IxscKkQaqJmpxuZgHIBpln73zvldg6p3wruvVMeP4y3DPk/Q2LUHuyc57rdReUzGYUW3FgoT2cK6m/L+8ikNXxBZZr02RbzRAnuOevO0kb7WxWDarMHlTZQIDAQAB
  2244. 15:45:45:060 INFO 7740 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2245. 15:45:45:148 INFO 7740 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:yX3hqOFB2WGkwpyMDssxCIpibBt170Qy","refresh_token":"yuu7oSWaV76VErNqSi5j5WvVAvUc6D1A","magicId":"A1D6cUvAVvW5j5iSqNrEV67VaWSo7uuy","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2246. 15:46:17:245 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Server healthy check fail, currentConnection = 1723103143859_192.168.110.13_55631
  2247. 15:46:17:247 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  2248. 15:46:17:264 INFO 7740 --- [nacos-grpc-client-executor-14] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 306
  2249. 15:46:17:264 INFO 7740 --- [nacos-grpc-client-executor-14] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 306
  2250. 15:46:17:270 INFO 7740 --- [nacos-grpc-client-executor-14] c.a.n.c.remote.client.grpc.GrpcClient : [1723103143859_192.168.110.13_55631]Ignore complete event,isRunning:false,isAbandon=false
  2251. 15:46:17:376 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Success to connect a server [192.168.110.30:8848], connectionId = 1723103177760_192.168.110.13_55688
  2252. 15:46:17:376 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Abandon prev connection, server is 192.168.110.30:8848, connectionId is 1723103143859_192.168.110.13_55631
  2253. 15:46:17:376 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : Close current connection 1723103143859_192.168.110.13_55631
  2254. 15:46:17:379 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Notify disconnected event to listeners
  2255. 15:46:17:379 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [a2a0fa46-478c-4c5a-a6e3-d507ebd64b88_config-0] Notify connected event to listeners.
  2256. 15:46:18:112 INFO 7740 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2257. 15:46:18:575 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of f5fa900d-21dd-450f-8178-8aded443a8b4
  2258. 15:46:18:576 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] RpcClient init label, labels = {module=naming, source=sdk}
  2259. 15:46:18:577 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2260. 15:46:18:577 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2261. 15:46:18:577 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2262. 15:46:18:577 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2263. 15:46:18:692 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723103179088_192.168.110.13_55690
  2264. 15:46:18:692 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2265. 15:46:18:692 INFO 7740 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Notify connected event to listeners.
  2266. 15:46:18:704 INFO 7740 --- [main] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  2267. 15:46:18:753 INFO 7740 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2268. 15:46:18:759 INFO 7740 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2269. 15:46:18:899 INFO 7740 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2270. 15:46:18:901 INFO 7740 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2271. 15:46:18:916 INFO 7740 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2272. 15:46:18:962 INFO 7740 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 37.21 seconds (JVM running for 37.783)
  2273. 15:46:18:965 INFO 7740 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2274. 15:46:18:967 INFO 7740 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2275. 15:46:19:264 INFO 7740 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Receive server push request, request = NotifySubscriberRequest, requestId = 308
  2276. 15:46:19:286 INFO 7740 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [f5fa900d-21dd-450f-8178-8aded443a8b4] Ack server push request, request = NotifySubscriberRequest, requestId = 308
  2277. 15:46:20:002 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2278. 15:46:25:013 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2279. 15:46:30:013 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2280. 15:46:35:004 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2281. 15:46:40:003 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2282. 15:46:45:001 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2283. 15:46:50:010 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2284. 15:46:55:009 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2285. 15:47:00:013 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2286. 15:47:05:013 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2287. 15:47:10:015 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2288. 15:47:15:013 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2289. 15:47:20:004 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2290. 15:47:25:004 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2291. 15:47:30:003 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2292. 15:47:35:010 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2293. 15:47:40:008 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2294. 15:47:45:012 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2295. 15:47:50:008 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2296. 15:47:55:001 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2297. 15:48:00:009 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2298. 15:48:05:011 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2299. 15:48:10:005 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2300. 15:48:15:002 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2301. 15:48:20:007 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2302. 15:48:25:012 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2303. 15:48:30:006 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2304. 15:48:35:009 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2305. 15:48:40:013 INFO 7740 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2306. 15:48:42:215 WARN 7740 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2307. 15:48:42:215 WARN 7740 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2308. 15:48:42:216 WARN 7740 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2309. 15:48:42:217 WARN 7740 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2310. 15:48:42:349 INFO 7740 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2311. 15:48:42:358 INFO 7740 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2312. 15:48:42:685 INFO 7740 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2313. 15:48:42:686 INFO 7740 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@22dba619[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2314. 15:48:42:686 INFO 7740 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723103179088_192.168.110.13_55690
  2315. 15:48:42:687 INFO 7740 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4d925763[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 37]
  2316. 15:48:47:903 INFO 5228 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2317. 15:48:48:318 INFO 5228 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2318. 15:48:48:320 INFO 5228 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2319. 15:48:48:332 INFO 5228 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2320. 15:48:48:419 WARN 5228 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2321. 15:48:48:464 INFO 5228 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2322. 15:48:48:675 INFO 5228 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2323. 15:48:48:681 INFO 5228 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2324. 15:48:48:681 INFO 5228 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2325. 15:48:48:776 INFO 5228 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2326. 15:48:48:776 INFO 5228 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 864 ms
  2327. 15:48:49:285 INFO 5228 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQtz2YfFitJkfa8FgusYq0jQZD4RKA5L/N5ZwC+igtsqPDKe9w0mafu9N8o69wg1WHT9LHouQ/VTfs9XWXGX95ncc8c2p/nvPMCHGITCZsvX5lFIxjeKB7MCfbeMAIFT5Io16Malp4hbDwBouHd1nkSytCDbUc+DJE7J+Oo1WyUwIDAQAB
  2328. 15:48:49:287 INFO 5228 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2329. 15:48:49:354 INFO 5228 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:GegbJZTra0Pfno0Wgn9pu5LXfdC5nnVO","refresh_token":"S7GWKa0gHpPBL5fMi08ykcY1Jl6bCi5Y","magicId":"Y5iCb6lJ1Ycky80iMf5LBPpHg0aKWG7S","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2330. 15:48:50:497 INFO 5228 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2331. 15:48:50:785 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of d4c3692e-ba8d-45a0-b904-26a133728c58
  2332. 15:48:50:785 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] RpcClient init label, labels = {module=naming, source=sdk}
  2333. 15:48:50:786 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2334. 15:48:50:786 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2335. 15:48:50:786 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2336. 15:48:50:787 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2337. 15:48:50:914 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723103331300_192.168.110.13_56076
  2338. 15:48:50:915 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2339. 15:48:50:915 INFO 5228 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Notify connected event to listeners.
  2340. 15:48:50:916 INFO 5228 --- [main] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  2341. 15:48:50:952 INFO 5228 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2342. 15:48:50:957 INFO 5228 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2343. 15:48:51:091 INFO 5228 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2344. 15:48:51:094 INFO 5228 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2345. 15:48:51:107 INFO 5228 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2346. 15:48:51:146 INFO 5228 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.157 seconds (JVM running for 5.667)
  2347. 15:48:51:149 INFO 5228 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2348. 15:48:51:152 INFO 5228 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2349. 15:48:51:438 INFO 5228 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Receive server push request, request = NotifySubscriberRequest, requestId = 310
  2350. 15:48:51:445 INFO 5228 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [d4c3692e-ba8d-45a0-b904-26a133728c58] Ack server push request, request = NotifySubscriberRequest, requestId = 310
  2351. 15:48:55:000 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2352. 15:49:00:010 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2353. 15:49:05:013 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2354. 15:49:10:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2355. 15:49:15:016 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2356. 15:49:20:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2357. 15:49:25:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2358. 15:49:30:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2359. 15:49:35:010 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2360. 15:49:40:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2361. 15:49:45:012 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2362. 15:49:50:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2363. 15:49:55:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2364. 15:50:00:000 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2365. 15:50:05:015 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2366. 15:50:10:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2367. 15:50:15:015 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2368. 15:50:20:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2369. 15:50:25:006 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2370. 15:50:30:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2371. 15:50:35:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2372. 15:50:40:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2373. 15:50:45:003 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2374. 15:50:50:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2375. 15:50:55:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2376. 15:51:00:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2377. 15:51:05:010 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2378. 15:51:10:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2379. 15:51:15:003 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2380. 15:51:20:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2381. 15:51:25:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2382. 15:51:30:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2383. 15:51:35:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2384. 15:51:40:014 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2385. 15:51:45:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2386. 15:51:50:013 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2387. 15:51:55:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2388. 15:52:00:006 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2389. 15:52:05:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2390. 15:52:10:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2391. 15:52:15:016 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2392. 15:52:20:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2393. 15:52:25:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2394. 15:52:30:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2395. 15:52:35:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2396. 15:52:40:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2397. 15:52:45:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2398. 15:52:50:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2399. 15:52:55:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2400. 15:53:00:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2401. 15:53:05:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2402. 15:53:10:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2403. 15:53:15:019 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2404. 15:53:20:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2405. 15:53:25:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2406. 15:53:30:017 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2407. 15:53:35:016 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2408. 15:53:40:013 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2409. 15:53:45:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2410. 15:53:50:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2411. 15:53:55:017 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2412. 15:54:00:015 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2413. 15:54:05:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2414. 15:54:10:012 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2415. 15:54:15:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2416. 15:54:20:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2417. 15:54:25:003 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2418. 15:54:30:006 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2419. 15:54:35:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2420. 15:54:40:000 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2421. 15:54:45:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2422. 15:54:50:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2423. 15:54:55:016 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2424. 15:55:00:010 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2425. 15:55:05:016 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2426. 15:55:10:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2427. 15:55:15:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2428. 15:55:20:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2429. 15:55:25:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2430. 15:55:30:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2431. 15:55:35:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2432. 15:55:40:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2433. 15:55:45:013 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2434. 15:55:50:000 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2435. 15:55:55:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2436. 15:56:00:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2437. 15:56:05:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2438. 15:56:10:005 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2439. 15:56:15:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2440. 15:56:20:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2441. 15:56:25:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2442. 15:56:30:003 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2443. 15:56:35:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2444. 15:56:40:014 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2445. 15:56:45:006 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2446. 15:56:50:008 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2447. 15:56:55:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2448. 15:57:00:003 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2449. 15:57:05:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2450. 15:57:10:002 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2451. 15:57:15:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2452. 15:57:20:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2453. 15:57:25:012 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2454. 15:57:30:007 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2455. 15:57:35:010 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2456. 15:57:40:014 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2457. 15:57:45:006 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2458. 15:57:50:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2459. 15:57:55:009 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2460. 15:58:00:001 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2461. 15:58:05:011 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2462. 15:58:10:013 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2463. 15:58:15:014 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2464. 15:58:20:010 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2465. 15:58:25:014 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2466. 15:58:30:016 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2467. 15:58:35:004 INFO 5228 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2468. 15:58:39:425 WARN 5228 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2469. 15:58:39:425 WARN 5228 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2470. 15:58:39:426 WARN 5228 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2471. 15:58:39:426 WARN 5228 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2472. 15:58:39:537 INFO 5228 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2473. 15:58:39:541 INFO 5228 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2474. 15:58:39:863 INFO 5228 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2475. 15:58:39:863 INFO 5228 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@f28396d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2476. 15:58:39:863 INFO 5228 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723103331300_192.168.110.13_56076
  2477. 15:58:39:865 INFO 5228 --- [nacos-grpc-client-executor-131] c.a.n.c.remote.client.grpc.GrpcClient : [1723103331300_192.168.110.13_56076]Ignore complete event,isRunning:false,isAbandon=false
  2478. 15:58:39:867 INFO 5228 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@137b675f[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 132]
  2479. 15:58:44:739 INFO 18604 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2480. 15:58:45:180 INFO 18604 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2481. 15:58:45:182 INFO 18604 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2482. 15:58:45:197 INFO 18604 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2483. 15:58:45:277 WARN 18604 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2484. 15:58:45:320 INFO 18604 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2485. 15:58:45:531 INFO 18604 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2486. 15:58:45:537 INFO 18604 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2487. 15:58:45:538 INFO 18604 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2488. 15:58:45:614 INFO 18604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2489. 15:58:45:614 INFO 18604 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 869 ms
  2490. 15:58:46:116 INFO 18604 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJE2e2aaAoADSjrTIBEhQM6vXAcL4CaJPaf1AMR7RVOZLW+QJ5eEshMwvBXhMjLbWglPL/lVF6JQK8krbTEAASn77fx+QRVnq6QuFLFBdJVfWcJN9+Bz5DwihYoEuGNH/Af2h7hd8jsiGplJJ1Vpr7bCPx1jslRyhg23jOFggskQIDAQAB
  2491. 15:58:46:118 INFO 18604 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2492. 15:58:46:183 INFO 18604 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:Yr0PnZ1PU5fUHkylxxFCJi2Bnj0tsZrG","refresh_token":"0HOnW5aVAnrV325aTE4eCm8a2rECQOYM","magicId":"MYOQCEr2a8mCe4ETa523VrnAVa5WnOH0","scope":"supplier","remainderDays":29,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2493. 15:58:47:314 INFO 18604 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2494. 15:58:47:614 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 8416ae10-8ccf-493c-9015-93957e886556
  2495. 15:58:47:614 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] RpcClient init label, labels = {module=naming, source=sdk}
  2496. 15:58:47:615 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2497. 15:58:47:615 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2498. 15:58:47:616 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2499. 15:58:47:616 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2500. 15:58:47:733 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723103928138_192.168.110.13_57695
  2501. 15:58:47:733 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2502. 15:58:47:733 INFO 18604 --- [main] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  2503. 15:58:47:733 INFO 18604 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Notify connected event to listeners.
  2504. 15:58:47:772 INFO 18604 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2505. 15:58:47:779 INFO 18604 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2506. 15:58:47:926 INFO 18604 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2507. 15:58:47:929 INFO 18604 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2508. 15:58:47:942 INFO 18604 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2509. 15:58:47:981 INFO 18604 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.197 seconds (JVM running for 5.713)
  2510. 15:58:47:985 INFO 18604 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2511. 15:58:47:988 INFO 18604 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2512. 15:58:48:346 INFO 18604 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Receive server push request, request = NotifySubscriberRequest, requestId = 313
  2513. 15:58:48:352 INFO 18604 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [8416ae10-8ccf-493c-9015-93957e886556] Ack server push request, request = NotifySubscriberRequest, requestId = 313
  2514. 15:58:50:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2515. 15:58:55:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2516. 15:59:00:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2517. 15:59:05:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2518. 15:59:10:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2519. 15:59:15:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2520. 15:59:20:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2521. 15:59:25:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2522. 15:59:30:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2523. 15:59:35:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2524. 15:59:40:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2525. 15:59:45:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2526. 15:59:50:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2527. 15:59:55:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2528. 16:00:00:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2529. 16:00:05:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2530. 16:00:10:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2531. 16:00:15:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2532. 16:00:20:000 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2533. 16:00:25:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2534. 16:00:30:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2535. 16:00:35:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2536. 16:00:40:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2537. 16:00:45:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2538. 16:00:50:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2539. 16:00:55:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2540. 16:01:00:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2541. 16:01:05:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2542. 16:01:10:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2543. 16:01:15:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2544. 16:01:20:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2545. 16:01:25:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2546. 16:01:30:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2547. 16:01:35:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2548. 16:01:40:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2549. 16:01:45:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2550. 16:01:50:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2551. 16:01:55:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2552. 16:02:00:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2553. 16:02:05:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2554. 16:02:10:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2555. 16:02:15:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2556. 16:02:20:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2557. 16:02:25:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2558. 16:02:30:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2559. 16:02:35:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2560. 16:02:40:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2561. 16:02:45:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2562. 16:02:50:017 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2563. 16:02:55:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2564. 16:03:00:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2565. 16:03:05:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2566. 16:03:10:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2567. 16:03:15:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2568. 16:03:20:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2569. 16:03:25:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2570. 16:03:30:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2571. 16:03:35:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2572. 16:03:40:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2573. 16:03:45:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2574. 16:03:50:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2575. 16:03:55:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2576. 16:04:00:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2577. 16:04:05:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2578. 16:04:10:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2579. 16:04:15:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2580. 16:04:20:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2581. 16:04:25:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2582. 16:04:30:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2583. 16:04:35:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2584. 16:04:40:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2585. 16:04:45:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2586. 16:04:50:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2587. 16:04:55:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2588. 16:05:00:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2589. 16:05:05:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2590. 16:05:10:000 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2591. 16:05:15:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2592. 16:05:20:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2593. 16:05:25:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2594. 16:05:30:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2595. 16:05:35:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2596. 16:05:40:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2597. 16:05:45:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2598. 16:05:50:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2599. 16:05:55:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2600. 16:06:00:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2601. 16:06:05:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2602. 16:06:10:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2603. 16:06:15:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2604. 16:06:20:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2605. 16:06:25:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2606. 16:06:30:016 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2607. 16:06:35:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2608. 16:06:40:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2609. 16:06:45:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2610. 16:06:50:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2611. 16:06:55:016 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2612. 16:07:00:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2613. 16:07:05:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2614. 16:07:10:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2615. 16:07:15:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2616. 16:07:20:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2617. 16:07:25:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2618. 16:07:30:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2619. 16:07:35:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2620. 16:07:40:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2621. 16:07:45:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2622. 16:07:50:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2623. 16:07:55:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2624. 16:08:00:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2625. 16:08:05:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2626. 16:08:10:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2627. 16:08:15:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2628. 16:08:20:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2629. 16:08:25:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2630. 16:08:30:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2631. 16:08:35:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2632. 16:08:40:017 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2633. 16:08:45:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2634. 16:08:50:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2635. 16:08:55:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2636. 16:09:00:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2637. 16:09:05:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2638. 16:09:10:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2639. 16:09:15:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2640. 16:09:20:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2641. 16:09:25:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2642. 16:09:30:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2643. 16:09:35:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2644. 16:09:40:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2645. 16:09:45:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2646. 16:09:50:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2647. 16:09:55:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2648. 16:10:00:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2649. 16:10:05:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2650. 16:10:10:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2651. 16:10:15:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2652. 16:10:20:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2653. 16:10:25:016 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2654. 16:10:30:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2655. 16:10:35:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2656. 16:10:40:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2657. 16:10:45:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2658. 16:10:50:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2659. 16:10:55:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2660. 16:11:00:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2661. 16:11:05:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2662. 16:11:10:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2663. 16:11:15:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2664. 16:11:20:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2665. 16:11:25:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2666. 16:11:30:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2667. 16:11:35:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2668. 16:11:40:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2669. 16:11:45:004 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2670. 16:11:50:016 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2671. 16:11:55:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2672. 16:12:00:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2673. 16:12:05:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2674. 16:12:10:016 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2675. 16:12:15:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2676. 16:12:20:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2677. 16:12:25:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2678. 16:12:30:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2679. 16:12:35:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2680. 16:12:40:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2681. 16:12:45:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2682. 16:12:50:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2683. 16:12:55:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2684. 16:13:00:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2685. 16:13:05:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2686. 16:13:10:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2687. 16:13:15:003 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2688. 16:13:20:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2689. 16:13:25:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2690. 16:13:30:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2691. 16:13:35:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2692. 16:13:40:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2693. 16:13:45:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2694. 16:13:50:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2695. 16:13:55:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2696. 16:14:00:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2697. 16:14:05:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2698. 16:14:10:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2699. 16:14:15:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2700. 16:14:20:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2701. 16:14:25:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2702. 16:14:30:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2703. 16:14:35:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2704. 16:14:40:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2705. 16:14:45:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2706. 16:14:50:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2707. 16:14:55:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2708. 16:15:00:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2709. 16:15:05:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2710. 16:15:10:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2711. 16:15:15:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2712. 16:15:20:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2713. 16:15:25:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2714. 16:15:30:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2715. 16:15:35:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2716. 16:15:40:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2717. 16:15:45:002 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2718. 16:15:50:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2719. 16:15:55:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2720. 16:16:00:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2721. 16:16:05:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2722. 16:16:10:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2723. 16:16:15:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2724. 16:16:20:011 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2725. 16:16:25:012 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2726. 16:16:30:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2727. 16:16:35:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2728. 16:16:40:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2729. 16:16:45:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2730. 16:16:50:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2731. 16:16:55:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2732. 16:17:00:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2733. 16:17:05:008 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2734. 16:17:10:014 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2735. 16:17:15:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2736. 16:17:20:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2737. 16:17:25:010 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2738. 16:17:30:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2739. 16:17:35:001 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2740. 16:17:40:013 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2741. 16:17:45:005 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2742. 16:17:50:009 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2743. 16:17:55:007 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2744. 16:18:00:006 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2745. 16:18:05:015 INFO 18604 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2746. 16:18:06:837 WARN 18604 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2747. 16:18:06:837 WARN 18604 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2748. 16:18:06:837 WARN 18604 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2749. 16:18:06:839 WARN 18604 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2750. 16:18:06:959 INFO 18604 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2751. 16:18:06:961 INFO 18604 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2752. 16:18:07:284 INFO 18604 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2753. 16:18:07:284 INFO 18604 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@78a219ac[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2754. 16:18:07:284 INFO 18604 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723103928138_192.168.110.13_57695
  2755. 16:18:07:286 INFO 18604 --- [nacos-grpc-client-executor-243] c.a.n.c.remote.client.grpc.GrpcClient : [1723103928138_192.168.110.13_57695]Ignore complete event,isRunning:false,isAbandon=false
  2756. 16:18:07:288 INFO 18604 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2a290dee[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 244]
  2757. 16:18:12:312 INFO 16544 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2758. 16:18:12:747 INFO 16544 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2759. 16:18:12:749 INFO 16544 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2760. 16:18:12:764 INFO 16544 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2761. 16:18:12:857 WARN 16544 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2762. 16:18:12:901 INFO 16544 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2763. 16:18:13:142 INFO 16544 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2764. 16:18:13:147 INFO 16544 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2765. 16:18:13:148 INFO 16544 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2766. 16:18:13:224 INFO 16544 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2767. 16:18:13:224 INFO 16544 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 902 ms
  2768. 16:18:13:691 INFO 16544 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD0kV77FN+QJAtkdN2n+FaCCn1V0rnYQygocUAFOZKrn9Z3mZSAtJb55rRUibvu6qzl6l2aqGdWr62/Ytl7wyKn0nPxX50GO9PQ/+Ror2nqjm9RHiywzhZPkOF4yBOJzP9DvuMooWjeTBy8hEgRK2u/zrdzoo4HKShzq7ou/o3AhwIDAQAB
  2769. 16:18:13:694 INFO 16544 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2770. 16:18:13:799 INFO 16544 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:v8V5lk0qToHmKQvi4WWCa2PQ8rP53QAE","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2771. 16:18:14:911 INFO 16544 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2772. 16:18:15:207 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 3981833d-3c39-4b75-8006-a54d2e75ac83
  2773. 16:18:15:208 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] RpcClient init label, labels = {module=naming, source=sdk}
  2774. 16:18:15:209 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2775. 16:18:15:209 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2776. 16:18:15:209 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2777. 16:18:15:209 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2778. 16:18:15:328 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105095747_192.168.110.13_59996
  2779. 16:18:15:328 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2780. 16:18:15:329 INFO 16544 --- [main] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  2781. 16:18:15:328 INFO 16544 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Notify connected event to listeners.
  2782. 16:18:15:368 INFO 16544 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2783. 16:18:15:376 INFO 16544 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2784. 16:18:15:513 INFO 16544 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2785. 16:18:15:516 INFO 16544 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2786. 16:18:15:530 INFO 16544 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2787. 16:18:15:568 INFO 16544 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.276 seconds (JVM running for 5.82)
  2788. 16:18:15:571 INFO 16544 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2789. 16:18:15:580 INFO 16544 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2790. 16:18:15:905 INFO 16544 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Receive server push request, request = NotifySubscriberRequest, requestId = 317
  2791. 16:18:15:913 INFO 16544 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [3981833d-3c39-4b75-8006-a54d2e75ac83] Ack server push request, request = NotifySubscriberRequest, requestId = 317
  2792. 16:18:20:009 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2793. 16:18:20:062 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ZKdEMqycLSkq1FgE1mtUQw6O1KhYhkah","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2794. 16:18:25:007 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2795. 16:18:25:039 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ANnx93KW4tWqsTT8SVFuIZLp5xRXYeMp","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2796. 16:18:30:008 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2797. 16:18:30:049 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:80DvXp3q1MS6PY2vam1W6dV3bVidrQEH","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2798. 16:18:35:005 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2799. 16:18:35:038 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:2OTAhBc8v9gMhvKgkeAb7o2DFMQR6iXZ","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2800. 16:18:40:009 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2801. 16:18:40:042 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:UoaDUPX3biUrUxoC0wus1fJ824Z7iH0J","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2802. 16:18:45:002 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2803. 16:18:45:032 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:noQsXvNEYPzzm0dpqNX0cmypfZ2OwoEl","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2804. 16:18:50:003 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2805. 16:18:50:039 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JdcXGZfY27cm6qrgKBF4kXgMZx5JYpCw","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2806. 16:18:55:011 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2807. 16:18:55:052 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Bfc0oeAeOsWt71TTqViT73cpNQI7exwH","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2808. 16:19:00:004 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2809. 16:19:00:051 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:23WOmF2wGIx79cRcarrLRhy4xyMWah7t","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2810. 16:19:05:013 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2811. 16:19:05:048 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:nlxXhARo6tZeAyuOwMszUY9x5LHtnkby","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2812. 16:19:10:014 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2813. 16:19:10:050 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HQ5tfMjuKdTjJGydeg1I93X3MSYfv56Q","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2814. 16:19:15:013 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2815. 16:19:15:065 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:RzVVs86beDW5yhX5ZTpMuKmNgZUuZyUg","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2816. 16:19:20:015 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2817. 16:19:20:046 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:esYQE8PR1p8188WfWnadQ4vhLLPdrtNv","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2818. 16:19:25:007 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2819. 16:19:25:041 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:V4v8rQx0a3gO1HVXdttdo6z671HueDiw","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2820. 16:19:30:005 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2821. 16:19:30:044 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:h0pLF1Z1M0yxTI1Ldxto6iRGLi8iPy8z","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2822. 16:19:35:005 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2823. 16:19:35:038 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:AckAwCfqvcHwgb1ALoYPDu3gl20pDYNl","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2824. 16:19:40:006 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2825. 16:19:40:039 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:wC3MH8THlZVoL70lsqvFB0vdFEcUiNTg","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2826. 16:19:45:008 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2827. 16:19:45:044 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KpISHAP5bXhV3rZUVz2XBhDXLmzEWzIQ","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2828. 16:19:50:005 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2829. 16:19:50:039 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:1OW9HC3jFXDkUzdcD7hmX9Pk7jI34Lqn","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2830. 16:19:55:010 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2831. 16:19:55:055 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:gb7Bx7CHo7g7YEKPDDeX5HUZmM4CjmWL","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2832. 16:20:00:015 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2833. 16:20:00:043 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:5b1k4pLYrgyDWmK6aOxY0QLCxNko45WR","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2834. 16:20:05:004 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2835. 16:20:05:043 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:h6mddhShaZXT312P0FdtpK1X5rkKopZ4","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2836. 16:20:10:000 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2837. 16:20:10:051 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sijQyAIiu7jzFjIXIujQYlVeGI0YB8BA","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2838. 16:20:15:008 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2839. 16:20:15:039 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:4JObbDeH9RB0Jv3tZNGS0hgZIog5zJeC","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2840. 16:20:20:006 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2841. 16:20:20:041 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:bU8ODmjCLN8SEUaGKN5ogJPptCFp2AAN","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2842. 16:20:25:009 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2843. 16:20:25:054 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:K2iGPTJJAbNbgjZwEikKFxJyrd1cGnB7","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2844. 16:20:30:008 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2845. 16:20:30:038 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:WFSFTjetrMrzbqCI95sSxGdunL4nD7IW","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2846. 16:20:35:008 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2847. 16:20:35:036 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:XPlEwzeVIeecnkYuU1nVab0nuxkrC4ax","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2848. 16:20:40:006 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2849. 16:20:40:040 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KVuWOzlisama5icJMFSfmDO12R6dmyHf","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2850. 16:20:45:012 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2851. 16:20:45:047 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ighh8Iem8Kj4bFj6T713DSjkJYkWNkvK","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2852. 16:20:50:006 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2853. 16:20:50:037 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:3U8xBLAMkdh1IlK9u0ZX4MKKYE646lP3","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2854. 16:20:55:011 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2855. 16:20:55:046 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:cdAltRgpiq2RrYTUtdJqsLzNDpyrKiQb","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2856. 16:21:00:006 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2857. 16:21:00:043 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:f1KRTi5qrBDBsxilGvu0sMk2yW7VsaTt","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2858. 16:21:05:008 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2859. 16:21:05:042 INFO 16544 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:2x5JxEby5ELP07410hjAp5GU15jGQuAq","refresh_token":"WM8D8felNeGw5insWCdxlmOKSW5Z9lQi","magicId":"iQl9Z5WSKOmlxdCWsni5wGeNlef8D8MW","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2860. 16:21:09:361 WARN 16544 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2861. 16:21:09:361 WARN 16544 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2862. 16:21:09:361 WARN 16544 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2863. 16:21:09:362 WARN 16544 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2864. 16:21:09:481 INFO 16544 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2865. 16:21:09:484 INFO 16544 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2866. 16:21:09:819 INFO 16544 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2867. 16:21:09:819 INFO 16544 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@69e93caf[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2868. 16:21:09:819 INFO 16544 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105095747_192.168.110.13_59996
  2869. 16:21:09:822 INFO 16544 --- [nacos-grpc-client-executor-45] c.a.n.c.remote.client.grpc.GrpcClient : [1723105095747_192.168.110.13_59996]Ignore complete event,isRunning:false,isAbandon=false
  2870. 16:21:09:823 INFO 16544 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@67abdb86[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 46]
  2871. 16:21:14:681 INFO 20016 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2872. 16:21:15:123 INFO 20016 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2873. 16:21:15:126 INFO 20016 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2874. 16:21:15:140 INFO 20016 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2875. 16:21:15:219 WARN 20016 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2876. 16:21:15:263 INFO 20016 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2877. 16:21:15:456 INFO 20016 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2878. 16:21:15:462 INFO 20016 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2879. 16:21:15:462 INFO 20016 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2880. 16:21:15:542 INFO 20016 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2881. 16:21:15:542 INFO 20016 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 853 ms
  2882. 16:21:16:009 INFO 20016 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD8Z1xDhnsXTn/+zoRtYYVfT8s8miISI7oJZHMmKOuWbbj/lMHicC2cAFwXxv9KHM7X9fwNWCfbqeSuWkbdITrjuAJ3mtOYqW5LNWNUuaXhM2m861XNLkM56Ap+hCLAmibqPmUZNWY7K5cjRDy3SQB21+EZeJ9Wbi0s5k+t8CRUlQIDAQAB
  2883. 16:21:16:011 INFO 20016 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2884. 16:21:16:076 INFO 20016 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:gG2x5s1J8jrQ477cW4X2C8gxzfrJlAyM","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2885. 16:21:17:185 INFO 20016 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2886. 16:21:17:491 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 0eaba11e-8c08-4591-8f09-0715f735ff67
  2887. 16:21:17:492 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] RpcClient init label, labels = {module=naming, source=sdk}
  2888. 16:21:17:493 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2889. 16:21:17:493 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2890. 16:21:17:493 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2891. 16:21:17:493 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2892. 16:21:17:615 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105278035_192.168.110.13_60420
  2893. 16:21:17:615 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2894. 16:21:17:615 INFO 20016 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Notify connected event to listeners.
  2895. 16:21:17:616 INFO 20016 --- [main] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  2896. 16:21:17:657 INFO 20016 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2897. 16:21:17:663 INFO 20016 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2898. 16:21:17:800 INFO 20016 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2899. 16:21:17:802 INFO 20016 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2900. 16:21:17:815 INFO 20016 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2901. 16:21:17:852 INFO 20016 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.095 seconds (JVM running for 5.604)
  2902. 16:21:17:855 INFO 20016 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2903. 16:21:17:857 INFO 20016 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2904. 16:21:18:202 INFO 20016 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Receive server push request, request = NotifySubscriberRequest, requestId = 319
  2905. 16:21:18:216 INFO 20016 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [0eaba11e-8c08-4591-8f09-0715f735ff67] Ack server push request, request = NotifySubscriberRequest, requestId = 319
  2906. 16:21:20:001 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2907. 16:21:20:046 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sVc0EIqOYIKcNrhu7m2kn19xo6aqSucZ","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2908. 16:21:25:008 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2909. 16:21:25:044 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:oZzK1jTB05hqOa7VokfyVLPFmsGj4TNB","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2910. 16:21:30:005 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2911. 16:21:30:034 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:BsYFgYhSm7DCXFpwSyskA461b5lMmKJs","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2912. 16:21:35:002 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2913. 16:21:35:037 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jMhudlbdVayJLDYoI4rk9hzRGxhhONpX","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2914. 16:21:40:015 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2915. 16:21:40:055 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:GmL8uFvXvZRZ8MZIPjyGSjWTuSi74L7M","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2916. 16:21:45:008 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2917. 16:21:45:064 INFO 20016 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ig31x6AYW5bFMc4rc5NI9NzqWyZLzNwo","refresh_token":"nF6F6cjtHhmXI2KPmJa3xfIwyup0wgja","magicId":"ajgw0puywIfx3aJmPK2IXmhHtjc6F6Fn","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2918. 16:21:46:305 WARN 20016 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2919. 16:21:46:307 WARN 20016 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2920. 16:21:46:307 WARN 20016 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2921. 16:21:46:307 WARN 20016 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2922. 16:21:46:420 INFO 20016 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2923. 16:21:46:422 INFO 20016 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2924. 16:21:46:752 INFO 20016 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2925. 16:21:46:752 INFO 20016 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2777a391[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2926. 16:21:46:752 INFO 20016 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105278035_192.168.110.13_60420
  2927. 16:21:46:754 INFO 20016 --- [nacos-grpc-client-executor-16] c.a.n.c.remote.client.grpc.GrpcClient : [1723105278035_192.168.110.13_60420]Ignore complete event,isRunning:false,isAbandon=false
  2928. 16:21:46:757 INFO 20016 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5cb72e8a[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 17]
  2929. 16:21:52:164 INFO 10084 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2930. 16:21:52:603 INFO 10084 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2931. 16:21:52:605 INFO 10084 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2932. 16:21:52:618 INFO 10084 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces.
  2933. 16:21:52:700 WARN 10084 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2934. 16:21:52:743 INFO 10084 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2935. 16:21:52:934 INFO 10084 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2936. 16:21:52:941 INFO 10084 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2937. 16:21:52:941 INFO 10084 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  2938. 16:21:53:013 INFO 10084 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2939. 16:21:53:014 INFO 10084 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 841 ms
  2940. 16:21:53:534 INFO 10084 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDHWNFuWuxrE3N70aiZco9e7Fo2lQGOUYCrwSIDHUNP4qiit3nX/ESHa01iSN0NkK63UBgGq8Y7dG3c49ym9o9ltIOSdOZ4x/NC+iLnEOaOi042CcdbWv1tvyZQqMDNyBwVNvGhXq1lsCKH6M5a9MT0elTi4GKCw7DumPXNMfwX7wIDAQAB
  2941. 16:21:53:536 INFO 10084 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  2942. 16:21:53:630 INFO 10084 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:V5qZ88pCzG97crCY3umLkvunB4OYXt3D","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2943. 16:21:54:732 INFO 10084 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  2944. 16:21:55:035 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of b4a43587-a6ef-44c4-9aa3-e363c637e9e8
  2945. 16:21:55:035 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] RpcClient init label, labels = {module=naming, source=sdk}
  2946. 16:21:55:036 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  2947. 16:21:55:037 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  2948. 16:21:55:037 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  2949. 16:21:55:037 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  2950. 16:21:55:159 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105315578_192.168.110.13_60576
  2951. 16:21:55:160 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  2952. 16:21:55:161 INFO 10084 --- [main] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b440
  2953. 16:21:55:160 INFO 10084 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Notify connected event to listeners.
  2954. 16:21:55:200 INFO 10084 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  2955. 16:21:55:207 INFO 10084 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  2956. 16:21:55:344 INFO 10084 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  2957. 16:21:55:346 INFO 10084 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  2958. 16:21:55:359 INFO 10084 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  2959. 16:21:55:395 INFO 10084 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.192 seconds (JVM running for 5.687)
  2960. 16:21:55:398 INFO 10084 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  2961. 16:21:55:400 INFO 10084 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  2962. 16:21:55:695 INFO 10084 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Receive server push request, request = NotifySubscriberRequest, requestId = 323
  2963. 16:21:55:701 INFO 10084 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b4a43587-a6ef-44c4-9aa3-e363c637e9e8] Ack server push request, request = NotifySubscriberRequest, requestId = 323
  2964. 16:22:00:006 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2965. 16:22:00:051 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:7b1rcBvfLP6T0q3rGWriOy07tBOAcycM","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2966. 16:22:05:007 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2967. 16:22:05:043 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:fxCVwtvucCHlA3Wy0Cxfr8M7XPQRlJsa","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2968. 16:22:10:006 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2969. 16:22:10:060 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:bN8q3qJK1aSmvPwLqVJtSkx26JVvVl3N","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2970. 16:22:15:015 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2971. 16:22:15:052 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qliCsMd1u96A1eIexazYEZ84jfIeVoIb","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2972. 16:22:20:015 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2973. 16:22:20:048 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:BAt6gCegznoKoANEn8cS1ctAeeGUIg7Z","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2974. 16:22:25:012 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2975. 16:22:25:048 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:fEugItctyKAR87qw8LzrnUVMEQncEYS4","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2976. 16:22:30:003 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2977. 16:22:30:032 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VFqULpHAIA9lnNmS82qlz2Ghiy5beExV","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2978. 16:22:35:012 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  2979. 16:22:35:046 INFO 10084 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:4h7LXwBjX7cav5NFPVV0m2FvPt1hozq8","refresh_token":"7mQhreoDJxpRY8qXfogl4q8AW2wcnnnx","magicId":"xnnncw2WA8q4lgofXq8YRpxJDoerhQm7","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  2980. 16:22:39:191 WARN 10084 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2981. 16:22:39:191 WARN 10084 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2982. 16:22:39:192 WARN 10084 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2983. 16:22:39:192 WARN 10084 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2984. 16:22:39:306 INFO 10084 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2985. 16:22:39:309 INFO 10084 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2986. 16:22:39:636 INFO 10084 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2987. 16:22:39:637 INFO 10084 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3ed57cfd[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2988. 16:22:39:637 INFO 10084 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105315578_192.168.110.13_60576
  2989. 16:22:39:641 INFO 10084 --- [nacos-grpc-client-executor-18] c.a.n.c.remote.client.grpc.GrpcClient : [1723105315578_192.168.110.13_60576]Ignore complete event,isRunning:false,isAbandon=false
  2990. 16:22:39:642 INFO 10084 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@206f62c6[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 19]
  2991. 16:22:44:574 INFO 24220 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  2992. 16:22:45:022 INFO 24220 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  2993. 16:22:45:023 INFO 24220 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2994. 16:22:45:037 INFO 24220 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  2995. 16:22:45:118 WARN 24220 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  2996. 16:22:45:160 INFO 24220 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  2997. 16:22:45:385 INFO 24220 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  2998. 16:22:45:391 INFO 24220 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2999. 16:22:45:391 INFO 24220 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3000. 16:22:45:462 INFO 24220 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3001. 16:22:45:462 INFO 24220 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 881 ms
  3002. 16:22:45:899 INFO 24220 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCef1uRUpsWguekX7nxGtvnwYQxKc28aWSrH3Da/xsQIvsYtUGrfCZK/jCPeRYa1jqW7UhQxxt9KqLAiflq0vwKFim7vY99kAW6e05xmoznTxJMvTNwpebWUoXNNBSNIDK1XOTUi0hvOitShni5XxXn2RNRgikVdsqL8R9bXm1e4wIDAQAB
  3003. 16:22:45:901 INFO 24220 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3004. 16:22:45:960 INFO 24220 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:2vUkuUkH5oHexwe7w6wi4A9S9lVqIqpm","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3005. 16:22:47:119 INFO 24220 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3006. 16:22:47:427 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 919cf617-970f-4942-9d00-4f05c153a237
  3007. 16:22:47:427 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] RpcClient init label, labels = {module=naming, source=sdk}
  3008. 16:22:47:428 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3009. 16:22:47:429 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3010. 16:22:47:429 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3011. 16:22:47:429 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3012. 16:22:47:544 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105367971_192.168.110.13_60773
  3013. 16:22:47:544 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3014. 16:22:47:545 INFO 24220 --- [main] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  3015. 16:22:47:544 INFO 24220 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Notify connected event to listeners.
  3016. 16:22:47:582 INFO 24220 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3017. 16:22:47:588 INFO 24220 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3018. 16:22:47:723 INFO 24220 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3019. 16:22:47:726 INFO 24220 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3020. 16:22:47:740 INFO 24220 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3021. 16:22:47:779 INFO 24220 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.18 seconds (JVM running for 5.684)
  3022. 16:22:47:783 INFO 24220 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3023. 16:22:47:784 INFO 24220 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3024. 16:22:48:140 INFO 24220 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Receive server push request, request = NotifySubscriberRequest, requestId = 325
  3025. 16:22:48:148 INFO 24220 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [919cf617-970f-4942-9d00-4f05c153a237] Ack server push request, request = NotifySubscriberRequest, requestId = 325
  3026. 16:22:50:015 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3027. 16:22:50:066 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:K5f7yZk2scdLlZoocXIWxzmCFKVN9Hq6","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3028. 16:22:55:004 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3029. 16:22:55:041 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:tGzUPPoGdjelK21sN5rsjadge628ZQ4e","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3030. 16:23:00:011 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3031. 16:23:00:050 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sp2tT02HRaoxceZN2WDFtTo6yluQmuxo","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3032. 16:23:05:014 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3033. 16:23:05:053 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:e77ntMgobDObgdoeBscMzjE8m5KcQPnZ","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3034. 16:23:10:015 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3035. 16:23:10:042 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Z7PiiDovdTm1tx9AGPnuIeoltQu6av5Q","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3036. 16:23:15:004 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3037. 16:23:15:034 INFO 24220 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:gbmP7HrCdhybmIpLfYeRJG5ZoXoUvfGK","refresh_token":"G3rbDYN7UaNkshDD2kbv2QOimea0HS6C","magicId":"C6SH0aemiOQ2vbk2DDhskNaU7NYDbr3G","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3038. 16:23:19:335 WARN 24220 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3039. 16:23:19:335 WARN 24220 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3040. 16:23:19:335 WARN 24220 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3041. 16:23:19:336 WARN 24220 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3042. 16:23:19:445 INFO 24220 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3043. 16:23:19:447 INFO 24220 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3044. 16:23:19:782 INFO 24220 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  3045. 16:23:19:782 INFO 24220 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3a98bfea[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3046. 16:23:19:782 INFO 24220 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105367971_192.168.110.13_60773
  3047. 16:23:19:784 INFO 24220 --- [nacos-grpc-client-executor-15] c.a.n.c.remote.client.grpc.GrpcClient : [1723105367971_192.168.110.13_60773]Ignore complete event,isRunning:false,isAbandon=false
  3048. 16:23:19:788 INFO 24220 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@65b6e4f2[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 16]
  3049. 16:23:24:965 INFO 2476 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3050. 16:23:25:391 INFO 2476 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3051. 16:23:25:392 INFO 2476 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3052. 16:23:25:407 INFO 2476 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  3053. 16:23:25:491 WARN 2476 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3054. 16:23:25:535 INFO 2476 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  3055. 16:23:25:730 INFO 2476 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3056. 16:23:25:735 INFO 2476 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3057. 16:23:25:736 INFO 2476 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3058. 16:23:25:813 INFO 2476 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3059. 16:23:25:813 INFO 2476 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 841 ms
  3060. 16:23:26:336 INFO 2476 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtuEJeUqQemtJbaxBnS0RVD31aJQKtvuTSJ5drjI8CdC4LveFnu7cTlnQcMZ972Ws+/9RD6XTISu6oH0VpTL2kDOFo6vObH+HiBk7REqMRBDB2j6Qxjr2wrZaAlhKFHyT025reV3rxnnlCTSZ7JTGpXjeuW6NcqtkRhu4DGpwBSwIDAQAB
  3061. 16:23:26:339 INFO 2476 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3062. 16:23:26:416 INFO 2476 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:YsUzSvVgmjLbjuDVByLnt8tzWjAF6rAy","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3063. 16:23:27:588 INFO 2476 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3064. 16:23:27:960 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 73845bab-3387-4fd4-8438-b5b364fb415a
  3065. 16:23:27:960 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] RpcClient init label, labels = {module=naming, source=sdk}
  3066. 16:23:27:961 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3067. 16:23:27:961 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3068. 16:23:27:961 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3069. 16:23:27:962 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3070. 16:23:28:077 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105408506_192.168.110.13_60928
  3071. 16:23:28:078 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3072. 16:23:28:080 INFO 2476 --- [main] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  3073. 16:23:28:078 INFO 2476 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Notify connected event to listeners.
  3074. 16:23:28:118 INFO 2476 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3075. 16:23:28:125 INFO 2476 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3076. 16:23:28:259 INFO 2476 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3077. 16:23:28:261 INFO 2476 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3078. 16:23:28:275 INFO 2476 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3079. 16:23:28:312 INFO 2476 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.275 seconds (JVM running for 5.772)
  3080. 16:23:28:315 INFO 2476 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3081. 16:23:28:317 INFO 2476 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3082. 16:23:28:625 INFO 2476 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Receive server push request, request = NotifySubscriberRequest, requestId = 328
  3083. 16:23:28:631 INFO 2476 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [73845bab-3387-4fd4-8438-b5b364fb415a] Ack server push request, request = NotifySubscriberRequest, requestId = 328
  3084. 16:23:30:008 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3085. 16:23:30:050 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zJUHX4eHU45dp7OoDwhHNdeKfwglxGdu","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3086. 16:23:35:002 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3087. 16:23:35:036 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:pjTEibhyQ9QMl2Nz0RwaGDQ8EpwDbHQl","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3088. 16:23:40:005 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3089. 16:23:40:034 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:2NHRInwDBkSVB5gyFA18uA8AO4jNPbQ9","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3090. 16:23:45:009 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3091. 16:23:45:046 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:78STlEGA4rhSmuUiBRf5Y4NGna1OkMtB","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3092. 16:23:50:005 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3093. 16:23:50:035 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:RpV7XQ3yasMg2Wxq2OAYFPqB1k63F2lC","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3094. 16:23:55:016 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3095. 16:23:55:051 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8EQn2q2HQXXjj1R3Uy9XSiHtKRgAScoT","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3096. 16:24:00:012 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3097. 16:24:00:046 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JfLg5hUbjB1oyiRcZ3IEid2SsUUaJQg0","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3098. 16:24:05:013 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3099. 16:24:05:040 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:fIYAI2UXDi40RDn5AzJxC4NIwYKOAZYq","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3100. 16:24:10:013 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3101. 16:24:10:049 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KQfaQlrYJee7g13GHQ9GB1IVWwc6yrlO","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3102. 16:24:15:010 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3103. 16:24:15:066 INFO 2476 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JKtWK4xdMyf9aTiRCAvzU14S7eEINaxJ","refresh_token":"Rkb2e9A7qPuKd8CxNgvAvguOdamf0aWO","magicId":"OWa0fmadOugvAvgNxC8dKuPq7A9e2bkR","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3104. 16:24:17:191 WARN 2476 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3105. 16:24:17:191 WARN 2476 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3106. 16:24:17:191 WARN 2476 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3107. 16:24:17:191 WARN 2476 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3108. 16:24:17:309 INFO 2476 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3109. 16:24:17:312 INFO 2476 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3110. 16:24:17:620 INFO 2476 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  3111. 16:24:17:621 INFO 2476 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5836339c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3112. 16:24:17:621 INFO 2476 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105408506_192.168.110.13_60928
  3113. 16:24:17:623 INFO 2476 --- [nacos-grpc-client-executor-20] c.a.n.c.remote.client.grpc.GrpcClient : [1723105408506_192.168.110.13_60928]Ignore complete event,isRunning:false,isAbandon=false
  3114. 16:24:17:626 INFO 2476 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3e95ad3[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 21]
  3115. 16:24:22:623 INFO 15568 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3116. 16:24:23:056 INFO 15568 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3117. 16:24:23:058 INFO 15568 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3118. 16:24:23:072 INFO 15568 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  3119. 16:24:23:153 WARN 15568 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3120. 16:24:23:194 INFO 15568 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  3121. 16:24:23:387 INFO 15568 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3122. 16:24:23:392 INFO 15568 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3123. 16:24:23:392 INFO 15568 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3124. 16:24:23:466 INFO 15568 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3125. 16:24:23:466 INFO 15568 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 834 ms
  3126. 16:24:23:937 INFO 15568 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDiUh81GObtmaPb0D8ofLyUqmy0U9/gZTgEmHakwoRUXwbY/i/QE8w/VOVuk+TVGDAYJMmA1zT+fKPc/kMj72OO535tTyi5dOoHRY5WRPDMsCQijTGnEYxzlD4ULgQFwGkOkCh/8bQZa2sERkRlQlPPf1j2pkqsfurMmwCGbIGADwIDAQAB
  3127. 16:24:23:939 INFO 15568 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3128. 16:24:23:997 INFO 15568 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:orwehlV41e0DXlUCUXlRwMJf0w8z83Oc","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3129. 16:24:25:123 INFO 15568 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3130. 16:24:25:465 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of b2cfee87-5b31-4524-93dc-6fbb8cc56f13
  3131. 16:24:25:465 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] RpcClient init label, labels = {module=naming, source=sdk}
  3132. 16:24:25:467 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3133. 16:24:25:467 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3134. 16:24:25:467 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3135. 16:24:25:467 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3136. 16:24:25:586 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105466011_192.168.110.13_61114
  3137. 16:24:25:586 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3138. 16:24:25:586 INFO 15568 --- [main] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  3139. 16:24:25:586 INFO 15568 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Notify connected event to listeners.
  3140. 16:24:25:623 INFO 15568 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3141. 16:24:25:630 INFO 15568 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3142. 16:24:25:765 INFO 15568 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3143. 16:24:25:767 INFO 15568 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3144. 16:24:25:782 INFO 15568 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3145. 16:24:25:820 INFO 15568 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.113 seconds (JVM running for 5.641)
  3146. 16:24:25:823 INFO 15568 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3147. 16:24:25:824 INFO 15568 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3148. 16:24:26:166 INFO 15568 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Receive server push request, request = NotifySubscriberRequest, requestId = 331
  3149. 16:24:26:175 INFO 15568 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b2cfee87-5b31-4524-93dc-6fbb8cc56f13] Ack server push request, request = NotifySubscriberRequest, requestId = 331
  3150. 16:24:30:012 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3151. 16:24:30:069 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ANe3CZSjU0vAWZS08tSBkSnnS9ydbJ9P","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3152. 16:24:35:012 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3153. 16:24:35:061 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Ybks4akOL5Q4CM8PJrGtLvpJ2luq0y1v","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3154. 16:24:40:012 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3155. 16:24:40:047 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qg9ELjLTWjn8STsQufwIQUVR9Z5v9sbz","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3156. 16:24:45:009 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3157. 16:24:45:055 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:T0YFWScrvskFXQF0711RQIKEXAOdDbVZ","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3158. 16:24:50:002 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3159. 16:24:50:035 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JANJx783rZotczvOieDS1mQD8jZx6Ajr","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3160. 16:24:55:015 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3161. 16:24:55:043 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hYQHPwKq24RNx2SjSnJaxRHRC2JZk4NS","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3162. 16:25:00:008 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3163. 16:25:00:051 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:YPbx0PQrreOA4gBnggA3uPyVeEs02y3A","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3164. 16:25:05:009 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3165. 16:25:05:039 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:vrF76cBP8yRMkZqneJ53omdLjhvE1L84","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3166. 16:25:10:002 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3167. 16:25:10:035 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hzue2j5uNEeN1ebcxH7sWoNmD2Kz8ytm","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3168. 16:25:15:007 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3169. 16:25:15:042 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:LOZwBTwCFwyd0eNuofzvRpnTQgsLNkkR","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3170. 16:25:20:002 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3171. 16:25:20:044 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:mZtsC8iG43B1kxbvWc9JRSLYzK1OChM4","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3172. 16:25:25:000 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3173. 16:25:25:027 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zrCC2A90kOgixdqlF0BUXXZ1QphCdQTA","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3174. 16:25:30:012 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3175. 16:25:30:055 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Zkc9PIa16xwnLIJaXvceYj04cbTHYVxL","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3176. 16:25:35:016 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3177. 16:25:35:048 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:nZZm4RUTTdf59j2KB24uAbvCYw9Ps3bZ","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3178. 16:25:40:013 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3179. 16:25:40:048 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qq3y9MAWZk7yT7d6r6JpdoxR9m25TPin","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3180. 16:25:45:005 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3181. 16:25:45:041 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:rHnrlT1iCxhrPXz5ipgmmGhXaKZoRT0w","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3182. 16:25:50:002 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3183. 16:25:50:034 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:0JM4NMVhKptuEgMbspM0RI7PzLNCg4zv","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3184. 16:25:55:000 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3185. 16:25:55:033 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:APnKaIuuIxIxkj6q5ky6fpCrNIIaZR5T","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3186. 16:26:00:008 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3187. 16:26:00:047 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ILHtSQOvTlhTrkqOwppYsXVpNURyGQQ5","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3188. 16:26:05:002 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3189. 16:26:05:031 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:cqrBsarOeXYhpM7jUFC2shgoSpAirGo9","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3190. 16:26:10:013 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3191. 16:26:10:057 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:kClWsMpYBhwsj7DlxrKAfovGvDsIxO6I","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3192. 16:26:15:014 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3193. 16:26:15:046 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:FzhPBzzzdyrts711PF8CypfPne8SlTHF","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3194. 16:26:20:004 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3195. 16:26:20:031 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hqOlcIXAgE2zZQpN1f0HGF2vvwk6xTuI","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3196. 16:26:25:006 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3197. 16:26:25:042 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:6OKtquCH33V83YBAIfamuvsPxj1PV0KB","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3198. 16:26:30:005 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3199. 16:26:30:030 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:wWomPDvh040kbZR9Pd4OMtap8TD0nYQB","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3200. 16:26:35:005 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3201. 16:26:35:033 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:kwyYdHiRQqALEokFLBNeKIOPvgMsO3W7","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3202. 16:26:40:014 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3203. 16:26:40:052 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:I3Lfng3EcPRfLZm4LhOoPdYWem95vD0m","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3204. 16:26:45:013 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3205. 16:26:45:045 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:RXvOEWHDM0mdERjCUtu7EzmnAAq4XLuZ","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3206. 16:26:50:009 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3207. 16:26:50:041 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:RWvkbsWzQ3NyqXG6iYyjWgfUxBM7o1oF","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3208. 16:26:55:011 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3209. 16:26:55:052 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:SkuoMlGCs1VGkwzCFxdiuYlOczbyNKkH","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3210. 16:27:00:014 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3211. 16:27:00:046 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:x9ff1ZF6rjWi6VrcyJiOAK0UseKfG0Y2","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3212. 16:27:05:017 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3213. 16:27:05:053 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:OtZOdhrFntvw2pfcBqNfYwQZtjl4TlD5","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3214. 16:27:10:016 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3215. 16:27:10:051 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Zo3fxM6oahCxmijGnrWAYZJPYL2Z3QG4","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3216. 16:27:15:014 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3217. 16:27:15:049 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:DWFMqAMowm1yNuqFFwPx3W1nFH9Nxvi7","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3218. 16:27:20:001 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3219. 16:27:20:031 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:bpvbOR8L8M18zCkVQopfN1FmSo2QhRCb","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3220. 16:27:25:015 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3221. 16:27:25:057 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:gCZuGoeAB34tO7LNC6RDHJyjtZkUBEmn","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3222. 16:27:30:005 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3223. 16:27:30:045 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:kCgUt0jF09dOzCfffPZjG6LF7GV1MMEZ","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3224. 16:27:35:003 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3225. 16:27:35:033 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:y3am3vYF2tuUjl8ATgNWq0esiem9dxB1","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3226. 16:27:40:013 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3227. 16:27:40:053 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ogMKnB3zHHwUymjRlk3tRptQCOXxHAUQ","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3228. 16:27:45:002 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3229. 16:27:45:038 INFO 15568 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:MdKOADgKBs5GzA8Owo8uLD12IlDYCPxB","refresh_token":"tSkxNFLAQjPaT0cmkFioG2c6XRaZJny3","magicId":"3ynJZaRX6c2GoiFkmc0TaPjQALFNxkSt","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3230. 16:27:46:112 WARN 15568 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3231. 16:27:46:111 WARN 15568 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3232. 16:27:46:113 WARN 15568 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3233. 16:27:46:114 WARN 15568 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3234. 16:27:46:226 INFO 15568 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3235. 16:27:46:228 INFO 15568 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3236. 16:27:49:429 INFO 7640 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3237. 16:27:49:858 INFO 7640 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3238. 16:27:49:859 INFO 7640 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3239. 16:27:49:873 INFO 7640 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  3240. 16:27:49:956 WARN 7640 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3241. 16:27:50:002 INFO 7640 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  3242. 16:27:50:235 INFO 7640 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3243. 16:27:50:242 INFO 7640 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3244. 16:27:50:242 INFO 7640 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3245. 16:27:50:323 INFO 7640 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3246. 16:27:50:323 INFO 7640 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 886 ms
  3247. 16:27:50:777 INFO 7640 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8L5J5sasYyP99cu3jNkEaRWMEF/CmFqyU2mfujTrd8DZluNDCEVVospAzUupWhjTU2KjyEijOJtS7b/06p6zRdnaV2L9cMxR0YyspNbUE4fYfP0aiXaC9Yx6IXid1ia/eABjk/QEgypwksTH2qUaXf6fBLA7JydDLIpmIbQ9foQIDAQAB
  3248. 16:27:50:779 INFO 7640 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3249. 16:27:50:857 INFO 7640 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:CYHNtzwsCGtlz0S09e4195zsZOjqWVpX","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3250. 16:27:51:971 INFO 7640 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3251. 16:27:52:272 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 98e0b0a9-e24b-4b56-8afc-df3182cbe0ff
  3252. 16:27:52:272 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] RpcClient init label, labels = {module=naming, source=sdk}
  3253. 16:27:52:273 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3254. 16:27:52:273 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3255. 16:27:52:273 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3256. 16:27:52:273 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3257. 16:27:52:402 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105672821_192.168.110.13_61595
  3258. 16:27:52:403 INFO 7640 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Notify connected event to listeners.
  3259. 16:27:52:403 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3260. 16:27:52:406 INFO 7640 --- [main] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  3261. 16:27:52:443 INFO 7640 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3262. 16:27:52:450 INFO 7640 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3263. 16:27:52:585 INFO 7640 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3264. 16:27:52:588 INFO 7640 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3265. 16:27:52:601 INFO 7640 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3266. 16:27:52:638 INFO 7640 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.179 seconds (JVM running for 5.688)
  3267. 16:27:52:641 INFO 7640 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3268. 16:27:52:643 INFO 7640 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3269. 16:27:52:957 INFO 7640 --- [nacos-grpc-client-executor-5] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Receive server push request, request = NotifySubscriberRequest, requestId = 334
  3270. 16:27:52:965 INFO 7640 --- [nacos-grpc-client-executor-5] com.alibaba.nacos.common.remote.client : [98e0b0a9-e24b-4b56-8afc-df3182cbe0ff] Ack server push request, request = NotifySubscriberRequest, requestId = 334
  3271. 16:27:55:016 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3272. 16:27:55:053 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:9snGNQ25rw63CFRJXFmJe4LosFJ7uhQN","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3273. 16:28:00:008 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3274. 16:28:00:053 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HDb3MUwp1pGtEh3pVEC6LZBXu6dSJqn1","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3275. 16:28:05:003 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3276. 16:28:05:036 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:uZfV3Do9heQT1sItKMaxv17RNihgcptF","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3277. 16:28:10:013 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3278. 16:28:10:055 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:c96bSwTem8PU5OnVxYKUo9LQTDrkvTrM","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3279. 16:28:15:008 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3280. 16:28:15:039 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:IT9VCMXpFK574T3ipBHBneCnalGZ8PEA","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3281. 16:28:20:001 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3282. 16:28:20:033 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:cmlmL2sY7IshOiFjQh549kbpWr90WNLj","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3283. 16:28:25:002 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3284. 16:28:25:037 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:YYITQiRsMYKMe8a0sCDvYZKk4gNSVBFD","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3285. 16:28:30:009 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3286. 16:28:30:042 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:oqUM187CgvZyKwT9AnJEe3VwTmyckd7Q","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3287. 16:28:35:014 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3288. 16:28:35:054 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:g9VF31lyapGHEKNDi0ulSUQGXpgnKsDw","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3289. 16:28:40:008 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3290. 16:28:40:039 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ko7K1XrzqhDu6wv4DClR8pXciTIG4L0L","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3291. 16:28:45:009 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3292. 16:28:45:035 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:kqsFdr1voO70jJHxlgbUVBQ2YbS2SIhx","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3293. 16:28:50:008 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3294. 16:28:50:046 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ktbvSmdryRlE32ek0xmYIIW5RzDXt2mg","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3295. 16:28:54:919 WARN 7640 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3296. 16:28:54:919 WARN 7640 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3297. 16:28:54:921 WARN 7640 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3298. 16:28:54:921 WARN 7640 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3299. 16:28:55:001 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3300. 16:28:55:029 INFO 7640 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KNNpwQJGc26lxJjnhvNS3aVSDxHORNEV","refresh_token":"PQYuxV7IztkhLmDnp8DXWRT4IOEdNSjS","magicId":"SjSNdEOI4TRWXD8pnDmLhktzI7VxuYQP","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3301. 16:28:55:035 INFO 7640 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3302. 16:28:55:037 INFO 7640 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3303. 16:28:55:362 INFO 7640 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  3304. 16:28:55:363 INFO 7640 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@15732464[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3305. 16:28:55:363 INFO 7640 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105672821_192.168.110.13_61595
  3306. 16:28:55:366 INFO 7640 --- [nacos-grpc-client-executor-23] c.a.n.c.remote.client.grpc.GrpcClient : [1723105672821_192.168.110.13_61595]Ignore complete event,isRunning:false,isAbandon=false
  3307. 16:28:55:367 INFO 7640 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@45e9cc5b[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 24]
  3308. 16:29:00:125 INFO 3128 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3309. 16:29:00:552 INFO 3128 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3310. 16:29:00:553 INFO 3128 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3311. 16:29:00:566 INFO 3128 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  3312. 16:29:00:647 WARN 3128 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3313. 16:29:00:690 INFO 3128 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  3314. 16:29:00:915 INFO 3128 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3315. 16:29:00:920 INFO 3128 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3316. 16:29:00:920 INFO 3128 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3317. 16:29:00:992 INFO 3128 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3318. 16:29:00:993 INFO 3128 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 858 ms
  3319. 16:29:01:468 INFO 3128 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQChL1CqQT3v4Y/KOJVvvFXT73JHNV0PdggonfsfVVzbwbvZMHz257Av4ZD4Zk/bXuDpXeEAHC1tjZd58EmmGojYyCgfBDYH0WNWXwqyfi0Mr1U5pxvswMVKAvFtm/QSKfKvygK+NGOBOtzuW8ZQ+DzR6VMzSIup6G42C5BQ5KKUIwIDAQAB
  3320. 16:29:01:469 INFO 3128 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3321. 16:29:01:543 INFO 3128 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:16v82sGsK91hxsJVisw1vuAxF3BWgC9c","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3322. 16:29:02:640 INFO 3128 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3323. 16:29:02:929 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 6e996fce-0d41-4685-8214-a059d5c71111
  3324. 16:29:02:929 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] RpcClient init label, labels = {module=naming, source=sdk}
  3325. 16:29:02:930 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3326. 16:29:02:930 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3327. 16:29:02:930 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3328. 16:29:02:931 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3329. 16:29:03:055 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723105743479_192.168.110.13_61809
  3330. 16:29:03:056 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3331. 16:29:03:056 INFO 3128 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Notify connected event to listeners.
  3332. 16:29:03:061 INFO 3128 --- [main] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  3333. 16:29:03:102 INFO 3128 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3334. 16:29:03:109 INFO 3128 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3335. 16:29:03:264 INFO 3128 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3336. 16:29:03:266 INFO 3128 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3337. 16:29:03:280 INFO 3128 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3338. 16:29:03:318 INFO 3128 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.125 seconds (JVM running for 5.637)
  3339. 16:29:03:322 INFO 3128 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3340. 16:29:03:324 INFO 3128 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3341. 16:29:03:624 INFO 3128 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Receive server push request, request = NotifySubscriberRequest, requestId = 337
  3342. 16:29:03:632 INFO 3128 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [6e996fce-0d41-4685-8214-a059d5c71111] Ack server push request, request = NotifySubscriberRequest, requestId = 337
  3343. 16:29:05:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3344. 16:29:05:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KILLiYPYi7tPgbaAGV5psoIVplryQI2Z","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3345. 16:29:10:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3346. 16:29:10:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qyyPHTLGogbSPPuPywR7zOzGxvSWZMkZ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3347. 16:29:15:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3348. 16:29:15:057 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:PR7oIqQ96x7U6Teu5nVhsng0yKTkCK2W","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3349. 16:29:20:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3350. 16:29:20:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:V24lRcEbcslLZJJZPrQVgWn7saoH8TTG","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3351. 16:29:25:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3352. 16:29:25:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:bKoGwwmzBeOQ1dKGAmQ7PZxW5qSGm2W8","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3353. 16:29:30:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3354. 16:29:30:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:dJJMjnkWBX94SGZ6ZCoponchyTfuEBEO","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3355. 16:29:35:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3356. 16:29:35:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:p1QHhSjFWdowQ3ukDC7qxR3HqLknlxCI","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3357. 16:29:40:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3358. 16:29:40:030 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:B9Br1mS96XPVsPukEuWp9LOCAGTArTj6","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3359. 16:29:45:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3360. 16:29:45:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:MosDX9qMhxVP27j3qjytrOQGJfqNE01n","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3361. 16:29:50:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3362. 16:29:50:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:bHI1MYuQwosEr9tssznXhOiPj7qs1hYC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3363. 16:29:55:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3364. 16:29:55:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:S1w1bFxF159lyzGcVHCYH9cKUgKe7yOG","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3365. 16:30:00:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3366. 16:30:00:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HVx9FuQy1VxOb0osSahS38EivJW9Ji6G","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3367. 16:30:05:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3368. 16:30:05:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Z0rTAlw4pzhtwG3NAjdLrkssKSenKBKA","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3369. 16:30:10:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3370. 16:30:10:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:akwaVFjmCsgKeDi0EK7BdVoDmRHC4FVm","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3371. 16:30:15:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3372. 16:30:15:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:f3rf3euoE1iQsCpVHlhZPITuVOIRyDKR","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3373. 16:30:20:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3374. 16:30:20:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:w7GDpGwY0f3btipnwOM6Cbid1qEpEhyJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3375. 16:30:25:000 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3376. 16:30:25:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:tqrsiLjlNPSCorNzY7oAMpW6wAktthn1","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3377. 16:30:30:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3378. 16:30:30:050 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:yDNrOWwh0bTlvZUkIg5YBC6mELLwl3xz","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3379. 16:30:35:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3380. 16:30:35:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8VqDgBEVCXc7wXDI0cICeBVUZ5EyoTO8","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3381. 16:30:40:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3382. 16:30:40:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:IRts4ojoBEgSCoJHXyN936gLdFmKp3Mu","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3383. 16:30:45:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3384. 16:30:45:052 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:cTpSuMhTMSqs4Q0cPYyocNh1A3FNXZwX","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3385. 16:30:50:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3386. 16:30:50:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:C0tqFKjRpPuIJ93WOH3g8nR1ondZGIBD","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3387. 16:30:55:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3388. 16:30:55:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:vYMF1pBjQ6UAzak7FyWfuzsmxtBxoM09","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3389. 16:31:00:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3390. 16:31:00:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KrsPvrE3EC3M9cun0UZixgdEuvSzSsyr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3391. 16:31:05:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3392. 16:31:05:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:tmwAeQczCuKaI6K580yXkXsq56RpL5iH","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3393. 16:31:10:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3394. 16:31:10:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:vHOZohFHJuWy20Bx45jFOhbDr9IlfpAJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3395. 16:31:15:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3396. 16:31:15:053 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VEtwlReA81haju903QPSKkf9E6djJVC6","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3397. 16:31:20:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3398. 16:31:20:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:PzApq2XEAvfhWdgFtd8NLDuuPXl3S5fI","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3399. 16:31:25:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3400. 16:31:25:050 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:A5K5WdwGObMxzhzywhw4Da2mBjhMDkhD","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3401. 16:31:30:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3402. 16:31:30:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8FwkbRcV1BS3w40FUyFcNjJi1q5fNqXb","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3403. 16:31:35:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3404. 16:31:35:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:n2pcx2IRZWh2aUrJSCl1xSqCjeKfLAe7","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3405. 16:31:40:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3406. 16:31:40:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:i0pexZStxlkoKIElqWKwuLhBRgu27nyp","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3407. 16:31:45:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3408. 16:31:45:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ekuHxyNE7kubeXdFqQKtpvnIb7I9FB0s","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3409. 16:31:50:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3410. 16:31:50:030 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ZjisocnzZs1DCWN2UZ6TgbnFmKYL4VSH","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3411. 16:31:55:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3412. 16:31:55:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Yi2z2Y4FCZkBMzOV2ZpBNogzDvqayCVf","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3413. 16:32:00:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3414. 16:32:00:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:lrWxkTzxaw2WToxYhsxpfAvQNIHV7pkP","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3415. 16:32:05:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3416. 16:32:05:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:pq0PETelReTjkqFJoeRErJRn9HdN4L3J","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3417. 16:32:10:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3418. 16:32:10:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HmFDnw6h3myJy10P9ZIFL7ePGme5xpEr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3419. 16:32:15:000 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3420. 16:32:15:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hL9W4zK48bGmv979qAE3iR84mR0Dau9H","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3421. 16:32:20:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3422. 16:32:20:052 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:No7xDUGAjep0ytsm4ShG1E69Jg9yFMem","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3423. 16:32:25:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3424. 16:32:25:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Zo7p3kBmmwzwwfPiRkBgES1Zw986QG60","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3425. 16:32:30:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3426. 16:32:30:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:YZnQA3DBQR3835vKU9m3K4zeSK2f0rZh","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3427. 16:32:35:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3428. 16:32:35:050 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Be8tfNuqGEx3Rquqi0w0jAAXMLDtYOAi","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3429. 16:32:40:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3430. 16:32:40:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:rssvzBPZAT5x2zPcHCTZByoFoRy3GbeQ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3431. 16:32:45:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3432. 16:32:45:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:N9CF8cXU6IgmOcFofIZVxtceEnBj5x9R","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3433. 16:32:50:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3434. 16:32:50:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:buvid1xpb5d0aGKtkcKmlyqMm74enWer","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3435. 16:32:55:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3436. 16:32:55:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KcotQzmz2tHnKunYmlIJpYA8mR1jW8jM","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3437. 16:33:00:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3438. 16:33:00:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:y4d7Q72XCjGAl3NznvJfSu4A8zcYCvCl","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3439. 16:33:05:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3440. 16:33:05:044 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Y7LFGhHmECjWMEau3UMikMSHL9GXRqgk","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3441. 16:33:10:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3442. 16:33:10:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jZpg0FhAqaBMhNZNAEpMlg71jZZd1yPj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3443. 16:33:15:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3444. 16:33:15:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Px4ctlJ7aVR32fSKyuEiz9MDg7U5p5Io","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3445. 16:33:20:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3446. 16:33:20:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:p4M8y0Q3VWpPy1lO09xh8vW6ihEIzosL","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3447. 16:33:25:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3448. 16:33:25:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hbpn3xjU9CxbSRuCbeeA6svv2yK3GkU3","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3449. 16:33:30:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3450. 16:33:30:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:UgvMF02sS65N4W4NuNFoA8EqGYdO6sIb","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3451. 16:33:35:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3452. 16:33:35:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:GJkKQhdOuSj1694AZEX5r96oVQ61UI8j","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3453. 16:33:40:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3454. 16:33:40:055 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:3vP8Teq5tVNaDYDf0C2KTAbMYOzHaGqu","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3455. 16:33:45:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3456. 16:33:45:031 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:CN7R2Ogwr2uUidszbcDJRNIuBD1x2lE4","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3457. 16:33:50:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3458. 16:33:50:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:OySHx5F5nnGMGUANtGC9kshoRv9tpq0L","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3459. 16:33:55:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3460. 16:33:55:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:R034fUYrKYEAxJtKCID43FHEky4DUzM4","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3461. 16:34:00:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3462. 16:34:00:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:e2Ffgd3JuQx9Q4rF7aSs1BhQzwYLCU8i","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3463. 16:34:05:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3464. 16:34:05:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Xx72lMkPl5mgJzKEb3TFtV1MfLsTs6Jj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3465. 16:34:10:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3466. 16:34:10:051 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:EWq0YwLLJi6fKqL9A2mawUGF2Id96fql","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3467. 16:34:15:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3468. 16:34:15:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VbQUatMqfONXgzbwGhbqzdDFQfOq5IMg","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3469. 16:34:20:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3470. 16:34:20:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Ig7911aCrwNb5uCcIgrnMFW4JfeILFXV","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3471. 16:34:25:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3472. 16:34:25:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ObNfPBmjSoWgph6JuS48Bi5UWbHvCulK","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3473. 16:34:30:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3474. 16:34:30:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ZANomXnOT3X7MubJun00dBwuzZG9NuIr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3475. 16:34:35:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3476. 16:34:35:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:3RWyeqez2q72BJERHA4l14GQpQTmFffP","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3477. 16:34:40:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3478. 16:34:40:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zeny0hjPBHTKQXul3FNYbIoIr62xlAcJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3479. 16:34:45:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3480. 16:34:45:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ZcmePxJOnEgxyqH6kHW12J91RJ3oLIuQ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3481. 16:34:50:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3482. 16:34:50:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jNsdYTpWxjbcf9BOPgkltfElsIYFfI03","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3483. 16:34:55:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3484. 16:34:55:056 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Kd0yG5A5opB89Mw7UWEI6WNBhZiGlCSl","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3485. 16:35:00:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3486. 16:35:00:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sxsCUCgdLg1azDZ0IyyNXReTLNNGSYm1","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3487. 16:35:05:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3488. 16:35:05:044 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:T4CHjTGbnDIYdpv9U0yYcCWoztoY183X","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3489. 16:35:10:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3490. 16:35:10:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:x3qVQXq9BvXtTJb2xT9hguRaDy8QhPZB","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3491. 16:35:15:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3492. 16:35:15:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VpPmlKtVLamMC3RpnRo44FvIu967KEou","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3493. 16:35:20:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3494. 16:35:20:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Wm0WHa9YwauYdKQVfeyjcKfo5WyCuumj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3495. 16:35:25:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3496. 16:35:25:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:WL3bGA7FFs7acq4csAFWtPWQgRLBfA87","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3497. 16:35:30:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3498. 16:35:30:050 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:iDLeZqCtT0ov241az8X62OgMaO0zawUX","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3499. 16:35:35:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3500. 16:35:35:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:fiWnBlybqcSfZnrGbu8RPWA8hvdNDFSD","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3501. 16:35:40:016 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3502. 16:35:40:059 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:arkQ4deCuzAn9Cczfu0026IUprfrwwpT","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3503. 16:35:45:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3504. 16:35:45:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Yimb4tinjbRbamGA4JsAQxMYyqV8RFL8","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3505. 16:35:50:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3506. 16:35:50:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:BGmYa5upwhvN1Bz7re2mmd7kK4l79HQ3","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3507. 16:35:55:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3508. 16:35:55:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:gmiJLpPU4yNzWTnop21BOeP1Ao4vIhmW","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3509. 16:36:00:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3510. 16:36:00:054 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:feFgOCLCGFYJgaTdgsCKxPuv2crKtWFw","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3511. 16:36:05:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3512. 16:36:05:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:AKim7X1JnU8KoLd4590lmCJfZrJQAebO","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3513. 16:36:10:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3514. 16:36:10:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:s44RAb5esYn6nHpbW2dTXkYFTX9gDNtQ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3515. 16:36:15:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3516. 16:36:15:031 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:0rFiO8WgqFr5pmBWAyQoTOcB4P6isTZm","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3517. 16:36:20:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3518. 16:36:20:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ITh3EIh5O17wlDicNmJUSRx5Oo3nHxfm","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3519. 16:36:25:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3520. 16:36:25:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:4qDyEmbsarD5p5VMr1nvVhUImTz2R1yq","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3521. 16:36:30:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3522. 16:36:30:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:5wIxPulLPBllDsHljRZPLANFRcMv14Bw","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3523. 16:36:35:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3524. 16:36:35:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:U6TausPmgc1xTvuqBmEqerQ3KXdfI5OX","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3525. 16:36:40:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3526. 16:36:40:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:j5I4alVD3UViZ3Lf7oZgMt0g7OiRxQt7","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3527. 16:36:45:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3528. 16:36:45:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:AFHvgSioWmrDcrR4IUd6mwWDOCydjM8G","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3529. 16:36:50:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3530. 16:36:50:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Z5PpaFcaQVH0USfoKfJojO45CcfdfptP","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3531. 16:36:55:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3532. 16:36:55:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JE6WGyuW0PMGVft8ahu81fgC9KhrxvOV","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3533. 16:37:00:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3534. 16:37:00:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:SRhq1GGLWysiDkmq2AqUsn7HbNVf1nam","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3535. 16:37:05:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3536. 16:37:05:051 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zj9eXuoSQsYPrsXrqKA6g9jdzd9FjZhS","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3537. 16:37:10:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3538. 16:37:10:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:CSWrbEet1RoqD8H7qiRNfge8anlJYmsz","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3539. 16:37:15:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3540. 16:37:15:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:B8mxFMytnA4ieoT5gtBTm3kt5GwMpQY9","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3541. 16:37:20:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3542. 16:37:20:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:bI4HsycqlmuBLEUCqqvdUAo3oYTOubvl","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3543. 16:37:25:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3544. 16:37:25:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:rQWMHmrhX4xHQHhkkPRg6kCAgIuCH5vM","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3545. 16:37:30:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3546. 16:37:30:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ctrIlWmNGLttCnkDSiefvNy8rY5cgdK4","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3547. 16:37:35:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3548. 16:37:35:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:t4uQCW1NMYcFUQNgbXsA0FXTYoUVlJ5o","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3549. 16:37:40:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3550. 16:37:40:044 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:1oLgAsMIcsPsBYVrZcjQbLsy49MhJuyT","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3551. 16:37:45:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3552. 16:37:45:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JaEMpC3tfrYu6Re2zZ2KMBQqNL87RRa3","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3553. 16:37:50:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3554. 16:37:50:050 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:pGIRjk7NY3vMyO8fRkEfMappCUNAoydq","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3555. 16:37:55:000 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3556. 16:37:55:031 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:YG32WcOv2XBjlAuv9cQmHCMjZKRSVu0Q","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3557. 16:38:00:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3558. 16:38:00:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:QiHUXRzw0IZ9JTDCgUufnefGtwnjKyP4","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3559. 16:38:05:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3560. 16:38:05:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:x4YtFBwySlWgxGl2ZYY5k7nlTSYOanvZ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3561. 16:38:10:016 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3562. 16:38:10:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:LHs2rE64q83hjyjdtXchl0RxiAxa113C","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3563. 16:38:15:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3564. 16:38:15:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Zt0PGaJ6eeRiMMRHAUHSjqbXPvFkhwAq","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3565. 16:38:20:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3566. 16:38:20:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ARE5w6NA6FrWF9Sqcxi0AdpNFgPaft2D","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3567. 16:38:25:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3568. 16:38:25:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ta3wlFcqyfSoDYSmGiShj2lWVVprhgik","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3569. 16:38:30:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3570. 16:38:30:027 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VORmAjePJPbSDHUUHmFdo9NVUiWkXjyg","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3571. 16:38:35:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3572. 16:38:35:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ChrzChb9WWXUK0Hirj0x8fg46vTDVD3W","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3573. 16:38:40:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3574. 16:38:40:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Hsd4tel9YR0ZQ2QjcgNXpnbNxbZolAm6","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3575. 16:38:45:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3576. 16:38:45:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:glztSPct61su8M7XkYny7X4TVKGj3oaO","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3577. 16:38:50:016 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3578. 16:38:50:054 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HwffCmq1hJ5Wu8bBMs4uJxfAlZ4Vv0zn","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3579. 16:38:55:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3580. 16:38:55:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Vrk0TZMJnd7rTib6oka1eNbaxsmgwX8B","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3581. 16:39:00:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3582. 16:39:00:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:1U4S9Uctki7GBPtzxbkSKLpg2nC5APIt","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3583. 16:39:05:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3584. 16:39:05:052 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ZHjOMHUi8AxBdWjPkZrblLk9cX2pIVkV","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3585. 16:39:10:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3586. 16:39:10:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:eb1Q25mPbaVOMSKI6TyV9FKHUFzknQND","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3587. 16:39:15:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3588. 16:39:15:051 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:a9umPoXzXiGgTzhLiKf7HL3Yg2WoXt8C","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3589. 16:39:20:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3590. 16:39:20:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:0uv50Cm15aC3yGKiKGl2w1Xq5GboyPTm","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3591. 16:39:25:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3592. 16:39:25:051 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zwN0daEhR9Homg6SLcURRCCYG3u68vb6","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3593. 16:39:30:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3594. 16:39:30:053 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:mgsDw6lqOm2OQDti9wpIBFBcNpwZ27cr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3595. 16:39:35:025 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3596. 16:39:35:060 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:y0G69g0nWQ4SbJ3Q79uCFVOfa22Ku4XK","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3597. 16:39:40:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3598. 16:39:40:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HMXuSARifFhsrITZxSsciX6wehTc22a9","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3599. 16:39:45:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3600. 16:39:45:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:wCI1lyMuHTGqKow2eSf2V2KLLrTUiZ4m","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3601. 16:39:50:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3602. 16:39:50:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:TQyk3HnW9mY3hr13u0D6fVlGyv2Sfmbb","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3603. 16:39:55:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3604. 16:39:55:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:9JAUMZZgmB6piGcjy64kT38kvWJgJQkf","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3605. 16:40:00:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3606. 16:40:00:062 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:iIZShX3WQ7dV7cuKwjHixIdFLZr7HgTZ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3607. 16:40:05:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3608. 16:40:05:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:imNJVnfwNSSvfLGhYluIimP21oR7e2RC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3609. 16:40:10:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3610. 16:40:10:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jwFwEsE3txmhRmD7sBXS9Av4GJFnj2YT","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3611. 16:40:15:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3612. 16:40:15:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:DF5CzztMOCBCvgnVL3CJhBo6Bug4ovo8","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3613. 16:40:20:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3614. 16:40:20:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:PKQstGyLC4Y9KD4Hej6G8zzi9dvpTp6S","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3615. 16:40:25:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3616. 16:40:25:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:7Xg55C9CyaJtcGxYDRg8kODcc0c36IIU","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3617. 16:40:30:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3618. 16:40:30:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Vp4A5gmBv1AlRQSNcKwBdq5s48iQD8l8","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3619. 16:40:35:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3620. 16:40:35:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:J7t1snqIlgML7yuivd7ztgb0J6tZkaHe","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3621. 16:40:40:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3622. 16:40:40:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:nNXNyEpvev79oIJAUn2xan05PvNKkfA9","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3623. 16:40:45:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3624. 16:40:45:047 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:E1zZbpZdfZJIlHIhWukORddT5HUGHRnf","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3625. 16:40:50:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3626. 16:40:50:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zvmJ88rd55ga2057uEMakIQNoWbGxtwG","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3627. 16:40:55:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3628. 16:40:55:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:HjZdDRZ4jeNu7et2ju4bTwVuzZkQShqr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3629. 16:41:00:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3630. 16:41:00:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:wjiB9U2q0d0BxUKrrsZAhpXeGDszuUUX","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3631. 16:41:05:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3632. 16:41:05:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:kIVUCbTQIXsAUh5oOizQ7iRpKKksIWht","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3633. 16:41:10:000 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3634. 16:41:10:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:O9JcDwzDD9GYdYnRvERvvl4FgJb8q78n","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3635. 16:41:15:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3636. 16:41:15:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:6Z7VF0BXE643g4R2xeHrGAk6baPEw8JK","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3637. 16:41:20:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3638. 16:41:20:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Z4q2CkGz5mjLueX1Y9uJnYS0Z0QZ6bhj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3639. 16:41:25:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3640. 16:41:25:030 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:fp5TQk5yQdq6oh8Sh6okyUcERRPHWGQ9","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3641. 16:41:30:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3642. 16:41:30:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8yeZTbUSUlEY7aICRPqPCzPI7Dg1NON2","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3643. 16:41:35:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3644. 16:41:35:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sFtKXTpXFZoPJYVcsnyAzZdmi3FR0Mqx","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3645. 16:41:40:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3646. 16:41:40:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:DJBVxVv2188qC5xvIzPlznXf6U2K9jxI","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3647. 16:41:45:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3648. 16:41:45:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ZVuQ8my3spmRboPJaYFGy799QaZ0bNFS","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3649. 16:41:50:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3650. 16:41:50:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:xIZVTsx1dWmOSuY2Z9qvvDfy7WH2lgtB","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3651. 16:41:55:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3652. 16:41:55:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KD8lBVnvw1wvmqrfiUyRt1VVTbvfQxB4","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3653. 16:42:00:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3654. 16:42:00:053 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jl3RGxdvcPBUCqLmbytWf9sGgnnH7Mx0","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3655. 16:42:05:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3656. 16:42:05:035 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Ku6MHkGw4w2TrE0z1jhxaFuC6oOm9pXr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3657. 16:42:10:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3658. 16:42:10:044 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:FqaSwtaNLyxLDn1M2ceaT6ebSAXbnBoC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3659. 16:42:15:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3660. 16:42:15:053 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Wwt1meW0B1y0Ev0PKRpne88FAlfF2FWq","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3661. 16:42:20:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3662. 16:42:20:032 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hSv7Vr0BsusBWh8YVtubgEPRupG7KRlo","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3663. 16:42:25:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3664. 16:42:25:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:mJLvs9CYoiky9tQpdn1IkJ5ernkSL3fT","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3665. 16:42:30:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3666. 16:42:30:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:f4Uf4hcIQUa9yVwhjriJz2tCmdSuZoL5","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3667. 16:42:35:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3668. 16:42:35:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:N2fIS7qTZcqVaeJxFGrXrDjRqd1607uC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3669. 16:42:40:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3670. 16:42:40:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Dg58MWDnbfPYWIPItp9izL99laUrt8ts","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3671. 16:42:45:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3672. 16:42:45:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:6hLgQCvHGbnwVDMmeTwYVyf0Smnsyqck","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3673. 16:42:50:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3674. 16:42:50:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:1pS4bI11aq6ZL1JR3Wp1v2mmP3TEUicr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3675. 16:42:55:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3676. 16:42:55:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:LSntzsFi8OvuUcS3NAt29AlpWteWSFAA","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3677. 16:43:00:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3678. 16:43:00:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:tFJpNbzMFTSazNQNF0qiNj4HKlrH9wGj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3679. 16:43:05:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3680. 16:43:05:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:3RQuf6PSireibiBRgPUL2jZ4VCayJyVk","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3681. 16:43:10:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3682. 16:43:10:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:TB8SyXPfnB7wIAD3THdeAmYm2nY4iExO","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3683. 16:43:15:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3684. 16:43:15:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8Za3C8zaXjSGvT5p3yvUVa3fVu2lJmHU","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3685. 16:43:20:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3686. 16:43:20:031 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:g3I9dV99WAm98md5fMn9x0tKOmzGpWyQ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3687. 16:43:25:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3688. 16:43:25:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hICtRLfqAtX1CN6AAYZggcLydVrFRGoJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3689. 16:43:30:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3690. 16:43:30:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:j4xlxYUwRyLh5MnM9JnTSUFHnRS9NdAb","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3691. 16:43:35:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3692. 16:43:35:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:OxSN7G6JlkrHedk4c3yjx7hqsKtTEWJp","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3693. 16:43:40:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3694. 16:43:40:044 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:RTWyDvUBZWsbOrQYTX6ZoNYubxhLAljI","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3695. 16:43:45:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3696. 16:43:45:047 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:aHlG3YrJ1HFV37eqEwGln9Lc7vkIqwHg","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3697. 16:43:50:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3698. 16:43:50:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:e1MKDIqAjeiA1O83WH1g5oKRzDy9TbPc","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3699. 16:43:55:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3700. 16:43:55:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:697mirRdANFVhjrFUHTP4jOFXmtiuhID","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3701. 16:44:00:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3702. 16:44:00:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8gBGNVx7TRDZbBv51XYChJNrhOHQcliw","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3703. 16:44:05:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3704. 16:44:05:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qa5XoTm6rwl9nuQr8DCPGDdGIb2jzZgl","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3705. 16:44:10:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3706. 16:44:10:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jeJyEtHJ723dc16A6Ex4bTbMH8YK4B6v","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3707. 16:44:15:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3708. 16:44:15:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:H3maQrkUOPgL3id6zXNMoXs5wu8dAa9O","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3709. 16:44:20:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3710. 16:44:20:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:1Wj7ZAolG0LF8UK99hc8gDMJABsuUmNH","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3711. 16:44:25:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3712. 16:44:25:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qtoHVbiPcms5JsicouANXRNHS9ZBjE2j","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3713. 16:44:30:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3714. 16:44:30:056 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Hv4fgfgAsb2wpxOjhttoFtnn7OrAgEDE","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3715. 16:44:35:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3716. 16:44:35:031 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:iMV4StxxDkBeqHuFbSbcRMgQO081i5J1","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3717. 16:44:40:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3718. 16:44:40:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:XgfunehFC2YPnuEm314NOJryF7qGsD8U","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3719. 16:44:45:016 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3720. 16:44:45:051 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:MkfV6og1VYkdITxJqAmgJfKFz0toH61o","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3721. 16:44:50:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3722. 16:44:50:033 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:58cYRsLivxEtMSoc8MtZvL02KIoPElBj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3723. 16:44:55:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3724. 16:44:55:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:biilrcgr7RrPbdyAJfaawuVeShzC3vsO","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3725. 16:45:00:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3726. 16:45:00:056 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:3DugFyVXBYdA79toip9Fqtk3rqnQzxgy","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3727. 16:45:05:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3728. 16:45:05:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JlSjksk2ja1jnYEjKY1U1Ik9jJm4PujJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3729. 16:45:10:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3730. 16:45:10:050 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:b3omARyCUb6f2UeZwRLKCRRdjEHUQZHN","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3731. 16:45:15:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3732. 16:45:15:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:QqQttd3HXYSTgPdGKKHS0D7v38sQiJ7O","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3733. 16:45:20:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3734. 16:45:20:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:O1p37Lr3feM1GQ0hi2B8Yut2M9Xgqhuv","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3735. 16:45:25:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3736. 16:45:25:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:QL7UcwBss5ZcoK2rSWuUQE9V3M3Hg5pS","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3737. 16:45:30:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3738. 16:45:30:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:JwQNkdeX4gbfJciDvY3pBmoSZOuBJssC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3739. 16:45:35:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3740. 16:45:35:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:yXfUTfevW4UKRJzVO718ToNRI8KOaqQk","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3741. 16:45:40:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3742. 16:45:40:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:nT33fo8hiWgAIqzcWkN81Wss50MBJFtC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3743. 16:45:45:005 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3744. 16:45:45:031 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:E40STClUlHhans542QhUwrfVJk58UZCV","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3745. 16:45:50:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3746. 16:45:50:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:9IcW8oOF2Mpt4qMPQD3FqKkK4i7Lvoh5","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3747. 16:45:55:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3748. 16:45:55:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qlNDFhN0pOpgvKTAP15HWvb2U9NgBaPG","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3749. 16:46:00:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3750. 16:46:00:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:9W9rwjZ4uJKe24Tc6WkVQ41IpN6c2AnC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3751. 16:46:05:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3752. 16:46:05:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VR3iDhHiBKivIXdVREqQiSJmWbHu4KRw","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3753. 16:46:10:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3754. 16:46:10:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8vHqaRlFSkcsKPKTK75n9CxWPYLTnEFG","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3755. 16:46:15:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3756. 16:46:15:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:vf2o6sAhpINyREfIYSjTbPbbozWvFqsY","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3757. 16:46:20:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3758. 16:46:20:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:hJg8ny2HfUjlaWCZt3UNyxx0w4x5BWpr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3759. 16:46:25:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3760. 16:46:25:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:XA2dG1AsDtwUUlaLKJ3AGBFGDEmSSkeQ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3761. 16:46:30:016 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3762. 16:46:30:052 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:U4lfIOgxF34a5NdLALr4jQy8c2diMXxC","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3763. 16:46:35:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3764. 16:46:35:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:YoPhaIOANCzZ094vTkUMhjQ2YnMfnCMW","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3765. 16:46:40:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3766. 16:46:40:044 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:UVER2N4vlvb22Rc85AS3qPzXaTBhR8Tq","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3767. 16:46:45:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3768. 16:46:45:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:1w32Of3vbcb2oJIZ8JqtycVQ6H2X6AEV","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3769. 16:46:50:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3770. 16:46:50:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:N4FgpuLlJUQvsV1POlIxCbs0IOMAiNsu","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3771. 16:46:55:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3772. 16:46:55:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:xfa9C68rn4l221HNPNFDU1Aa0XHk7N23","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3773. 16:47:00:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3774. 16:47:00:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sBr9ZUubHSs88z2NPHOxOpb3a4ddVvlW","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3775. 16:47:05:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3776. 16:47:05:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ss0JMsfNZjVckKPCNn1ODGyMXURsFXrr","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3777. 16:47:10:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3778. 16:47:10:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:XMzghemu7d0FsjMknyo2PAieibhbxYvl","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3779. 16:47:15:017 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3780. 16:47:15:060 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:K3WbYQn3tDxdTxIAAKV85Vtur8KZxh1X","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3781. 16:47:20:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3782. 16:47:20:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:a6iopVdNmE0lvTeZ1ohd6nLsXr763WEn","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3783. 16:47:25:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3784. 16:47:25:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ByLtyAHsdQhxAAYMSl9393rsfWgDHneO","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3785. 16:47:30:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3786. 16:47:30:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:QNgSiJjggMG7sba5biFUNGEZdO0Y9JCN","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3787. 16:47:35:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3788. 16:47:35:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:8fuFlm10ArsvHI17Ck4qtZZMluEUOId3","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3789. 16:47:40:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3790. 16:47:40:040 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:t8S4XbX7fFoWnkmadB05UM1piyrNCxTS","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3791. 16:47:45:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3792. 16:47:45:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jQANIFgdeefkhupzRlMH5q9ywwltccuJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3793. 16:47:50:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3794. 16:47:50:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:SIqyyCcevTIQDGozaaz1hTvag17LrcTM","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3795. 16:47:55:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3796. 16:47:55:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:WtDcE3EbSMxsr59o98eAaY3VRmoDz2vn","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3797. 16:48:00:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3798. 16:48:00:053 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:xCjynTwzrhNy1fsVz3UJdjcKF0rhoTB6","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3799. 16:48:05:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3800. 16:48:05:032 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:FZRq0Um3F45Cb7jopKtSbGI3KGBEMGeW","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3801. 16:48:10:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3802. 16:48:10:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:smGpLHY1LY3puah0BrGh8Y04OsXM4QUc","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3803. 16:48:15:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3804. 16:48:15:051 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:xFIfZmOaigLZoNslNk19vSqqzTS8m62W","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3805. 16:48:20:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3806. 16:48:20:028 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:y0Dt6HCEkoUCyEbluDT2g37Ki8O2QvMN","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3807. 16:48:25:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3808. 16:48:25:058 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:e3HptE1Shn76TYjc2Gk6MTjlZx09HN49","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3809. 16:48:30:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3810. 16:48:30:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:V76Yjjcsj288c4p7q9mrx9fWupPStYJN","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3811. 16:48:35:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3812. 16:48:35:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:kRMOqF0PdYJvtap3fyBM4uOvFQEGd6LD","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3813. 16:48:40:009 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3814. 16:48:40:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:lmXI0V1jW9Z3NqjTsQoAJqV8PH4ajSWq","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3815. 16:48:45:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3816. 16:48:45:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:50gJ8RwpWIkgzzQsCmABagDiPjdVwbCj","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3817. 16:48:50:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3818. 16:48:50:034 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:vNAzKzIpELkfVB88siBVoyakTaT5bt67","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3819. 16:48:55:013 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3820. 16:48:55:046 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:fuioNL3Ik7NL4GcLDHEDLYPItbQHK5Zu","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3821. 16:49:00:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3822. 16:49:00:045 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:x6Jn2gu62fPuv6XFetsNrH4GmhsdERnk","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3823. 16:49:05:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3824. 16:49:05:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:eLRH6weUqHg2Iib9w3oU6to1XvlLFGrk","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3825. 16:49:10:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3826. 16:49:10:055 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:qX225zkdJ0g5Fpf6saTnkliYCwrrZpOh","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3827. 16:49:15:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3828. 16:49:15:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:TsokrMDqp9L8VSsSWxMY3jz5PpK7nXeJ","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3829. 16:49:20:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3830. 16:49:20:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:NV29jutwPMgC2Dd42B2X0dqO4ini4P0n","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3831. 16:49:25:015 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3832. 16:49:25:048 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:KW6X1DfKYYibYLbGjWf5QEdgBZc1BqQG","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3833. 16:49:30:011 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3834. 16:49:30:036 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:RiURZWG5VzIcclXcUnmLMcY07otP3BTY","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3835. 16:49:35:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3836. 16:49:35:028 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:oriOqRRyjc1tH8DURvRRj1CE69rCvt9m","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3837. 16:49:40:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3838. 16:49:40:038 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:GTr0lY1iIN3O2QMJRxX27p2wZ3qvZtxo","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3839. 16:49:45:012 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3840. 16:49:45:039 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:idSi1htDOnLRAylcwA1PIO3gPWR6lgeb","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3841. 16:49:50:002 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3842. 16:49:50:032 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:jfRgRmWXV9PL6iICl2Cb0UeR4JHfscbs","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3843. 16:49:55:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3844. 16:49:55:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:dQqPRXa99lNQl2mFhSpHBrtpQJBCND1N","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3845. 16:50:00:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3846. 16:50:00:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:tsQnyFYWovfILIhZp9HZwy69CKBx7Z8v","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3847. 16:50:05:014 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3848. 16:50:05:052 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:x8TQrQuejvPDmovVaYIN5nEszpBzQvcn","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3849. 16:50:10:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3850. 16:50:10:030 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VRrGZDAaaX15dHe4273ZadkNg4oCL8x3","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3851. 16:50:15:016 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3852. 16:50:15:043 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:ikR0DC6XAhdQkQrPrNtwVlbOk38QLb5L","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3853. 16:50:20:008 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3854. 16:50:20:042 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:Uj7r1tMMC7TQyKAJ1d3a7iGF0Tw14QZf","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3855. 16:50:25:003 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3856. 16:50:25:027 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:r47wrEx7U43CU43EXEy4P25F2ctiYUsD","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3857. 16:50:30:007 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3858. 16:50:30:047 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:PtFpeflasNEFeZtWHrdKm1dBjxTXkari","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3859. 16:50:35:006 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3860. 16:50:35:029 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:zUDmr0HqQwOO1kjuvC9hI5JIjqJCXZER","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3861. 16:50:40:001 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3862. 16:50:40:049 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:SQWe3rme0nCIY3tNHzUgfhb1BtUWIOii","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3863. 16:50:45:004 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3864. 16:50:45:037 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:6IqsZyXZIxsEC0rp0mjGW9enpT0YVoKN","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3865. 16:50:50:010 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3866. 16:50:50:041 INFO 3128 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:sMad33YiqgzBXeSf99cVr2hsQB6U5U8F","refresh_token":"BEZAiPfPENbYhhN3Vhp5hjJB9ETMY8eK","magicId":"Ke8YMTE9BJjh5phV3NhhYbNEPfPiAZEB","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3867. 16:50:54:450 WARN 3128 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3868. 16:50:54:450 WARN 3128 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3869. 16:50:54:450 WARN 3128 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3870. 16:50:54:450 WARN 3128 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3871. 16:50:54:561 INFO 3128 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3872. 16:50:54:563 INFO 3128 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3873. 16:50:54:894 INFO 3128 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  3874. 16:50:54:894 INFO 3128 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1c3ab07b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3875. 16:50:54:895 INFO 3128 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723105743479_192.168.110.13_61809
  3876. 16:50:54:898 INFO 3128 --- [nacos-grpc-client-executor-276] c.a.n.c.remote.client.grpc.GrpcClient : [1723105743479_192.168.110.13_61809]Ignore complete event,isRunning:false,isAbandon=false
  3877. 16:50:54:900 INFO 3128 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6b6918df[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 277]
  3878. 16:50:59:946 INFO 9552 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3879. 16:51:00:384 INFO 9552 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3880. 16:51:00:385 INFO 9552 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3881. 16:51:00:398 INFO 9552 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  3882. 16:51:00:476 WARN 9552 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3883. 16:51:00:516 INFO 9552 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  3884. 16:51:00:746 INFO 9552 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3885. 16:51:00:752 INFO 9552 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3886. 16:51:00:752 INFO 9552 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3887. 16:51:00:824 INFO 9552 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3888. 16:51:00:825 INFO 9552 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 870 ms
  3889. 16:51:01:271 INFO 9552 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrcpYk5U4KMm2j7kOcLcauokOVP442MZcEpA6P/9gQneG0Q6+JY5WumgLsSTbRPjiYpQ/OvjZXZ+aXRHBuaQTRQ1M6+mOvR4MnzRXfmBidbzcQgOOU46MSv3SpXIe5BxXGVmsRSqaaSC9EIIm3PQf6hYxmXJSUjd9wXM2fhIA3iwIDAQAB
  3890. 16:51:01:272 INFO 9552 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3891. 16:51:01:363 INFO 9552 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:ktpS0FLwfGWCmQkPULmw0ewfK3FDyAFk","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3892. 16:51:02:454 INFO 9552 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3893. 16:51:02:760 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 7a1e0a89-912e-4447-9e5c-437f62cb6790
  3894. 16:51:02:761 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] RpcClient init label, labels = {module=naming, source=sdk}
  3895. 16:51:02:761 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3896. 16:51:02:761 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3897. 16:51:02:762 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3898. 16:51:02:762 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3899. 16:51:02:889 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723107063331_192.168.110.13_64810
  3900. 16:51:02:889 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3901. 16:51:02:891 INFO 9552 --- [main] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  3902. 16:51:02:889 INFO 9552 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Notify connected event to listeners.
  3903. 16:51:02:937 INFO 9552 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3904. 16:51:02:944 INFO 9552 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3905. 16:51:03:086 INFO 9552 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3906. 16:51:03:088 INFO 9552 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3907. 16:51:03:105 INFO 9552 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3908. 16:51:03:152 INFO 9552 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.207 seconds (JVM running for 5.718)
  3909. 16:51:03:155 INFO 9552 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3910. 16:51:03:157 INFO 9552 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3911. 16:51:03:429 INFO 9552 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Receive server push request, request = NotifySubscriberRequest, requestId = 341
  3912. 16:51:03:435 INFO 9552 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [7a1e0a89-912e-4447-9e5c-437f62cb6790] Ack server push request, request = NotifySubscriberRequest, requestId = 341
  3913. 16:52:00:013 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3914. 16:52:00:059 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:nA2qthTTocH5hAYyVH8LwY6Ij45CEG32","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3915. 16:53:00:009 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3916. 16:53:00:055 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:VEZhpqJFAXJXAIH5WwA0YQXWlnRCACtw","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3917. 16:54:00:008 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3918. 16:54:00:052 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:64PAW27OhdobFECG0TaIMb9lA0VeGg6K","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3919. 16:55:00:008 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3920. 16:55:00:050 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:aRh56JcV1Mxi5hyEHVADL65IdHV1bPHE","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3921. 16:56:00:014 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3922. 16:56:00:052 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:yt8zOvmmvOt2qQpkQbkOxe16lNa9xDbi","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3923. 16:57:00:013 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3924. 16:57:00:059 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:tDht24AHrMR6F3U46hvfe8nlXyYAjtvZ","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3925. 16:58:00:011 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3926. 16:58:00:055 INFO 9552 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:uAfcVsV8SwlhyP982nfmfw5qUnu8DTX2","refresh_token":"4wR8O5snUWjoS6TDNxpk3yyY9yUrRKeh","magicId":"heKRrUy9Yyy3kpxNDT6SojWUns5O8Rw4","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3927. 16:58:31:198 WARN 9552 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3928. 16:58:31:198 WARN 9552 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3929. 16:58:31:199 WARN 9552 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3930. 16:58:31:199 WARN 9552 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3931. 16:58:31:337 INFO 9552 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3932. 16:58:31:341 INFO 9552 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3933. 16:58:31:674 INFO 9552 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  3934. 16:58:31:674 INFO 9552 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@756b64f1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3935. 16:58:31:674 INFO 9552 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723107063331_192.168.110.13_64810
  3936. 16:58:31:675 INFO 9552 --- [nacos-grpc-client-executor-102] c.a.n.c.remote.client.grpc.GrpcClient : [1723107063331_192.168.110.13_64810]Ignore complete event,isRunning:false,isAbandon=false
  3937. 16:58:31:677 INFO 9552 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@61302b45[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 103]
  3938. 16:58:36:655 INFO 24240 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3939. 16:58:37:081 INFO 24240 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3940. 16:58:37:082 INFO 24240 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3941. 16:58:37:096 INFO 24240 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  3942. 16:58:37:188 WARN 24240 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3943. 16:58:37:228 INFO 24240 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  3944. 16:58:37:452 INFO 24240 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3945. 16:58:37:459 INFO 24240 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3946. 16:58:37:459 INFO 24240 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3947. 16:58:37:533 INFO 24240 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3948. 16:58:37:533 INFO 24240 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 870 ms
  3949. 16:58:37:992 INFO 24240 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCt2dqt3OP+Qz7vIk7MqaqhuGNPnw0X+dTAs9F7pY8t++MUeXeqQ2Ulz1Dtye5bxrtXWcI4W67LHT2X86XoZQaUX8MRNTXUfWpPzJcbQSDfRWIhly0DTIroMypVbAKslLQJwlV26gln8UcMCNk7WaI66rP4F0YL5PR+H9+Re8wWbwIDAQAB
  3950. 16:58:37:994 INFO 24240 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  3951. 16:58:38:050 INFO 24240 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:6jos8ys1K2hG489SSEcW1dZJMyZaWw9o","refresh_token":"iGFGUinqPIWTR0gBRgo1BrpPsAjogsuv","magicId":"vusgojAsPprB1ogRBg0RTWIPqniUGFGi","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3952. 16:58:39:167 INFO 24240 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3953. 16:58:39:468 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of bdec2bca-25f5-4811-a541-90136ab65bc9
  3954. 16:58:39:468 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] RpcClient init label, labels = {module=naming, source=sdk}
  3955. 16:58:39:469 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3956. 16:58:39:469 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3957. 16:58:39:469 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3958. 16:58:39:470 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3959. 16:58:39:586 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723107520045_192.168.110.13_50291
  3960. 16:58:39:586 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3961. 16:58:39:586 INFO 24240 --- [main] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  3962. 16:58:39:586 INFO 24240 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Notify connected event to listeners.
  3963. 16:58:39:623 INFO 24240 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  3964. 16:58:39:629 INFO 24240 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  3965. 16:58:39:772 INFO 24240 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3966. 16:58:39:774 INFO 24240 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3967. 16:58:39:787 INFO 24240 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3968. 16:58:39:824 INFO 24240 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.113 seconds (JVM running for 5.632)
  3969. 16:58:39:826 INFO 24240 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  3970. 16:58:39:829 INFO 24240 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  3971. 16:58:40:216 INFO 24240 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Receive server push request, request = NotifySubscriberRequest, requestId = 344
  3972. 16:58:40:223 INFO 24240 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [bdec2bca-25f5-4811-a541-90136ab65bc9] Ack server push request, request = NotifySubscriberRequest, requestId = 344
  3973. 17:00:00:005 INFO 24240 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : 刷新认证信息
  3974. 17:00:00:053 INFO 24240 --- [scheduling-1] c.z.v.schedule.ScheduledTasks : Response Body: {"success":true,"data":{"access_token":"1:V0AH1qT6z5AhKFpuJUQzepjqNSC75zcl","refresh_token":"iGFGUinqPIWTR0gBRgo1BrpPsAjogsuv","magicId":"vusgojAsPprB1ogRBg0RTWIPqniUGFGi","scope":"supplier","token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  3975. 17:22:04:951 WARN 24240 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3976. 17:22:04:952 WARN 24240 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3977. 17:22:04:953 WARN 24240 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3978. 17:22:04:953 WARN 24240 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  3979. 17:22:05:070 INFO 24240 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  3980. 17:22:05:072 INFO 24240 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  3981. 17:22:05:408 INFO 24240 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  3982. 17:22:05:408 INFO 24240 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@39dbc2ff[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3983. 17:22:05:408 INFO 24240 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723107520045_192.168.110.13_50291
  3984. 17:22:05:410 INFO 24240 --- [nacos-grpc-client-executor-292] c.a.n.c.remote.client.grpc.GrpcClient : [1723107520045_192.168.110.13_50291]Ignore complete event,isRunning:false,isAbandon=false
  3985. 17:22:05:411 INFO 24240 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@396e66d4[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 293]
  3986. 17:22:10:567 INFO 5828 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  3987. 17:22:10:998 INFO 5828 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  3988. 17:22:11:000 INFO 5828 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3989. 17:22:11:013 INFO 5828 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces.
  3990. 17:22:11:095 WARN 5828 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  3991. 17:22:11:138 INFO 5828 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=a99c632d-a5e2-33e7-8e1a-98d2d9d0cff4
  3992. 17:22:11:369 INFO 5828 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  3993. 17:22:11:374 INFO 5828 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3994. 17:22:11:376 INFO 5828 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  3995. 17:22:11:449 INFO 5828 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3996. 17:22:11:449 INFO 5828 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 874 ms
  3997. 17:22:11:480 WARN 5828 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError
  3998. 17:22:11:481 INFO 5828 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  3999. 17:22:11:490 INFO 5828 --- [main] ConditionEvaluationReportLoggingListener :
  4000. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  4001. 17:22:11:509 ERROR 5828 --- [main] o.s.boot.SpringApplication : Application run failed
  4002. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError
  4003. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1334) ~[spring-beans-5.3.27.jar:5.3.27]
  4004. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1232) ~[spring-beans-5.3.27.jar:5.3.27]
  4005. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.27.jar:5.3.27]
  4006. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4007. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4008. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4009. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4010. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4011. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4012. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4013. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4014. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4015. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4016. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4017. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4018. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4019. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4020. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4021. Caused by: java.lang.ExceptionInInitializerError: null
  4022. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:na]
  4023. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:na]
  4024. at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:na]
  4025. at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[na:na]
  4026. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.27.jar:5.3.27]
  4027. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:87) ~[spring-beans-5.3.27.jar:5.3.27]
  4028. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1326) ~[spring-beans-5.3.27.jar:5.3.27]
  4029. ... 17 common frames omitted
  4030. Caused by: java.lang.NullPointerException: null
  4031. at com.zksy.visualization.api.AuthAPI.<clinit>(AuthAPI.java:12) ~[classes/:na]
  4032. ... 24 common frames omitted
  4033. 17:22:11:511 WARN 5828 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4034. 17:22:11:510 WARN 5828 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4035. 17:22:11:511 WARN 5828 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4036. 17:22:24:444 INFO 6712 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4037. 17:22:24:859 INFO 6712 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4038. 17:22:24:860 INFO 6712 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4039. 17:22:24:875 INFO 6712 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4040. 17:22:24:957 WARN 6712 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4041. 17:22:24:999 INFO 6712 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=a99c632d-a5e2-33e7-8e1a-98d2d9d0cff4
  4042. 17:22:25:221 INFO 6712 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4043. 17:22:25:226 INFO 6712 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4044. 17:22:25:226 INFO 6712 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4045. 17:22:25:304 INFO 6712 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4046. 17:22:25:305 INFO 6712 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 851 ms
  4047. 17:22:25:335 WARN 6712 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError
  4048. 17:22:25:336 INFO 6712 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  4049. 17:22:25:346 INFO 6712 --- [main] ConditionEvaluationReportLoggingListener :
  4050. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  4051. 17:22:25:362 ERROR 6712 --- [main] o.s.boot.SpringApplication : Application run failed
  4052. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Instantiation of bean failed; nested exception is java.lang.ExceptionInInitializerError
  4053. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1334) ~[spring-beans-5.3.27.jar:5.3.27]
  4054. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1232) ~[spring-beans-5.3.27.jar:5.3.27]
  4055. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.27.jar:5.3.27]
  4056. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4057. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4058. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4059. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4060. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4061. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4062. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4063. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4064. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4065. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4066. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4067. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4068. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4069. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4070. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4071. Caused by: java.lang.ExceptionInInitializerError: null
  4072. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:na]
  4073. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:na]
  4074. at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:na]
  4075. at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[na:na]
  4076. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.27.jar:5.3.27]
  4077. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:87) ~[spring-beans-5.3.27.jar:5.3.27]
  4078. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1326) ~[spring-beans-5.3.27.jar:5.3.27]
  4079. ... 17 common frames omitted
  4080. Caused by: java.lang.NullPointerException: null
  4081. at com.zksy.visualization.api.AuthAPI.<clinit>(AuthAPI.java:12) ~[classes/:na]
  4082. ... 24 common frames omitted
  4083. 17:22:25:363 WARN 6712 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4084. 17:22:25:363 WARN 6712 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4085. 17:22:25:364 WARN 6712 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4086. 17:24:04:553 INFO 18348 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4087. 17:24:04:962 INFO 18348 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4088. 17:24:04:964 INFO 18348 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4089. 17:24:04:977 INFO 18348 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4090. 17:24:05:057 WARN 18348 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4091. 17:24:05:099 INFO 18348 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4092. 17:24:05:336 INFO 18348 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4093. 17:24:05:342 INFO 18348 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4094. 17:24:05:342 INFO 18348 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4095. 17:24:05:424 INFO 18348 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4096. 17:24:05:424 INFO 18348 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 857 ms
  4097. 17:24:08:423 ERROR 18348 --- [main] c.z.v.config.InitializationService : 信息: {}
  4098. java.net.UnknownHostException: 不知道这样的主机。 (null)
  4099. at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[na:na]
  4100. at java.base/java.net.InetAddress$PlatformNameService.lookupAllHostAddr(InetAddress.java:930) ~[na:na]
  4101. at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1543) ~[na:na]
  4102. at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:848) ~[na:na]
  4103. at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1533) ~[na:na]
  4104. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1386) ~[na:na]
  4105. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1307) ~[na:na]
  4106. at okhttp3.Dns$Companion$DnsSystem.lookup(Dns.kt:49) ~[okhttp-4.9.3.jar:na]
  4107. at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.kt:164) ~[okhttp-4.9.3.jar:na]
  4108. at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.kt:129) ~[okhttp-4.9.3.jar:na]
  4109. at okhttp3.internal.connection.RouteSelector.next(RouteSelector.kt:71) ~[okhttp-4.9.3.jar:na]
  4110. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:205) ~[okhttp-4.9.3.jar:na]
  4111. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  4112. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  4113. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  4114. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  4115. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4116. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  4117. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4118. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  4119. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4120. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  4121. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4122. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  4123. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  4124. at com.zksy.visualization.config.InitializationService.getPublicKey(InitializationService.java:124) ~[classes/:na]
  4125. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:99) ~[classes/:na]
  4126. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:38) ~[classes/:na]
  4127. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4128. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4129. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4130. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4131. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4132. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4133. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4134. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4135. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4136. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4137. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4138. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4139. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4140. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4141. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4142. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4143. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4144. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4145. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4146. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4147. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4148. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4149. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4150. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4151. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4152. 17:24:08:426 WARN 18348 --- [main] c.z.v.config.InitializationService : 公钥获取失败将于 5 秒后. 重试 1/3
  4153. 17:24:13:434 ERROR 18348 --- [main] c.z.v.config.InitializationService : 信息: {}
  4154. java.net.UnknownHostException: null
  4155. at java.base/java.net.InetAddress$CachedAddresses.get(InetAddress.java:797) ~[na:na]
  4156. at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1533) ~[na:na]
  4157. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1386) ~[na:na]
  4158. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1307) ~[na:na]
  4159. at okhttp3.Dns$Companion$DnsSystem.lookup(Dns.kt:49) ~[okhttp-4.9.3.jar:na]
  4160. at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.kt:164) ~[okhttp-4.9.3.jar:na]
  4161. at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.kt:129) ~[okhttp-4.9.3.jar:na]
  4162. at okhttp3.internal.connection.RouteSelector.next(RouteSelector.kt:71) ~[okhttp-4.9.3.jar:na]
  4163. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:205) ~[okhttp-4.9.3.jar:na]
  4164. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  4165. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  4166. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  4167. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  4168. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4169. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  4170. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4171. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  4172. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4173. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  4174. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4175. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  4176. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  4177. at com.zksy.visualization.config.InitializationService.getPublicKey(InitializationService.java:124) ~[classes/:na]
  4178. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:99) ~[classes/:na]
  4179. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:38) ~[classes/:na]
  4180. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4181. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4182. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4183. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4184. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4185. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4186. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4187. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4188. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4189. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4190. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4191. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4192. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4193. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4194. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4195. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4196. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4197. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4198. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4199. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4200. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4201. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4202. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4203. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4204. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4205. 17:24:13:436 WARN 18348 --- [main] c.z.v.config.InitializationService : 公钥获取失败将于 5 秒后. 重试 2/3
  4206. 17:24:21:142 ERROR 18348 --- [main] c.z.v.config.InitializationService : 信息: {}
  4207. java.net.UnknownHostException: 不知道这样的主机。 (null)
  4208. at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[na:na]
  4209. at java.base/java.net.InetAddress$PlatformNameService.lookupAllHostAddr(InetAddress.java:930) ~[na:na]
  4210. at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1543) ~[na:na]
  4211. at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:848) ~[na:na]
  4212. at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1533) ~[na:na]
  4213. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1386) ~[na:na]
  4214. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1307) ~[na:na]
  4215. at okhttp3.Dns$Companion$DnsSystem.lookup(Dns.kt:49) ~[okhttp-4.9.3.jar:na]
  4216. at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.kt:164) ~[okhttp-4.9.3.jar:na]
  4217. at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.kt:129) ~[okhttp-4.9.3.jar:na]
  4218. at okhttp3.internal.connection.RouteSelector.next(RouteSelector.kt:71) ~[okhttp-4.9.3.jar:na]
  4219. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:205) ~[okhttp-4.9.3.jar:na]
  4220. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  4221. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  4222. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  4223. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  4224. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4225. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  4226. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4227. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  4228. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4229. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  4230. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4231. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  4232. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  4233. at com.zksy.visualization.config.InitializationService.getPublicKey(InitializationService.java:124) ~[classes/:na]
  4234. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:99) ~[classes/:na]
  4235. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:38) ~[classes/:na]
  4236. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4237. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4238. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4239. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4240. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4241. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4242. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4243. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4244. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4245. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4246. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4247. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4248. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4249. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4250. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4251. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4252. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4253. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4254. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4255. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4256. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4257. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4258. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4259. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4260. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4261. 17:24:21:142 WARN 18348 --- [main] c.z.v.config.InitializationService : 公钥获取失败将于 5 秒后. 重试 3/3
  4262. 17:24:26:150 ERROR 18348 --- [main] c.z.v.config.InitializationService : 获取公钥失败超过重试次数 3 .
  4263. 17:24:26:151 WARN 18348 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'initializationService': Invocation of init method failed; nested exception is java.lang.RuntimeException: 获取公钥失败超过最大重试次数
  4264. 17:24:26:166 INFO 18348 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  4265. 17:24:26:176 INFO 18348 --- [main] ConditionEvaluationReportLoggingListener :
  4266. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  4267. 17:24:26:191 ERROR 18348 --- [main] o.s.boot.SpringApplication : Application run failed
  4268. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'initializationService': Invocation of init method failed; nested exception is java.lang.RuntimeException: 获取公钥失败超过最大重试次数
  4269. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) ~[spring-beans-5.3.27.jar:5.3.27]
  4270. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4271. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4272. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4273. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4274. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4275. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4276. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4277. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4278. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4279. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4280. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4281. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4282. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4283. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4284. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4285. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4286. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4287. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4288. Caused by: java.lang.RuntimeException: 获取公钥失败超过最大重试次数
  4289. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:114) ~[classes/:na]
  4290. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:38) ~[classes/:na]
  4291. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4292. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4293. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4294. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4295. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4296. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4297. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4298. ... 18 common frames omitted
  4299. 17:24:27:162 WARN 18348 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4300. 17:24:27:162 WARN 18348 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4301. 17:24:27:163 WARN 18348 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4302. 17:25:39:579 INFO 15352 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4303. 17:25:40:019 INFO 15352 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4304. 17:25:40:020 INFO 15352 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4305. 17:25:40:034 INFO 15352 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4306. 17:25:40:120 WARN 15352 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4307. 17:25:40:170 INFO 15352 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4308. 17:25:40:381 INFO 15352 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4309. 17:25:40:388 INFO 15352 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4310. 17:25:40:388 INFO 15352 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4311. 17:25:40:473 INFO 15352 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4312. 17:25:40:473 INFO 15352 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 885 ms
  4313. 17:25:43:509 ERROR 15352 --- [main] c.z.v.config.InitializationService : 信息: {}
  4314. java.net.UnknownHostException: 不知道这样的主机。 (null)
  4315. at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[na:na]
  4316. at java.base/java.net.InetAddress$PlatformNameService.lookupAllHostAddr(InetAddress.java:930) ~[na:na]
  4317. at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1543) ~[na:na]
  4318. at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:848) ~[na:na]
  4319. at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1533) ~[na:na]
  4320. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1386) ~[na:na]
  4321. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1307) ~[na:na]
  4322. at okhttp3.Dns$Companion$DnsSystem.lookup(Dns.kt:49) ~[okhttp-4.9.3.jar:na]
  4323. at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.kt:164) ~[okhttp-4.9.3.jar:na]
  4324. at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.kt:129) ~[okhttp-4.9.3.jar:na]
  4325. at okhttp3.internal.connection.RouteSelector.next(RouteSelector.kt:71) ~[okhttp-4.9.3.jar:na]
  4326. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:205) ~[okhttp-4.9.3.jar:na]
  4327. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  4328. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  4329. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  4330. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  4331. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4332. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  4333. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4334. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  4335. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4336. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  4337. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4338. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  4339. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  4340. at com.zksy.visualization.config.InitializationService.getPublicKey(InitializationService.java:124) ~[classes/:na]
  4341. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:99) ~[classes/:na]
  4342. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:38) ~[classes/:na]
  4343. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4344. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4345. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4346. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4347. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4348. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4349. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4350. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4351. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4352. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4353. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4354. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4355. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4356. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4357. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4358. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4359. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4360. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4361. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4362. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4363. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4364. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4365. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4366. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4367. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4368. 17:25:43:511 WARN 15352 --- [main] c.z.v.config.InitializationService : 公钥获取失败将于 5 秒后. 重试 1/3
  4369. 17:25:46:586 WARN 15352 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4370. 17:25:46:586 WARN 15352 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4371. 17:25:46:588 WARN 15352 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4372. 17:25:46:588 WARN 15352 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4373. 17:26:00:228 INFO 16152 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4374. 17:26:00:676 INFO 16152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4375. 17:26:00:677 INFO 16152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4376. 17:26:00:691 INFO 16152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4377. 17:26:00:777 WARN 16152 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4378. 17:26:00:832 INFO 16152 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4379. 17:26:01:056 INFO 16152 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4380. 17:26:01:064 INFO 16152 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4381. 17:26:01:064 INFO 16152 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4382. 17:26:01:142 INFO 16152 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4383. 17:26:01:142 INFO 16152 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 905 ms
  4384. 17:26:15:437 WARN 16152 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4385. 17:26:15:437 WARN 16152 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4386. 17:26:15:439 WARN 16152 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4387. 17:26:15:439 WARN 16152 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4388. 17:30:16:093 INFO 1856 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4389. 17:30:16:554 INFO 1856 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4390. 17:30:16:556 INFO 1856 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4391. 17:30:16:570 INFO 1856 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4392. 17:30:16:656 WARN 1856 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4393. 17:30:16:702 INFO 1856 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=a99c632d-a5e2-33e7-8e1a-98d2d9d0cff4
  4394. 17:30:16:908 INFO 1856 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4395. 17:30:16:914 INFO 1856 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4396. 17:30:16:915 INFO 1856 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4397. 17:30:16:997 INFO 1856 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4398. 17:30:16:997 INFO 1856 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 896 ms
  4399. 17:30:17:028 WARN 1856 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zksy.visualization.api.AuthAPI]: Constructor threw exception; nested exception is java.lang.NullPointerException
  4400. 17:30:17:029 INFO 1856 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  4401. 17:30:17:039 INFO 1856 --- [main] ConditionEvaluationReportLoggingListener :
  4402. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  4403. 17:30:17:056 ERROR 1856 --- [main] o.s.boot.SpringApplication : Application run failed
  4404. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zksy.visualization.api.AuthAPI]: Constructor threw exception; nested exception is java.lang.NullPointerException
  4405. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1334) ~[spring-beans-5.3.27.jar:5.3.27]
  4406. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1232) ~[spring-beans-5.3.27.jar:5.3.27]
  4407. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.27.jar:5.3.27]
  4408. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4409. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4410. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4411. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4412. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4413. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4414. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4415. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4416. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4417. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4418. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4419. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4420. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4421. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4422. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4423. Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zksy.visualization.api.AuthAPI]: Constructor threw exception; nested exception is java.lang.NullPointerException
  4424. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.27.jar:5.3.27]
  4425. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:87) ~[spring-beans-5.3.27.jar:5.3.27]
  4426. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1326) ~[spring-beans-5.3.27.jar:5.3.27]
  4427. ... 17 common frames omitted
  4428. Caused by: java.lang.NullPointerException: null
  4429. at com.zksy.visualization.api.AuthAPI.<init>(AuthAPI.java:12) ~[classes/:na]
  4430. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:na]
  4431. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:na]
  4432. at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:na]
  4433. at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[na:na]
  4434. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.27.jar:5.3.27]
  4435. ... 19 common frames omitted
  4436. 17:30:17:057 WARN 1856 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4437. 17:30:17:057 WARN 1856 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4438. 17:30:17:058 WARN 1856 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4439. 17:32:15:063 INFO 19576 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4440. 17:32:15:485 INFO 19576 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4441. 17:32:15:486 INFO 19576 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4442. 17:32:15:501 INFO 19576 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4443. 17:32:15:581 WARN 19576 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4444. 17:32:15:623 INFO 19576 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=a99c632d-a5e2-33e7-8e1a-98d2d9d0cff4
  4445. 17:32:15:834 INFO 19576 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4446. 17:32:15:854 INFO 19576 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4447. 17:32:15:855 INFO 19576 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4448. 17:32:15:938 INFO 19576 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4449. 17:32:15:938 INFO 19576 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 866 ms
  4450. 17:32:18:929 ERROR 19576 --- [main] c.z.v.config.InitializationService : 信息: {}
  4451. java.net.UnknownHostException: 不知道这样的主机。 (null)
  4452. at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[na:na]
  4453. at java.base/java.net.InetAddress$PlatformNameService.lookupAllHostAddr(InetAddress.java:930) ~[na:na]
  4454. at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1543) ~[na:na]
  4455. at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:848) ~[na:na]
  4456. at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1533) ~[na:na]
  4457. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1386) ~[na:na]
  4458. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1307) ~[na:na]
  4459. at okhttp3.Dns$Companion$DnsSystem.lookup(Dns.kt:49) ~[okhttp-4.9.3.jar:na]
  4460. at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.kt:164) ~[okhttp-4.9.3.jar:na]
  4461. at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.kt:129) ~[okhttp-4.9.3.jar:na]
  4462. at okhttp3.internal.connection.RouteSelector.next(RouteSelector.kt:71) ~[okhttp-4.9.3.jar:na]
  4463. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:205) ~[okhttp-4.9.3.jar:na]
  4464. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  4465. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  4466. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  4467. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  4468. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4469. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  4470. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4471. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  4472. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4473. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  4474. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4475. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  4476. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  4477. at com.zksy.visualization.config.InitializationService.getPublicKey(InitializationService.java:126) ~[classes/:na]
  4478. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:101) ~[classes/:na]
  4479. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:40) ~[classes/:na]
  4480. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4481. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4482. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4483. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4484. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4485. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4486. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4487. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4488. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4489. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4490. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4491. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4492. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4493. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4494. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4495. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4496. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4497. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4498. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4499. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4500. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4501. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4502. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4503. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4504. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4505. 17:32:18:932 WARN 19576 --- [main] c.z.v.config.InitializationService : 公钥获取失败将于 5 秒后. 重试 1/3
  4506. 17:32:23:941 ERROR 19576 --- [main] c.z.v.config.InitializationService : 信息: {}
  4507. java.net.UnknownHostException: null
  4508. at java.base/java.net.InetAddress$CachedAddresses.get(InetAddress.java:797) ~[na:na]
  4509. at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1533) ~[na:na]
  4510. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1386) ~[na:na]
  4511. at java.base/java.net.InetAddress.getAllByName(InetAddress.java:1307) ~[na:na]
  4512. at okhttp3.Dns$Companion$DnsSystem.lookup(Dns.kt:49) ~[okhttp-4.9.3.jar:na]
  4513. at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.kt:164) ~[okhttp-4.9.3.jar:na]
  4514. at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.kt:129) ~[okhttp-4.9.3.jar:na]
  4515. at okhttp3.internal.connection.RouteSelector.next(RouteSelector.kt:71) ~[okhttp-4.9.3.jar:na]
  4516. at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:205) ~[okhttp-4.9.3.jar:na]
  4517. at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.3.jar:na]
  4518. at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.3.jar:na]
  4519. at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.3.jar:na]
  4520. at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.3.jar:na]
  4521. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4522. at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.3.jar:na]
  4523. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4524. at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.3.jar:na]
  4525. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4526. at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.3.jar:na]
  4527. at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.3.jar:na]
  4528. at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.3.jar:na]
  4529. at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.3.jar:na]
  4530. at com.zksy.visualization.config.InitializationService.getPublicKey(InitializationService.java:126) ~[classes/:na]
  4531. at com.zksy.visualization.config.InitializationService.retrievePublicKey(InitializationService.java:101) ~[classes/:na]
  4532. at com.zksy.visualization.config.InitializationService.initialize(InitializationService.java:40) ~[classes/:na]
  4533. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4534. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4535. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4536. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4537. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.27.jar:5.3.27]
  4538. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4539. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.27.jar:5.3.27]
  4540. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.27.jar:5.3.27]
  4541. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.27.jar:5.3.27]
  4542. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.27.jar:5.3.27]
  4543. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4544. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4545. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4546. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4547. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4548. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4549. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4550. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4551. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4552. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4553. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4554. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4555. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4556. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4557. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4558. 17:32:23:943 WARN 19576 --- [main] c.z.v.config.InitializationService : 公钥获取失败将于 5 秒后. 重试 2/3
  4559. 17:32:27:092 WARN 19576 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4560. 17:32:27:092 WARN 19576 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4561. 17:32:27:093 WARN 19576 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4562. 17:32:27:094 WARN 19576 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4563. 17:33:38:163 INFO 24328 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4564. 17:33:38:580 INFO 24328 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4565. 17:33:38:582 INFO 24328 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4566. 17:33:38:596 INFO 24328 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4567. 17:33:38:678 WARN 24328 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4568. 17:33:38:718 INFO 24328 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=a99c632d-a5e2-33e7-8e1a-98d2d9d0cff4
  4569. 17:33:38:910 INFO 24328 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4570. 17:33:38:916 INFO 24328 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4571. 17:33:38:916 INFO 24328 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4572. 17:33:38:996 INFO 24328 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4573. 17:33:38:997 INFO 24328 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 827 ms
  4574. 17:33:39:028 WARN 24328 --- [main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zksy.visualization.api.AuthAPI]: Constructor threw exception; nested exception is java.lang.NullPointerException
  4575. 17:33:39:029 INFO 24328 --- [main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  4576. 17:33:39:039 INFO 24328 --- [main] ConditionEvaluationReportLoggingListener :
  4577. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  4578. 17:33:39:053 ERROR 24328 --- [main] o.s.boot.SpringApplication : Application run failed
  4579. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authAPI' defined in file [C:\Users\hxb\Desktop\project2\dh-server-micro\visualization-service\target\classes\com\zksy\visualization\api\AuthAPI.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zksy.visualization.api.AuthAPI]: Constructor threw exception; nested exception is java.lang.NullPointerException
  4580. at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.27.jar:5.3.27]
  4581. at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.27.jar:5.3.27]
  4582. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.27.jar:5.3.27]
  4583. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.27.jar:5.3.27]
  4584. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.27.jar:5.3.27]
  4585. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.27.jar:5.3.27]
  4586. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.27.jar:5.3.27]
  4587. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.27.jar:5.3.27]
  4588. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.27.jar:5.3.27]
  4589. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.27.jar:5.3.27]
  4590. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.27.jar:5.3.27]
  4591. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) ~[spring-context-5.3.27.jar:5.3.27]
  4592. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.27.jar:5.3.27]
  4593. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  4594. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  4595. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  4596. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  4597. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  4598. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  4599. at com.zksy.visualization.VisualizationApplication.main(VisualizationApplication.java:14) ~[classes/:na]
  4600. Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zksy.visualization.api.AuthAPI]: Constructor threw exception; nested exception is java.lang.NullPointerException
  4601. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.27.jar:5.3.27]
  4602. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.27.jar:5.3.27]
  4603. at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.27.jar:5.3.27]
  4604. ... 19 common frames omitted
  4605. Caused by: java.lang.NullPointerException: null
  4606. at com.zksy.visualization.api.AuthAPI.<init>(AuthAPI.java:16) ~[classes/:na]
  4607. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:na]
  4608. at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:na]
  4609. at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:na]
  4610. at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) ~[na:na]
  4611. at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.27.jar:5.3.27]
  4612. ... 21 common frames omitted
  4613. 17:33:39:054 WARN 24328 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4614. 17:33:39:054 WARN 24328 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4615. 17:33:39:056 WARN 24328 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4616. 17:34:32:900 INFO 15328 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4617. 17:34:33:351 INFO 15328 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4618. 17:34:33:352 INFO 15328 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4619. 17:34:33:366 INFO 15328 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces.
  4620. 17:34:33:452 WARN 15328 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4621. 17:34:33:496 INFO 15328 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4622. 17:34:33:706 INFO 15328 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4623. 17:34:33:717 INFO 15328 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4624. 17:34:33:717 INFO 15328 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4625. 17:34:33:798 INFO 15328 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4626. 17:34:33:798 INFO 15328 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 891 ms
  4627. 17:34:34:328 INFO 15328 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwql04dB7nkMb2k6dB+SCEk+uN39aHv5p0w0hlfHd1mIbxdoYdl4F5miALV9WxtlyUNojL22MKFlygwmAVFklsf4dp9j8UIF8Lx+NAIhKqm914HfWg1QdUNuJfi+ygj4IX6YvmLU5Y2up/Q5VUrvi1SGKHoSnyHMTWW/zmC/YmUwIDAQAB
  4628. 17:34:34:330 INFO 15328 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  4629. 17:34:34:460 INFO 15328 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:LRjMtxciTuNonc5H5neZBCBR6u1ohFWg","refresh_token":"lL3phhPH8yk4x2ZgpbH7glkI7AnygduQ","magicId":"QudgynA7Iklg7HbpgZ2x4ky8HPhhp3Ll","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  4630. 17:34:35:561 INFO 15328 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  4631. 17:34:35:982 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 5113ae21-c298-4349-9e00-85ac6cca091f
  4632. 17:34:35:982 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] RpcClient init label, labels = {module=naming, source=sdk}
  4633. 17:34:35:983 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  4634. 17:34:35:983 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  4635. 17:34:35:983 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  4636. 17:34:35:984 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  4637. 17:34:36:119 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723109676601_192.168.110.13_55810
  4638. 17:34:36:119 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  4639. 17:34:36:119 INFO 15328 --- [main] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x0000000800413040
  4640. 17:34:36:119 INFO 15328 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Notify connected event to listeners.
  4641. 17:34:36:157 INFO 15328 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  4642. 17:34:36:163 INFO 15328 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  4643. 17:34:36:409 INFO 15328 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  4644. 17:34:36:411 INFO 15328 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  4645. 17:34:36:426 INFO 15328 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  4646. 17:34:36:471 INFO 15328 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.537 seconds (JVM running for 6.044)
  4647. 17:34:36:474 INFO 15328 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  4648. 17:34:36:482 INFO 15328 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  4649. 17:34:36:674 INFO 15328 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Receive server push request, request = NotifySubscriberRequest, requestId = 346
  4650. 17:34:36:680 INFO 15328 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [5113ae21-c298-4349-9e00-85ac6cca091f] Ack server push request, request = NotifySubscriberRequest, requestId = 346
  4651. 17:38:18:949 INFO 15328 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  4652. Note: further occurrences of this error will be logged at DEBUG level.
  4653. 17:38:18:954 INFO 15328 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  4654. 17:38:18:954 INFO 15328 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  4655. 17:38:18:957 INFO 15328 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 3 ms
  4656. 17:47:27:242 WARN 15328 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4657. 17:47:27:241 WARN 15328 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4658. 17:47:27:242 WARN 15328 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4659. 17:47:27:243 WARN 15328 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4660. 17:47:27:360 INFO 15328 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  4661. 17:47:27:362 INFO 15328 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  4662. 17:47:27:695 INFO 15328 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  4663. 17:47:27:695 INFO 15328 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4f7e1dcb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  4664. 17:47:27:695 INFO 15328 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723109676601_192.168.110.13_55810
  4665. 17:47:27:698 INFO 15328 --- [nacos-grpc-client-executor-163] c.a.n.c.remote.client.grpc.GrpcClient : [1723109676601_192.168.110.13_55810]Ignore complete event,isRunning:false,isAbandon=false
  4666. 17:47:27:700 INFO 15328 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@dc3e86f[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 164]
  4667. 17:47:32:409 INFO 7160 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4668. 17:47:32:842 INFO 7160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4669. 17:47:32:844 INFO 7160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4670. 17:47:32:857 INFO 7160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4671. 17:47:32:934 WARN 7160 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4672. 17:47:32:977 INFO 7160 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4673. 17:47:33:190 INFO 7160 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4674. 17:47:33:197 INFO 7160 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4675. 17:47:33:197 INFO 7160 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4676. 17:47:33:266 INFO 7160 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4677. 17:47:33:266 INFO 7160 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 841 ms
  4678. 17:47:33:757 INFO 7160 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCfV+HfpyvgBzTnXgcNmgu8L9dC2nIjAQ/w+3nQL3Y46eIIRi8842rlaAxZfI5QlGEPpVrRKL2ooqfHayRNtqIOA6KJFxeUJhTHSyv47lLQAo0VnWKwrAGpkSoVdtl2TmpDXO0NBKl54IBKl44mp15mpVgw2pK5IZ/e6FNJfalA0wIDAQAB
  4679. 17:47:33:759 INFO 7160 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  4680. 17:47:33:838 INFO 7160 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:uLEcHO8ZeR9SM1eKgkc78KEFFAIMVJkE","refresh_token":"f1MoF6CGaQyKjj7pVVh5fYTSwOyb5hyc","magicId":"cyh5byOwSTYf5hVVp7jjKyQaGC6FoM1f","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  4681. 17:47:34:927 INFO 7160 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  4682. 17:47:35:223 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 50141a13-a5d9-407c-a9c9-354a966f1c7c
  4683. 17:47:35:223 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] RpcClient init label, labels = {module=naming, source=sdk}
  4684. 17:47:35:224 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  4685. 17:47:35:224 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  4686. 17:47:35:224 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  4687. 17:47:35:224 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  4688. 17:47:35:351 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723110455843_192.168.110.13_57860
  4689. 17:47:35:351 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  4690. 17:47:35:352 INFO 7160 --- [main] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  4691. 17:47:35:351 INFO 7160 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Notify connected event to listeners.
  4692. 17:47:35:387 INFO 7160 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  4693. 17:47:35:393 INFO 7160 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  4694. 17:47:35:527 INFO 7160 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  4695. 17:47:35:530 INFO 7160 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  4696. 17:47:35:543 INFO 7160 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  4697. 17:47:35:580 INFO 7160 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.1 seconds (JVM running for 5.613)
  4698. 17:47:35:584 INFO 7160 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  4699. 17:47:35:585 INFO 7160 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  4700. 17:47:35:889 INFO 7160 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Receive server push request, request = NotifySubscriberRequest, requestId = 350
  4701. 17:47:35:894 INFO 7160 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [50141a13-a5d9-407c-a9c9-354a966f1c7c] Ack server push request, request = NotifySubscriberRequest, requestId = 350
  4702. 17:47:43:635 INFO 7160 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  4703. Note: further occurrences of this error will be logged at DEBUG level.
  4704. 17:47:43:641 INFO 7160 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  4705. 17:47:43:641 INFO 7160 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  4706. 17:47:43:642 INFO 7160 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  4707. 17:47:43:687 INFO 7160 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : response:{"success":true,"data":{"service":"BRM","id":1,"orgCode":"001","orgName":"根节点","orgType":"org_base","sort":1,"forbidBindUser":0,"rootFlag":1,"busiType":1,"repeatAddFlag":1,"fieldExt":{"businessType":"2"}},"code":"0","errMsg":""}
  4708. 17:47:43:692 ERROR 7160 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : error:{}
  4709. java.lang.IllegalStateException: closed
  4710. at okio.RealBufferedSource.select(RealBufferedSource.kt:218) ~[okio-2.8.0.jar:na]
  4711. at okhttp3.internal.Util.readBomAsCharset(Util.kt:265) ~[okhttp-4.9.3.jar:na]
  4712. at okhttp3.ResponseBody.string(ResponseBody.kt:187) ~[okhttp-4.9.3.jar:na]
  4713. at com.zksy.visualization.controller.VisualizationController.test(VisualizationController.java:44) ~[classes/:na]
  4714. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4715. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4716. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4717. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4718. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.27.jar:5.3.27]
  4719. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.27.jar:5.3.27]
  4720. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4721. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4722. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4723. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4724. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4725. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4726. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4727. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4728. at javax.servlet.http.HttpServlet.service(HttpServlet.java:529) ~[tomcat-embed-core-9.0.75.jar:4.0.FR]
  4729. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4730. at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) ~[tomcat-embed-core-9.0.75.jar:4.0.FR]
  4731. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4732. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4733. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) ~[tomcat-embed-websocket-9.0.75.jar:9.0.75]
  4734. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4735. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4736. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.27.jar:5.3.27]
  4737. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4738. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4739. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4740. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.27.jar:5.3.27]
  4741. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4742. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4743. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4744. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.27.jar:5.3.27]
  4745. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4746. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4747. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4748. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4749. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4750. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4751. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4752. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4753. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4754. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4755. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4756. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4757. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4758. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4759. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4760. at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4761. at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4762. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4763. at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na]
  4764. 17:47:58:381 INFO 7160 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : response:{"success":true,"data":{"service":"BRM","id":1,"orgCode":"001","orgName":"根节点","orgType":"org_base","sort":1,"forbidBindUser":0,"rootFlag":1,"busiType":1,"repeatAddFlag":1,"fieldExt":{"businessType":"2"}},"code":"0","errMsg":""}
  4765. 17:47:58:382 ERROR 7160 --- [http-nio-8086-exec-2] c.z.v.c.VisualizationController : error:{}
  4766. java.lang.IllegalStateException: closed
  4767. at okio.RealBufferedSource.select(RealBufferedSource.kt:218) ~[okio-2.8.0.jar:na]
  4768. at okhttp3.internal.Util.readBomAsCharset(Util.kt:265) ~[okhttp-4.9.3.jar:na]
  4769. at okhttp3.ResponseBody.string(ResponseBody.kt:187) ~[okhttp-4.9.3.jar:na]
  4770. at com.zksy.visualization.controller.VisualizationController.test(VisualizationController.java:44) ~[classes/:na]
  4771. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4772. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4773. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4774. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4775. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.27.jar:5.3.27]
  4776. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.27.jar:5.3.27]
  4777. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4778. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4779. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4780. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4781. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4782. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4783. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4784. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4785. at javax.servlet.http.HttpServlet.service(HttpServlet.java:529) ~[tomcat-embed-core-9.0.75.jar:4.0.FR]
  4786. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4787. at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) ~[tomcat-embed-core-9.0.75.jar:4.0.FR]
  4788. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4789. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4790. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) ~[tomcat-embed-websocket-9.0.75.jar:9.0.75]
  4791. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4792. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4793. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.27.jar:5.3.27]
  4794. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4795. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4796. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4797. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.27.jar:5.3.27]
  4798. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4799. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4800. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4801. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.27.jar:5.3.27]
  4802. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4803. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4804. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4805. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4806. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4807. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4808. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4809. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4810. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4811. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4812. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4813. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4814. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4815. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4816. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4817. at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4818. at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4819. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4820. at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na]
  4821. 17:48:33:144 WARN 7160 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4822. 17:48:33:145 WARN 7160 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4823. 17:48:33:145 WARN 7160 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4824. 17:48:33:146 WARN 7160 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4825. 17:48:33:268 INFO 7160 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  4826. 17:48:33:272 INFO 7160 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  4827. 17:48:33:608 INFO 7160 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  4828. 17:48:33:608 INFO 7160 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@ba4824[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  4829. 17:48:33:608 INFO 7160 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723110455843_192.168.110.13_57860
  4830. 17:48:33:611 INFO 7160 --- [nacos-grpc-client-executor-22] c.a.n.c.remote.client.grpc.GrpcClient : [1723110455843_192.168.110.13_57860]Ignore complete event,isRunning:false,isAbandon=false
  4831. 17:48:33:613 INFO 7160 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5f9bed58[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 23]
  4832. 17:48:38:296 INFO 4116 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4833. 17:48:38:727 INFO 4116 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4834. 17:48:38:728 INFO 4116 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4835. 17:48:38:742 INFO 4116 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4836. 17:48:38:821 WARN 4116 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4837. 17:48:38:863 INFO 4116 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4838. 17:48:39:056 INFO 4116 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4839. 17:48:39:061 INFO 4116 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4840. 17:48:39:062 INFO 4116 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4841. 17:48:39:157 INFO 4116 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4842. 17:48:39:157 INFO 4116 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 853 ms
  4843. 17:48:39:610 INFO 4116 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9o6HIUypza2uEUQlo+wqIbWgf6sA2/Aqv9wm0LyLGJOQ5BFgToUoiejT5NDsk/CdNyKuHhdkUxOg471Pu8HpBOowtpJFzDZQAIjuJW9vWsYkJTuoWD04+1fnh1KBubmpRmiosMfCReIuL5B85ZKIHUhrReD11XFJgo0C91K0SZQIDAQAB
  4844. 17:48:39:613 INFO 4116 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  4845. 17:48:39:687 INFO 4116 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:8KQyjwV8MhxmJFUXLwHsirvQaHYKlaJR","refresh_token":"mSh3hZ2ZaldHphgQ1svLVLCXQDw8vOlV","magicId":"VlOv8wDQXCLVLvs1QghpHdlaZ2Zh3hSm","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  4846. 17:48:40:817 INFO 4116 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  4847. 17:48:41:164 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of f550a587-fba5-4418-a3da-9c35cd7e8a06
  4848. 17:48:41:165 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] RpcClient init label, labels = {module=naming, source=sdk}
  4849. 17:48:41:166 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  4850. 17:48:41:166 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  4851. 17:48:41:166 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  4852. 17:48:41:168 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  4853. 17:48:41:288 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723110521787_192.168.110.13_58113
  4854. 17:48:41:289 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  4855. 17:48:41:291 INFO 4116 --- [main] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  4856. 17:48:41:290 INFO 4116 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Notify connected event to listeners.
  4857. 17:48:41:331 INFO 4116 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  4858. 17:48:41:346 INFO 4116 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  4859. 17:48:41:488 INFO 4116 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  4860. 17:48:41:490 INFO 4116 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  4861. 17:48:41:505 INFO 4116 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  4862. 17:48:41:543 INFO 4116 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.183 seconds (JVM running for 5.685)
  4863. 17:48:41:546 INFO 4116 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  4864. 17:48:41:548 INFO 4116 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  4865. 17:48:41:865 INFO 4116 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Receive server push request, request = NotifySubscriberRequest, requestId = 353
  4866. 17:48:41:868 INFO 4116 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [f550a587-fba5-4418-a3da-9c35cd7e8a06] Ack server push request, request = NotifySubscriberRequest, requestId = 353
  4867. 17:49:15:752 WARN 4116 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4868. 17:49:15:752 WARN 4116 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4869. 17:49:15:752 WARN 4116 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4870. 17:49:15:753 WARN 4116 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4871. 17:49:15:863 INFO 4116 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  4872. 17:49:15:866 INFO 4116 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  4873. 17:49:16:196 INFO 4116 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  4874. 17:49:16:196 INFO 4116 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5ada41e2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  4875. 17:49:16:196 INFO 4116 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723110521787_192.168.110.13_58113
  4876. 17:49:16:198 INFO 4116 --- [nacos-grpc-client-executor-19] c.a.n.c.remote.client.grpc.GrpcClient : [1723110521787_192.168.110.13_58113]Ignore complete event,isRunning:false,isAbandon=false
  4877. 17:49:16:199 INFO 4116 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@359bd760[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 20]
  4878. 17:49:21:001 INFO 24580 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4879. 17:49:21:426 INFO 24580 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4880. 17:49:21:427 INFO 24580 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4881. 17:49:21:441 INFO 24580 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4882. 17:49:21:523 WARN 24580 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4883. 17:49:21:564 INFO 24580 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4884. 17:49:21:789 INFO 24580 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4885. 17:49:21:794 INFO 24580 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4886. 17:49:21:795 INFO 24580 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4887. 17:49:21:868 INFO 24580 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4888. 17:49:21:868 INFO 24580 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 852 ms
  4889. 17:49:22:323 INFO 24580 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSd5Y1imtDhQeBMwTRsjtHoqfAqnZXIWhLEFGgdAMyg9y0u+9z0WbZbuhiMdMPlSrOAHqM7j5rep3gjQ4Wpe6sl5eBgaVJOIUMUmrpdEKrU3SJZylK/wgyf9Gks3LXV8RpwEISyB4x1vP5ql3tStF7tgIMSULGCeHP9urnmPgG6QIDAQAB
  4890. 17:49:22:326 INFO 24580 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  4891. 17:49:22:406 INFO 24580 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:nFDBzrAi3v0nhT9wpE0Iwkxb00Fum1ig","refresh_token":"y7APMiH2w8fltm0o2ZGdDASeLQTTzcxM","magicId":"MxczTTQLeSADdGZ2o0mtlf8w2HiMPA7y","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  4892. 17:49:23:508 INFO 24580 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  4893. 17:49:23:800 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 77a33590-0364-4b7d-9a25-4e27ca9f1b21
  4894. 17:49:23:800 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] RpcClient init label, labels = {module=naming, source=sdk}
  4895. 17:49:23:801 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  4896. 17:49:23:801 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  4897. 17:49:23:801 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  4898. 17:49:23:801 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  4899. 17:49:23:921 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723110564421_192.168.110.13_58280
  4900. 17:49:23:922 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  4901. 17:49:23:922 INFO 24580 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Notify connected event to listeners.
  4902. 17:49:23:924 INFO 24580 --- [main] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  4903. 17:49:23:961 INFO 24580 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  4904. 17:49:23:966 INFO 24580 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  4905. 17:49:24:111 INFO 24580 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  4906. 17:49:24:113 INFO 24580 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  4907. 17:49:24:127 INFO 24580 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  4908. 17:49:24:164 INFO 24580 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.118 seconds (JVM running for 5.618)
  4909. 17:49:24:167 INFO 24580 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  4910. 17:49:24:168 INFO 24580 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  4911. 17:49:24:473 INFO 24580 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Receive server push request, request = NotifySubscriberRequest, requestId = 356
  4912. 17:49:24:485 INFO 24580 --- [nacos-grpc-client-executor-8] com.alibaba.nacos.common.remote.client : [77a33590-0364-4b7d-9a25-4e27ca9f1b21] Ack server push request, request = NotifySubscriberRequest, requestId = 356
  4913. 17:49:34:547 INFO 24580 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  4914. Note: further occurrences of this error will be logged at DEBUG level.
  4915. 17:49:34:552 INFO 24580 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  4916. 17:49:34:552 INFO 24580 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  4917. 17:49:34:553 INFO 24580 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
  4918. 17:49:34:588 INFO 24580 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : response:{"success":true,"data":{"service":"BRM","id":1,"orgCode":"001","orgName":"根节点","orgType":"org_base","sort":1,"forbidBindUser":0,"rootFlag":1,"busiType":1,"repeatAddFlag":1,"fieldExt":{"businessType":"2"}},"code":"0","errMsg":""}
  4919. 17:49:34:590 ERROR 24580 --- [http-nio-8086-exec-1] c.z.v.c.VisualizationController : error:{}
  4920. java.lang.IllegalStateException: closed
  4921. at okio.RealBufferedSource.select(RealBufferedSource.kt:218) ~[okio-2.8.0.jar:na]
  4922. at okhttp3.internal.Util.readBomAsCharset(Util.kt:265) ~[okhttp-4.9.3.jar:na]
  4923. at okhttp3.ResponseBody.string(ResponseBody.kt:187) ~[okhttp-4.9.3.jar:na]
  4924. at com.zksy.visualization.controller.VisualizationController.test(VisualizationController.java:48) ~[classes/:na]
  4925. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  4926. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  4927. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  4928. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  4929. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.27.jar:5.3.27]
  4930. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.27.jar:5.3.27]
  4931. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4932. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4933. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4934. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4935. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4936. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4937. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4938. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4939. at javax.servlet.http.HttpServlet.service(HttpServlet.java:529) ~[tomcat-embed-core-9.0.75.jar:4.0.FR]
  4940. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.27.jar:5.3.27]
  4941. at javax.servlet.http.HttpServlet.service(HttpServlet.java:623) ~[tomcat-embed-core-9.0.75.jar:4.0.FR]
  4942. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:209) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4943. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4944. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) ~[tomcat-embed-websocket-9.0.75.jar:9.0.75]
  4945. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4946. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4947. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.27.jar:5.3.27]
  4948. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4949. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4950. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4951. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.27.jar:5.3.27]
  4952. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4953. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4954. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4955. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.27.jar:5.3.27]
  4956. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.27.jar:5.3.27]
  4957. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:178) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4958. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:153) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4959. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4960. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4961. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:481) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4962. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4963. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4964. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4965. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4966. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:390) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4967. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4968. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:926) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4969. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1791) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4970. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4971. at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4972. at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4973. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.75.jar:9.0.75]
  4974. at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na]
  4975. 17:51:18:510 WARN 24580 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4976. 17:51:18:510 WARN 24580 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4977. 17:51:18:510 WARN 24580 --- [Thread-5] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4978. 17:51:18:511 WARN 24580 --- [Thread-1] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4979. 17:51:18:622 INFO 24580 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  4980. 17:51:18:624 INFO 24580 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  4981. 17:51:18:948 INFO 24580 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  4982. 17:51:18:949 INFO 24580 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3ef97870[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  4983. 17:51:18:949 INFO 24580 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1723110564421_192.168.110.13_58280
  4984. 17:51:18:951 INFO 24580 --- [nacos-grpc-client-executor-34] c.a.n.c.remote.client.grpc.GrpcClient : [1723110564421_192.168.110.13_58280]Ignore complete event,isRunning:false,isAbandon=false
  4985. 17:51:18:952 INFO 24580 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@ba21b36[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 35]
  4986. 17:51:23:708 INFO 8376 --- [main] c.z.v.VisualizationApplication : The following 1 profile is active: "dev"
  4987. 17:51:24:142 INFO 8376 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode
  4988. 17:51:24:145 INFO 8376 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4989. 17:51:24:159 INFO 8376 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces.
  4990. 17:51:24:241 WARN 8376 --- [main] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in '[com.zksy.visualization]' package. Please check your configuration.
  4991. 17:51:24:282 INFO 8376 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=585177fb-7f27-3a8a-811d-4b8990688216
  4992. 17:51:24:475 INFO 8376 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
  4993. 17:51:24:480 INFO 8376 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4994. 17:51:24:480 INFO 8376 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.75]
  4995. 17:51:24:554 INFO 8376 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4996. 17:51:24:556 INFO 8376 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 839 ms
  4997. 17:51:25:073 INFO 8376 --- [main] c.z.v.config.InitializationService : Public Key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQemLKCqVoEouNWFeQ+7bLENk4Zai/rrPL77VSJtJnXWaZ1+VHqS14IzBo0Nw/+IulXNIoTWSGE/dFp0Hd9yarsUMnA7GK47HbLLgVCc+WNVIgU/Zbv+TgkarPNUfNrx3GoKkenz/cv4MeDxjccjUv8OB0va+/8/tx2/aFKHrvvQIDAQAB
  4998. 17:51:25:076 INFO 8376 --- [main] c.z.v.config.InitializationService : 获取秘钥成功
  4999. 17:51:25:142 INFO 8376 --- [main] c.z.v.config.InitializationService : Response Body: {"success":true,"data":{"access_token":"1:SraYwF0DTOgyOpVQy7KVwdgYnZbhyb5y","refresh_token":"iksdt6eTMPmubANZeuK3uMieZ4fsKVBZ","magicId":"ZBVKsf4ZeiMu3KueZNAbumPMTe6tdski","scope":"supplier","remainderDays":28,"token_type":"bearer","expires_in":7199,"userId":"1"},"code":"0","errMsg":""}
  5000. 17:51:26:206 INFO 8376 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  5001. 17:51:26:509 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 14c0baae-3fd7-43cd-b38e-47cfc2d050c9
  5002. 17:51:26:509 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] RpcClient init label, labels = {module=naming, source=sdk}
  5003. 17:51:26:510 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  5004. 17:51:26:511 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  5005. 17:51:26:511 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  5006. 17:51:26:511 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  5007. 17:51:26:637 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1723110687133_192.168.110.13_58632
  5008. 17:51:26:638 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  5009. 17:51:26:638 INFO 8376 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Notify connected event to listeners.
  5010. 17:51:26:638 INFO 8376 --- [main] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$471/0x000000080041b040
  5011. 17:51:26:678 INFO 8376 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
  5012. 17:51:26:685 INFO 8376 --- [main] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP visualization-service 192.168.220.1:8086 register finished
  5013. 17:51:26:822 INFO 8376 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  5014. 17:51:26:824 INFO 8376 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  5015. 17:51:26:837 INFO 8376 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  5016. 17:51:26:875 INFO 8376 --- [main] c.z.v.VisualizationApplication : Started VisualizationApplication in 5.105 seconds (JVM running for 5.611)
  5017. 17:51:26:878 INFO 8376 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service, group=DEFAULT_GROUP
  5018. 17:51:26:880 INFO 8376 --- [main] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=visualization-service-dev.yaml, group=DEFAULT_GROUP
  5019. 17:51:27:204 INFO 8376 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Receive server push request, request = NotifySubscriberRequest, requestId = 358
  5020. 17:51:27:212 INFO 8376 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [14c0baae-3fd7-43cd-b38e-47cfc2d050c9] Ack server push request, request = NotifySubscriberRequest, requestId = 358
  5021. 17:51:31:076 INFO 8376 --- [http-nio-8086-exec-1] o.apache.tomcat.util.http.parser.Cookie : A cookie header was received [Hm_lvt_e8002ef3d9e0d8274b5b74cc4a027d08=1722301390,1722321634,1722391848,1722493898;] that contained an invalid cookie. That cookie will be ignored.
  5022. Note: further occurrences of this error will be logged at DEBUG level.
  5023. 17:51:31:081 INFO 8376 --- [http-nio-8086-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
  5024. 17:51:31:081 INFO 8376 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
  5025. 17:51:31:082 INFO 8376 --- [http-nio-8086-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms