info.2023-08-24.log 986 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227
  1. 00:20:16.086 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2. 00:20:16.138 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10080 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3. 00:20:16.139 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4. 00:20:16.191 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5. 00:20:16.192 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6. 00:20:18.081 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  7. 00:20:18.084 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8. 00:20:18.179 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  9. 00:20:18.342 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10. 00:20:18.360 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  11. 00:20:19.097 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  12. 00:20:19.097 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2905 ms
  13. 00:20:21.458 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  14. 00:20:21.467 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  15. 00:20:21.467 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  16. 00:20:21.468 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  17. 00:20:21.468 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  18. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  19. NOT STARTED.
  20. Currently in standby mode.
  21. Number of jobs executed: 0
  22. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  23. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  24. 00:20:21.469 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  25. 00:20:21.469 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  26. 00:20:21.469 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5ef87d06
  27. 00:20:23.022 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  28. 00:20:23.028 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  29. 00:20:23.165 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  30. 00:20:23.196 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  31. 00:20:23.196 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  32. 00:20:23.197 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  33. 00:20:23.220 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  34. 00:20:23.229 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  35. 00:20:23.239 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  36. 00:20:23.270 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  37. 00:20:23.326 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  38. 00:20:23.328 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  39. 00:20:23.328 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  40. 00:20:23.351 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.714 seconds (process running for 8.958)
  41. 00:20:23.354 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  42. 00:20:23.360 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  43. 00:20:23.912 [restartedMain] INFO p6spy - 2023-08-24 00:20:23 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  44. 00:20:23.956 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@7cb309e1
  45. 00:20:23.966 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  46. 00:20:24.036 [restartedMain] INFO p6spy - 2023-08-24 00:20:24 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  47. A.job_id,
  48. A.job_title,
  49. A.job_desc,
  50. A.status,
  51. A.job_type,
  52. A.job_code,
  53. A.job_cron,
  54. A.job_class_id,
  55. B.job_class,
  56. A.cycle_title,
  57. A.cycle_period,
  58. A.cycle_unit
  59. FROM job AS A
  60. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  61. WHERE A.deleted_flag = 0
  62. AND A.status = 1
  63. ORDER BY A.job_id ASC
  64. 00:20:24.057 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  65. 00:20:24.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  66. 00:20:24.904 [RMI TCP Connection(7)-192.168.3.17] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  67. 00:20:24.905 [RMI TCP Connection(7)-192.168.3.17] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  68. 00:20:24.911 [RMI TCP Connection(6)-192.168.3.17] INFO p6spy - 2023-08-24 00:20:24 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  69. 00:20:24.954 [RMI TCP Connection(7)-192.168.3.17] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 49 ms
  70. 00:20:25.017 [RMI TCP Connection(6)-192.168.3.17] INFO p6spy - 2023-08-24 00:20:25 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  71. 00:21:00.625 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  72. 00:21:00.626 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  73. 00:21:00.632 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  74. 00:21:00.633 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  75. 00:21:00.634 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  76. 00:21:00.634 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  77. 00:21:00.640 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  78. 00:21:00.641 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  79. 00:21:00.641 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  80. 00:21:00.641 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  81. 00:21:00.641 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  82. 00:21:00.660 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  83. 00:21:00.666 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  84. 09:59:04.894 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  85. 09:59:04.956 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15536 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  86. 09:59:04.957 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  87. 09:59:05.017 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  88. 09:59:05.017 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  89. 09:59:06.999 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  90. 09:59:07.002 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  91. 09:59:07.099 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  92. 09:59:07.266 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  93. 09:59:07.287 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  94. 09:59:08.072 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  95. 09:59:08.072 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3055 ms
  96. 09:59:10.847 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  97. 09:59:10.857 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  98. 09:59:10.858 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  99. 09:59:10.858 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  100. 09:59:10.859 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  101. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  102. NOT STARTED.
  103. Currently in standby mode.
  104. Number of jobs executed: 0
  105. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  106. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  107. 09:59:10.859 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  108. 09:59:10.859 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  109. 09:59:10.859 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@baf5478
  110. 09:59:12.677 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  111. 09:59:12.683 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  112. 09:59:12.833 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  113. 09:59:12.865 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  114. 09:59:12.866 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  115. 09:59:12.866 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  116. 09:59:12.890 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  117. 09:59:12.901 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  118. 09:59:12.912 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  119. 09:59:12.944 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  120. 09:59:12.998 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  121. 09:59:13.000 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  122. 09:59:13.001 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  123. 09:59:13.027 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.718 seconds (process running for 9.706)
  124. 09:59:13.030 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  125. 09:59:13.037 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  126. 09:59:13.470 [restartedMain] INFO p6spy - 2023-08-24 09:59:13 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT 1
  127. 09:59:13.476 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@43a967c4
  128. 09:59:13.480 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  129. 09:59:13.562 [restartedMain] INFO p6spy - 2023-08-24 09:59:13 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT
  130. A.job_id,
  131. A.job_title,
  132. A.job_desc,
  133. A.status,
  134. A.job_type,
  135. A.job_code,
  136. A.job_cron,
  137. A.job_class_id,
  138. B.job_class,
  139. A.cycle_title,
  140. A.cycle_period,
  141. A.cycle_unit
  142. FROM job AS A
  143. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  144. WHERE A.deleted_flag = 0
  145. AND A.status = 1
  146. ORDER BY A.job_id ASC
  147. 09:59:13.586 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  148. 09:59:13.589 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  149. 09:59:13.907 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 09:59:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  150. FROM goaf_sensor
  151. WHERE goaf_sensor_ip = '192.168.3.12'
  152. 09:59:14.403 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  153. 09:59:14.404 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  154. 09:59:14.408 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  155. 09:59:14.414 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-24 09:59:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  156. 09:59:31.558 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  157. 09:59:31.582 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  158. client_id,
  159. client_title,
  160. client_app_id,
  161. client_app_key,
  162. client_app_secret,
  163. client_desc,
  164. status,
  165. is_fixed
  166. FROM client
  167. WHERE deleted_flag = 0
  168. AND client_app_id = '10001'
  169. AND client_app_key = '82a8bf439373e305'
  170. 09:59:31.628 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  171. A.oc_id,
  172. B.oc_type_id,
  173. B.oc_name,
  174. A.account_id,
  175. A.account_name,
  176. A.account_real_name,
  177. A.password,
  178. A.account_type,
  179. A.account_staff_no,
  180. A.account_phone,
  181. A.account_last_ip,
  182. A.account_loc,
  183. A.status,
  184. A.account_avatar,
  185. A.account_photo,
  186. A.account_real_name,
  187. A.account_intro,
  188. A.wx_id,
  189. A.is_fixed
  190. FROM account AS A
  191. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  192. WHERE A.deleted_flag = 0
  193. AND (A.account_name = 'system'
  194. OR A.account_phone = 'system'
  195. OR A.account_mail = 'system'
  196. OR A.account_staff_no = 'system')
  197. 09:59:31.643 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  198. A.oc_id,
  199. A.oc_name,
  200. A.oc_type_id,
  201. A.root_id,
  202. A.parent_id,
  203. A.admin_id,
  204. B.account_name AS admin_name,
  205. A.group_id,
  206. A.node_left,
  207. A.node_right,
  208. A.node_level,
  209. A.is_leaf,
  210. A.status,
  211. A.if_lic
  212. FROM oc AS A
  213. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  214. WHERE A.oc_id = 1
  215. 09:59:31.657 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  216. A.rm_id,
  217. A.role_id,
  218. B.role_type_id,
  219. B.role_code,
  220. B.role_name,
  221. A.account_id
  222. FROM s_role_member AS A
  223. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  224. WHERE account_id = 1
  225. LIMIT 1
  226. 09:59:31.671 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  227. A.gm_id,
  228. A.oc_id,
  229. A.group_id,
  230. B.group_name,
  231. B.node_left ,
  232. B.node_right,
  233. A.account_id
  234. FROM s_group_member AS A
  235. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  236. WHERE B.deleted_flag = 0
  237. AND A.oc_id = 1
  238. AND A.account_id = 1
  239. LIMIT 1
  240. 09:59:31.686 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  241. A.gmp_id,
  242. A.oc_id,
  243. A.group_id,
  244. B.group_name,
  245. A.account_id,
  246. D.account_name,
  247. D.account_real_name,
  248. A.position_id,
  249. C.position_name
  250. FROM s_group_member_position A
  251. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  252. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  253. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  254. WHERE A.deleted_flag = 0
  255. AND A.oc_id = 1
  256. AND A.group_id = 1
  257. AND A.account_id = 1
  258. LIMIT 1
  259. 09:59:31.700 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:31 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  260. A.gmpg_id,
  261. A.oc_id,
  262. A.group_id,
  263. A.account_id,
  264. A.position_id,
  265. A.grant_group_id,
  266. B.group_name AS grant_group_name
  267. FROM s_group_member_position_grant A
  268. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  269. WHERE A.deleted_flag = 0
  270. AND A.oc_id = 1
  271. AND A.group_id = 1
  272. AND A.account_id = 1
  273. AND A.position_id = 1
  274. LIMIT 1
  275. 09:59:32.309 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:32 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  276. client_id,
  277. client_title,
  278. client_app_id,
  279. client_app_key,
  280. client_app_secret,
  281. client_desc,
  282. status,
  283. is_fixed
  284. FROM client
  285. WHERE deleted_flag = 0
  286. AND client_app_id = '10001'
  287. AND client_app_key = '82a8bf439373e305'
  288. 09:59:32.358 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:32 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  289. A.client_id,
  290. A.role_id,
  291. A.permit_id,
  292. A.permit_title,
  293. A.permit_code,
  294. A.permit_entry,
  295. A.permit_desc,
  296. A.permit_type,
  297. A.parent_id,
  298. A.root_id,
  299. A.sort_no,
  300. A.is_home
  301. FROM s_role_permit AS A
  302. WHERE 1 = 1
  303. AND A.client_id = 2
  304. AND A.role_id = 1
  305. ORDER BY A.parent_id ASC ,A.sort_no ASC
  306. 09:59:32.523 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:32 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT count(*)
  307. FROM msg AS M
  308. WHERE M.oc_id = 1
  309. AND (
  310. EXISTS (
  311. SELECT 1 FROM msg_to TT
  312. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  313. ) OR
  314. EXISTS (
  315. SELECT 1 FROM msg_cc CC
  316. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  317. )
  318. )
  319. 09:59:36.689 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:36 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  320. 09:59:36.772 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:36 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  321. 09:59:36.782 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:36 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  322. A.job_id,
  323. A.job_title,
  324. A.job_desc,
  325. A.status,
  326. A.job_type,
  327. A.job_code,
  328. A.job_cron,
  329. A.job_class_id,
  330. B.job_class,
  331. A.cycle_title,
  332. A.cycle_period,
  333. A.cycle_unit
  334. FROM job AS A
  335. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  336. WHERE A.deleted_flag = 0
  337. ORDER BY A.job_id ASC
  338. LIMIT 10
  339. 09:59:51.096 [XNIO-1 task-2] INFO p6spy - 2023-08-24 09:59:51 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  340. 09:59:51.103 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:51 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  341. 09:59:51.108 [XNIO-1 task-2] INFO p6spy - 2023-08-24 09:59:51 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  342. job_class_id,
  343. job_class_title,
  344. job_class_desc,
  345. job_class
  346. FROM job_class
  347. WHERE deleted_flag = 0
  348. ORDER BY job_class_id ASC
  349. 09:59:51.114 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:51 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  350. A.job_id,
  351. A.job_title,
  352. A.job_desc,
  353. A.status,
  354. A.job_type,
  355. A.job_code,
  356. A.job_cron,
  357. A.job_class_id,
  358. B.job_class,
  359. A.cycle_title,
  360. A.cycle_period,
  361. A.cycle_unit
  362. FROM job AS A
  363. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  364. WHERE A.job_id = 439094
  365. 09:59:59.036 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:59 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  366. 09:59:59.062 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:59 | Time Consuming: 14 ms | Connection: statement-1 | SQL: UPDATE job
  367. SET job_title = '巡检天任务',
  368. job_desc = '天任务',
  369. status = 1,
  370. job_type = 1,
  371. job_code = 'Cron任务',
  372. job_cron = '0 1 10 * * ?',
  373. job_class_id = 2,
  374. cycle_title = '天',
  375. cycle_period = 0,
  376. cycle_unit = 0,
  377. updated_by = 1,
  378. updated_at = '2023-08-24T09:59:59.040528300'
  379. WHERE job_id = 439094
  380. 09:59:59.103 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:59 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  381. 09:59:59.111 [XNIO-1 task-3] INFO p6spy - 2023-08-24 09:59:59 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  382. A.job_id,
  383. A.job_title,
  384. A.job_desc,
  385. A.status,
  386. A.job_type,
  387. A.job_code,
  388. A.job_cron,
  389. A.job_class_id,
  390. B.job_class,
  391. A.cycle_title,
  392. A.cycle_period,
  393. A.cycle_unit
  394. FROM job AS A
  395. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  396. WHERE A.deleted_flag = 0
  397. ORDER BY A.job_id ASC
  398. LIMIT 10
  399. 10:00:05.488 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  400. 10:00:05.489 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  401. 10:00:05.491 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  402. 10:00:05.493 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  403. 10:00:05.493 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  404. 10:00:05.493 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  405. 10:00:05.498 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  406. 10:00:05.500 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  407. 10:00:05.500 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  408. 10:00:05.500 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  409. 10:00:05.500 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  410. 10:00:05.523 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  411. 10:00:05.530 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  412. 10:00:09.416 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  413. 10:00:09.469 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16024 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  414. 10:00:09.469 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  415. 10:00:09.521 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  416. 10:00:09.521 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  417. 10:00:11.375 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  418. 10:00:11.378 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  419. 10:00:11.467 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  420. 10:00:11.647 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  421. 10:00:11.663 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  422. 10:00:12.475 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  423. 10:00:12.475 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2953 ms
  424. 10:00:14.890 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  425. 10:00:14.900 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  426. 10:00:14.900 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  427. 10:00:14.901 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  428. 10:00:14.901 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  429. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  430. NOT STARTED.
  431. Currently in standby mode.
  432. Number of jobs executed: 0
  433. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  434. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  435. 10:00:14.901 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  436. 10:00:14.901 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  437. 10:00:14.902 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  438. 10:00:16.742 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  439. 10:00:16.747 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  440. 10:00:16.898 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  441. 10:00:16.928 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  442. 10:00:16.929 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  443. 10:00:16.929 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  444. 10:00:16.950 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  445. 10:00:16.958 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  446. 10:00:16.969 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  447. 10:00:17.001 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  448. 10:00:17.053 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  449. 10:00:17.054 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  450. 10:00:17.055 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  451. 10:00:17.080 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.159 seconds (process running for 9.564)
  452. 10:00:17.082 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  453. 10:00:17.089 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  454. 10:00:17.428 [restartedMain] INFO p6spy - 2023-08-24 10:00:17 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  455. 10:00:17.433 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@37873594
  456. 10:00:17.452 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  457. 10:00:17.530 [restartedMain] INFO p6spy - 2023-08-24 10:00:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  458. A.job_id,
  459. A.job_title,
  460. A.job_desc,
  461. A.status,
  462. A.job_type,
  463. A.job_code,
  464. A.job_cron,
  465. A.job_class_id,
  466. B.job_class,
  467. A.cycle_title,
  468. A.cycle_period,
  469. A.cycle_unit
  470. FROM job AS A
  471. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  472. WHERE A.deleted_flag = 0
  473. AND A.status = 1
  474. ORDER BY A.job_id ASC
  475. 10:00:17.552 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  476. 10:00:17.554 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  477. 10:00:17.787 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:00:17 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  478. FROM goaf_sensor
  479. WHERE goaf_sensor_ip = '192.168.3.12'
  480. 10:00:17.975 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  481. 10:00:17.975 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  482. 10:00:17.984 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 9 ms
  483. 10:00:17.986 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 10:00:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  484. 10:01:00.047 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  485. 10:01:00.051 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 10:01:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  486. 10:01:00.066 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  487. 10:01:27.632 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:01:27 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  488. 10:01:27.637 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:01:27 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  489. FROM goaf_sensor
  490. WHERE goaf_sensor_ip = '192.168.3.12'
  491. 10:01:27.648 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:01:27 | Time Consuming: 6 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  492. 10:01:27.651 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:01:27 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  493. 10:01:27.675 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:01:27 | Time Consuming: 15 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  494. ( goaf_data_id,
  495. oc_id,
  496. goaf_sensor_id,
  497. goaf_sensor_name,
  498. frequency_x,
  499. frequency_y,
  500. frequency_z,
  501. acc_x,
  502. acc_y,
  503. acc_z,
  504. vel_x,
  505. vel_y,
  506. vel_z,
  507. dis_x,
  508. dis_y,
  509. dis_z,
  510. sensor_temperature,
  511. ang_x,
  512. ang_y,
  513. ang_z,
  514. f_alarm_acc_x,
  515. f_alarm_acc_y,
  516. f_alarm_acc_z,
  517. f_alarm_vel_x,
  518. f_alarm_vel_y,
  519. f_alarm_vel_z,
  520. f_alarm_dis_x,
  521. f_alarm_dis_y,
  522. f_alarm_dis_z,
  523. f_alarm_temperature,
  524. td_wave_value_x,
  525. td_wave_value_y,
  526. td_wave_value_z,
  527. goaf_datareport_time )
  528. values ( 442162,
  529. 406283,
  530. 442139,
  531. 'jacintoqqq',
  532. 0,
  533. 0,
  534. 0,
  535. 1,
  536. 1,
  537. 1,
  538. 8,
  539. 3,
  540. 5,
  541. 2,
  542. 0,
  543. 3,
  544. 290,
  545. -6364,
  546. 2619,
  547. -270,
  548. 0,
  549. 0,
  550. 0,
  551. 0,
  552. 0,
  553. 0,
  554. 0,
  555. 0,
  556. 0,
  557. 0,
  558. '-867,-870,-883,-874,-865,-877,-877,-877,-874,-869,-876,-871,-871,-875,-878,-881,-875,-869,-872,-876,-881,-881,-870,-866,-871,-875,-879,-876,-874,-871,-869,-880,-882,-886,-888,-881,-875,-876,-879,-878,-879,-876,-872,-869,-873,-874,-871,-878,-878,-863,-870,-879,-883,-878,-869,-869,-866,-872,-886,-886,-878,-876,-874,-884,-882,-880,-878,-879,-877,-871,-878,-873,-863,-872,-873,-870,-877,-867,-863,-868,-879,-883,-872,-870,-877,-875,-868,-867,-868,-872,-870,-874,-875,-868,-873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  559. '430,431,432,430,434,433,424,426,432,429,428,432,428,432,430,434,429,424,434,430,435,431,425,429,431,429,430,431,439,439,432,428,433,432,420,426,428,427,436,430,427,431,430,429,436,433,441,441,421,431,429,420,426,430,427,426,430,432,440,440,438,432,428,432,428,432,433,429,434,435,440,425,422,438,426,422,432,434,428,428,428,425,431,425,424,428,429,435,440,440,432,435,436,427,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  560. '-52,-45,-46,-38,-36,-43,-51,-51,-54,-58,-56,-60,-57,-53,-42,-44,-53,-56,-57,-53,-54,-50,-43,-54,-53,-48,-53,-52,-44,-43,-51,-50,-47,-47,-54,-50,-52,-49,-54,-53,-50,-52,-51,-58,-55,-55,-54,-52,-57,-61,-49,-45,-56,-55,-55,-58,-51,-53,-57,-54,-60,-60,-45,-51,-44,-43,-49,-48,-47,-44,-50,-46,-45,-51,-47,-46,-51,-50,-48,-47,-56,-60,-54,-53,-54,-46,-48,-48,-53,-55,-45,-49,-45,-41,-55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  561. '2023-08-24T10:01:27.652728700' )
  562. 10:02:43.080 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:02:43 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  563. 10:02:43.085 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:02:43 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  564. FROM goaf_sensor
  565. WHERE goaf_sensor_ip = '192.168.3.12'
  566. 10:03:28.033 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  567. 10:03:28.034 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  568. 10:03:28.044 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  569. 10:03:28.046 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  570. 10:03:28.046 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  571. 10:03:28.047 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  572. 10:03:28.054 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  573. 10:03:28.055 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  574. 10:03:28.055 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  575. 10:03:28.055 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  576. 10:03:28.056 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  577. 10:03:28.069 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  578. 10:03:28.073 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  579. 10:23:20.820 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  580. 10:23:20.868 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19060 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  581. 10:23:20.868 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  582. 10:23:20.921 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  583. 10:23:20.921 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  584. 10:23:22.651 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  585. 10:23:22.654 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  586. 10:23:22.743 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  587. 10:23:22.901 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  588. 10:23:22.921 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  589. 10:23:23.903 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  590. 10:23:23.903 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2981 ms
  591. 10:23:26.580 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  592. 10:23:26.590 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  593. 10:23:26.591 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  594. 10:23:26.591 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  595. 10:23:26.592 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  596. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  597. NOT STARTED.
  598. Currently in standby mode.
  599. Number of jobs executed: 0
  600. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  601. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  602. 10:23:26.592 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  603. 10:23:26.592 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  604. 10:23:26.592 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@268224b7
  605. 10:23:28.413 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  606. 10:23:28.418 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  607. 10:23:28.599 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  608. 10:23:28.627 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  609. 10:23:28.628 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  610. 10:23:28.628 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  611. 10:23:28.653 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  612. 10:23:28.662 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  613. 10:23:28.673 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  614. 10:23:28.713 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  615. 10:23:28.773 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  616. 10:23:28.774 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  617. 10:23:28.775 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  618. 10:23:28.800 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.444 seconds (process running for 9.113)
  619. 10:23:28.803 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  620. 10:23:28.810 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  621. 10:23:29.180 [restartedMain] INFO p6spy - 2023-08-24 10:23:29 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  622. 10:23:29.184 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@38830021
  623. 10:23:29.193 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  624. 10:23:29.261 [restartedMain] INFO p6spy - 2023-08-24 10:23:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  625. A.job_id,
  626. A.job_title,
  627. A.job_desc,
  628. A.status,
  629. A.job_type,
  630. A.job_code,
  631. A.job_cron,
  632. A.job_class_id,
  633. B.job_class,
  634. A.cycle_title,
  635. A.cycle_period,
  636. A.cycle_unit
  637. FROM job AS A
  638. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  639. WHERE A.deleted_flag = 0
  640. AND A.status = 1
  641. ORDER BY A.job_id ASC
  642. 10:23:29.283 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  643. 10:23:29.287 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  644. 10:23:29.534 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:23:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  645. FROM goaf_sensor
  646. WHERE goaf_sensor_ip = '192.168.3.12'
  647. 10:23:30.027 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  648. 10:23:30.027 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  649. 10:23:30.031 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  650. 10:23:30.038 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 10:23:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  651. 10:23:35.740 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:23:35 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  652. 10:23:35.766 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:23:35 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  653. client_id,
  654. client_title,
  655. client_app_id,
  656. client_app_key,
  657. client_app_secret,
  658. client_desc,
  659. status,
  660. is_fixed
  661. FROM client
  662. WHERE deleted_flag = 0
  663. AND client_app_id = '10001'
  664. AND client_app_key = '82a8bf439373e305'
  665. 10:23:35.811 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:23:35 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  666. A.client_id,
  667. A.role_id,
  668. A.permit_id,
  669. A.permit_title,
  670. A.permit_code,
  671. A.permit_entry,
  672. A.permit_desc,
  673. A.permit_type,
  674. A.parent_id,
  675. A.root_id,
  676. A.sort_no,
  677. A.is_home
  678. FROM s_role_permit AS A
  679. WHERE 1 = 1
  680. AND A.client_id = 2
  681. AND A.role_id = 1
  682. ORDER BY A.parent_id ASC ,A.sort_no ASC
  683. 10:23:36.006 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:36 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT 1
  684. 10:23:36.018 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:23:36 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT count(*)
  685. FROM msg AS M
  686. WHERE M.oc_id = 1
  687. AND (
  688. EXISTS (
  689. SELECT 1 FROM msg_to TT
  690. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  691. ) OR
  692. EXISTS (
  693. SELECT 1 FROM msg_cc CC
  694. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  695. )
  696. )
  697. 10:23:36.144 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:36 | Time Consuming: 11 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  698. 10:23:36.157 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:36 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT
  699. A.job_id,
  700. A.job_title,
  701. A.job_desc,
  702. A.status,
  703. A.job_type,
  704. A.job_code,
  705. A.job_cron,
  706. A.job_class_id,
  707. B.job_class,
  708. A.cycle_title,
  709. A.cycle_period,
  710. A.cycle_unit
  711. FROM job AS A
  712. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  713. WHERE A.deleted_flag = 0
  714. ORDER BY A.job_id ASC
  715. LIMIT 10
  716. 10:23:37.671 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:23:37 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  717. 10:23:37.680 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:37 | Time Consuming: 12 ms | Connection: statement-1 | SQL: SELECT 1
  718. 10:23:37.693 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:23:37 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  719. job_class_id,
  720. job_class_title,
  721. job_class_desc,
  722. job_class
  723. FROM job_class
  724. WHERE deleted_flag = 0
  725. ORDER BY job_class_id ASC
  726. 10:23:37.709 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:37 | Time Consuming: 14 ms | Connection: statement-1 | SQL: SELECT
  727. A.job_id,
  728. A.job_title,
  729. A.job_desc,
  730. A.status,
  731. A.job_type,
  732. A.job_code,
  733. A.job_cron,
  734. A.job_class_id,
  735. B.job_class,
  736. A.cycle_title,
  737. A.cycle_period,
  738. A.cycle_unit
  739. FROM job AS A
  740. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  741. WHERE A.job_id = 439094
  742. 10:23:45.851 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:45 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  743. 10:23:45.869 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:45 | Time Consuming: 9 ms | Connection: statement-1 | SQL: UPDATE job
  744. SET job_title = '巡检天任务',
  745. job_desc = '天任务',
  746. status = 1,
  747. job_type = 1,
  748. job_code = 'Cron任务',
  749. job_cron = '0 25 10 * * ?',
  750. job_class_id = 2,
  751. cycle_title = '天',
  752. cycle_period = 0,
  753. cycle_unit = 0,
  754. updated_by = 1,
  755. updated_at = '2023-08-24T10:23:45.855048400'
  756. WHERE job_id = 439094
  757. 10:23:45.911 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:45 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  758. 10:23:45.918 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:23:45 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  759. A.job_id,
  760. A.job_title,
  761. A.job_desc,
  762. A.status,
  763. A.job_type,
  764. A.job_code,
  765. A.job_cron,
  766. A.job_class_id,
  767. B.job_class,
  768. A.cycle_title,
  769. A.cycle_period,
  770. A.cycle_unit
  771. FROM job AS A
  772. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  773. WHERE A.deleted_flag = 0
  774. ORDER BY A.job_id ASC
  775. LIMIT 10
  776. 10:24:04.112 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  777. 10:24:04.114 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  778. 10:24:04.116 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  779. 10:24:04.118 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  780. 10:24:04.118 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  781. 10:24:04.118 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  782. 10:24:04.123 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  783. 10:24:04.124 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  784. 10:24:04.124 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  785. 10:24:04.124 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  786. 10:24:04.124 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  787. 10:24:04.144 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  788. 10:24:04.165 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  789. 10:24:07.769 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  790. 10:24:07.821 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15532 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  791. 10:24:07.822 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  792. 10:24:07.884 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  793. 10:24:07.885 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  794. 10:24:09.674 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  795. 10:24:09.677 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  796. 10:24:09.763 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 0 Redis repository interfaces.
  797. 10:24:09.937 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  798. 10:24:09.954 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  799. 10:24:10.692 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  800. 10:24:10.692 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2807 ms
  801. 10:24:13.034 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  802. 10:24:13.044 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  803. 10:24:13.044 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  804. 10:24:13.045 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  805. 10:24:13.045 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  806. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  807. NOT STARTED.
  808. Currently in standby mode.
  809. Number of jobs executed: 0
  810. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  811. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  812. 10:24:13.045 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  813. 10:24:13.046 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  814. 10:24:13.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@eef2823
  815. 10:24:14.736 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  816. 10:24:14.742 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  817. 10:24:14.886 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  818. 10:24:14.918 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  819. 10:24:14.918 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  820. 10:24:14.918 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  821. 10:24:14.938 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  822. 10:24:14.947 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  823. 10:24:14.958 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  824. 10:24:14.989 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  825. 10:24:15.042 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  826. 10:24:15.043 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  827. 10:24:15.043 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  828. 10:24:15.068 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.792 seconds (process running for 8.768)
  829. 10:24:15.070 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  830. 10:24:15.077 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  831. 10:24:15.413 [restartedMain] INFO p6spy - 2023-08-24 10:24:15 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  832. 10:24:15.417 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@135b444d
  833. 10:24:15.427 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  834. 10:24:15.502 [restartedMain] INFO p6spy - 2023-08-24 10:24:15 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  835. A.job_id,
  836. A.job_title,
  837. A.job_desc,
  838. A.status,
  839. A.job_type,
  840. A.job_code,
  841. A.job_cron,
  842. A.job_class_id,
  843. B.job_class,
  844. A.cycle_title,
  845. A.cycle_period,
  846. A.cycle_unit
  847. FROM job AS A
  848. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  849. WHERE A.deleted_flag = 0
  850. AND A.status = 1
  851. ORDER BY A.job_id ASC
  852. 10:24:15.523 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  853. 10:24:15.524 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  854. 10:24:15.720 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:24:15 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  855. FROM goaf_sensor
  856. WHERE goaf_sensor_ip = '192.168.3.12'
  857. 10:24:16.176 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  858. 10:24:16.176 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  859. 10:24:16.181 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  860. 10:24:16.194 [RMI TCP Connection(1)-192.168.3.5] INFO p6spy - 2023-08-24 10:24:16 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT 1
  861. 10:25:00.007 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  862. 10:25:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 10:25:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  863. 10:25:00.026 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  864. 10:26:48.718 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:26:48 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  865. 10:26:48.733 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:26:48 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT *
  866. FROM goaf_sensor
  867. WHERE goaf_sensor_ip = '192.168.3.12'
  868. 10:32:01.151 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  869. 10:32:01.153 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  870. 10:32:01.168 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  871. 10:32:01.171 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  872. 10:32:01.172 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  873. 10:32:01.172 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  874. 10:32:01.338 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  875. 10:32:01.339 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  876. 10:32:01.340 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  877. 10:32:01.340 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  878. 10:32:01.340 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  879. 10:32:01.352 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  880. 10:32:01.360 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  881. 10:32:01.380 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 10:32:01 | Time Consuming: 253 ms | Connection: statement-0 | SQL: SELECT 1
  882. 10:32:10.473 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  883. 10:32:10.519 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10908 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  884. 10:32:10.520 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  885. 10:32:10.573 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  886. 10:32:10.573 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  887. 10:32:12.390 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  888. 10:32:12.394 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  889. 10:32:12.492 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 83 ms. Found 0 Redis repository interfaces.
  890. 10:32:12.659 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  891. 10:32:12.675 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  892. 10:32:13.377 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  893. 10:32:13.378 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2803 ms
  894. 10:32:15.609 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  895. 10:32:15.619 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  896. 10:32:15.619 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  897. 10:32:15.619 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  898. 10:32:15.620 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  899. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  900. NOT STARTED.
  901. Currently in standby mode.
  902. Number of jobs executed: 0
  903. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  904. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  905. 10:32:15.620 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  906. 10:32:15.620 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  907. 10:32:15.620 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7ccc5095
  908. 10:32:17.159 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  909. 10:32:17.164 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  910. 10:32:17.297 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  911. 10:32:17.322 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  912. 10:32:17.323 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  913. 10:32:17.323 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  914. 10:32:17.340 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  915. 10:32:17.348 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  916. 10:32:17.357 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  917. 10:32:17.384 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  918. 10:32:17.434 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  919. 10:32:17.435 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  920. 10:32:17.436 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  921. 10:32:17.460 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.45 seconds (process running for 8.333)
  922. 10:32:17.463 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  923. 10:32:17.470 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  924. 10:32:17.767 [restartedMain] INFO p6spy - 2023-08-24 10:32:17 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  925. 10:32:17.772 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6e9ed999
  926. 10:32:17.781 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  927. 10:32:17.844 [restartedMain] INFO p6spy - 2023-08-24 10:32:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  928. A.job_id,
  929. A.job_title,
  930. A.job_desc,
  931. A.status,
  932. A.job_type,
  933. A.job_code,
  934. A.job_cron,
  935. A.job_class_id,
  936. B.job_class,
  937. A.cycle_title,
  938. A.cycle_period,
  939. A.cycle_unit
  940. FROM job AS A
  941. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  942. WHERE A.deleted_flag = 0
  943. AND A.status = 1
  944. ORDER BY A.job_id ASC
  945. 10:32:17.864 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  946. 10:32:17.866 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  947. 10:32:18.034 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:32:18 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  948. FROM goaf_sensor
  949. WHERE goaf_sensor_ip = '192.168.3.12'
  950. 10:32:18.459 [RMI TCP Connection(8)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  951. 10:32:18.459 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  952. 10:32:18.463 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  953. 10:32:18.472 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-08-24 10:32:18 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  954. 10:32:25.637 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  955. 10:32:25.645 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  956. client_id,
  957. client_title,
  958. client_app_id,
  959. client_app_key,
  960. client_app_secret,
  961. client_desc,
  962. status,
  963. is_fixed
  964. FROM client
  965. WHERE deleted_flag = 0
  966. AND client_app_id = '10001'
  967. AND client_app_key = '82a8bf439373e305'
  968. 10:32:25.659 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  969. A.client_id,
  970. A.role_id,
  971. A.permit_id,
  972. A.permit_title,
  973. A.permit_code,
  974. A.permit_entry,
  975. A.permit_desc,
  976. A.permit_type,
  977. A.parent_id,
  978. A.root_id,
  979. A.sort_no,
  980. A.is_home
  981. FROM s_role_permit AS A
  982. WHERE 1 = 1
  983. AND A.client_id = 2
  984. AND A.role_id = 1
  985. ORDER BY A.parent_id ASC ,A.sort_no ASC
  986. 10:32:25.803 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT 1
  987. 10:32:25.816 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT count(*)
  988. FROM msg AS M
  989. WHERE M.oc_id = 1
  990. AND (
  991. EXISTS (
  992. SELECT 1 FROM msg_to TT
  993. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  994. ) OR
  995. EXISTS (
  996. SELECT 1 FROM msg_cc CC
  997. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  998. )
  999. )
  1000. 10:32:25.897 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  1001. 10:32:25.905 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:25 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  1002. A.job_id,
  1003. A.job_title,
  1004. A.job_desc,
  1005. A.status,
  1006. A.job_type,
  1007. A.job_code,
  1008. A.job_cron,
  1009. A.job_class_id,
  1010. B.job_class,
  1011. A.cycle_title,
  1012. A.cycle_period,
  1013. A.cycle_unit
  1014. FROM job AS A
  1015. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1016. WHERE A.deleted_flag = 0
  1017. ORDER BY A.job_id ASC
  1018. LIMIT 10
  1019. 10:32:43.361 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:32:43 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1020. 10:32:43.372 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:32:43 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1021. job_class_id,
  1022. job_class_title,
  1023. job_class_desc,
  1024. job_class
  1025. FROM job_class
  1026. WHERE deleted_flag = 0
  1027. ORDER BY job_class_id ASC
  1028. 10:32:43.374 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:43 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1029. 10:32:43.384 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:43 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  1030. A.job_id,
  1031. A.job_title,
  1032. A.job_desc,
  1033. A.status,
  1034. A.job_type,
  1035. A.job_code,
  1036. A.job_cron,
  1037. A.job_class_id,
  1038. B.job_class,
  1039. A.cycle_title,
  1040. A.cycle_period,
  1041. A.cycle_unit
  1042. FROM job AS A
  1043. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1044. WHERE A.job_id = 439094
  1045. 10:32:49.208 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:49 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1046. 10:32:49.230 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:49 | Time Consuming: 12 ms | Connection: statement-1 | SQL: UPDATE job
  1047. SET job_title = '巡检天任务',
  1048. job_desc = '天任务',
  1049. status = 1,
  1050. job_type = 1,
  1051. job_code = 'Cron任务',
  1052. job_cron = '0 34 10 * * ?',
  1053. job_class_id = 2,
  1054. cycle_title = '天',
  1055. cycle_period = 0,
  1056. cycle_unit = 0,
  1057. updated_by = 1,
  1058. updated_at = '2023-08-24T10:32:49.212780500'
  1059. WHERE job_id = 439094
  1060. 10:32:49.274 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:49 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  1061. 10:32:49.282 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:32:49 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  1062. A.job_id,
  1063. A.job_title,
  1064. A.job_desc,
  1065. A.status,
  1066. A.job_type,
  1067. A.job_code,
  1068. A.job_cron,
  1069. A.job_class_id,
  1070. B.job_class,
  1071. A.cycle_title,
  1072. A.cycle_period,
  1073. A.cycle_unit
  1074. FROM job AS A
  1075. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1076. WHERE A.deleted_flag = 0
  1077. ORDER BY A.job_id ASC
  1078. LIMIT 10
  1079. 10:33:03.007 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1080. 10:33:03.008 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1081. 10:33:03.016 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1082. 10:33:03.019 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1083. 10:33:03.020 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1084. 10:33:03.020 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1085. 10:33:03.028 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1086. 10:33:03.029 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1087. 10:33:03.029 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1088. 10:33:03.029 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1089. 10:33:03.029 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1090. 10:33:03.069 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1091. 10:33:03.097 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1092. 10:33:06.546 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1093. 10:33:06.595 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16252 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1094. 10:33:06.596 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1095. 10:33:06.651 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1096. 10:33:06.651 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1097. 10:33:08.748 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1098. 10:33:08.752 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1099. 10:33:08.868 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 103 ms. Found 0 Redis repository interfaces.
  1100. 10:33:09.067 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1101. 10:33:09.084 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1102. 10:33:09.919 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1103. 10:33:09.920 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3267 ms
  1104. 10:33:12.343 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1105. 10:33:12.353 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1106. 10:33:12.353 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1107. 10:33:12.353 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1108. 10:33:12.354 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1109. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1110. NOT STARTED.
  1111. Currently in standby mode.
  1112. Number of jobs executed: 0
  1113. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1114. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1115. 10:33:12.354 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1116. 10:33:12.354 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1117. 10:33:12.354 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@75cf37a4
  1118. 10:33:14.113 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1119. 10:33:14.119 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1120. 10:33:14.282 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1121. 10:33:14.312 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1122. 10:33:14.313 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1123. 10:33:14.313 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1124. 10:33:14.335 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1125. 10:33:14.345 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1126. 10:33:14.355 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1127. 10:33:14.387 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1128. 10:33:14.440 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1129. 10:33:14.442 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1130. 10:33:14.442 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1131. 10:33:14.469 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.413 seconds (process running for 9.307)
  1132. 10:33:14.473 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1133. 10:33:14.482 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1134. 10:33:14.827 [restartedMain] INFO p6spy - 2023-08-24 10:33:14 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  1135. 10:33:14.831 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@4e4c9046
  1136. 10:33:14.842 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1137. 10:33:14.908 [restartedMain] INFO p6spy - 2023-08-24 10:33:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1138. A.job_id,
  1139. A.job_title,
  1140. A.job_desc,
  1141. A.status,
  1142. A.job_type,
  1143. A.job_code,
  1144. A.job_cron,
  1145. A.job_class_id,
  1146. B.job_class,
  1147. A.cycle_title,
  1148. A.cycle_period,
  1149. A.cycle_unit
  1150. FROM job AS A
  1151. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1152. WHERE A.deleted_flag = 0
  1153. AND A.status = 1
  1154. ORDER BY A.job_id ASC
  1155. 10:33:14.931 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1156. 10:33:14.933 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1157. 10:33:15.177 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:33:15 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1158. FROM goaf_sensor
  1159. WHERE goaf_sensor_ip = '192.168.3.12'
  1160. 10:33:15.593 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1161. 10:33:15.594 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1162. 10:33:15.599 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  1163. 10:33:15.609 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-24 10:33:15 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1164. 10:34:00.012 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  1165. 10:34:00.019 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 10:34:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1166. 10:34:00.045 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  1167. 10:43:14.278 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1168. 10:43:14.279 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1169. 10:43:14.290 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1170. 10:43:14.295 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1171. 10:43:14.295 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1172. 10:43:14.296 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1173. 10:43:14.347 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:43:14 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  1174. FROM goaf_sensor
  1175. WHERE goaf_sensor_ip = '192.168.3.12'
  1176. 10:43:14.480 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1177. 10:43:14.481 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1178. 10:43:14.482 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1179. 10:43:14.482 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1180. 10:43:14.482 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1181. 10:43:14.495 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1182. 10:43:14.535 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1183. 10:51:23.703 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1184. 10:51:23.751 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4124 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1185. 10:51:23.751 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1186. 10:51:23.804 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1187. 10:51:23.804 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1188. 10:51:25.494 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1189. 10:51:25.499 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1190. 10:51:25.588 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  1191. 10:51:25.746 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1192. 10:51:25.762 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1193. 10:51:26.454 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1194. 10:51:26.454 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2649 ms
  1195. 10:51:28.677 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1196. 10:51:28.688 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1197. 10:51:28.688 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1198. 10:51:28.689 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1199. 10:51:28.689 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1200. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1201. NOT STARTED.
  1202. Currently in standby mode.
  1203. Number of jobs executed: 0
  1204. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1205. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1206. 10:51:28.689 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1207. 10:51:28.689 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1208. 10:51:28.690 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@ce678f8
  1209. 10:51:30.323 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1210. 10:51:30.328 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1211. 10:51:30.456 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1212. 10:51:30.481 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1213. 10:51:30.482 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1214. 10:51:30.482 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1215. 10:51:30.500 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1216. 10:51:30.508 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1217. 10:51:30.516 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1218. 10:51:30.543 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1219. 10:51:30.596 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1220. 10:51:30.597 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1221. 10:51:30.598 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1222. 10:51:30.622 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.38 seconds (process running for 7.966)
  1223. 10:51:30.624 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1224. 10:51:30.631 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1225. 10:51:30.934 [restartedMain] INFO p6spy - 2023-08-24 10:51:30 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  1226. 10:51:30.938 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@29f4aa81
  1227. 10:51:30.947 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1228. 10:51:31.010 [restartedMain] INFO p6spy - 2023-08-24 10:51:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1229. A.job_id,
  1230. A.job_title,
  1231. A.job_desc,
  1232. A.status,
  1233. A.job_type,
  1234. A.job_code,
  1235. A.job_cron,
  1236. A.job_class_id,
  1237. B.job_class,
  1238. A.cycle_title,
  1239. A.cycle_period,
  1240. A.cycle_unit
  1241. FROM job AS A
  1242. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1243. WHERE A.deleted_flag = 0
  1244. AND A.status = 1
  1245. ORDER BY A.job_id ASC
  1246. 10:51:31.030 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1247. 10:51:31.031 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1248. 10:51:31.285 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:51:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1249. FROM goaf_sensor
  1250. WHERE goaf_sensor_ip = '192.168.3.12'
  1251. 10:51:31.724 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1252. 10:51:31.726 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1253. 10:51:31.730 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  1254. 10:51:31.739 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 10:51:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1255. 10:51:43.347 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1256. 10:51:43.357 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1257. client_id,
  1258. client_title,
  1259. client_app_id,
  1260. client_app_key,
  1261. client_app_secret,
  1262. client_desc,
  1263. status,
  1264. is_fixed
  1265. FROM client
  1266. WHERE deleted_flag = 0
  1267. AND client_app_id = '10001'
  1268. AND client_app_key = '82a8bf439373e305'
  1269. 10:51:43.375 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1270. A.client_id,
  1271. A.role_id,
  1272. A.permit_id,
  1273. A.permit_title,
  1274. A.permit_code,
  1275. A.permit_entry,
  1276. A.permit_desc,
  1277. A.permit_type,
  1278. A.parent_id,
  1279. A.root_id,
  1280. A.sort_no,
  1281. A.is_home
  1282. FROM s_role_permit AS A
  1283. WHERE 1 = 1
  1284. AND A.client_id = 2
  1285. AND A.role_id = 1
  1286. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1287. 10:51:43.530 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  1288. 10:51:43.538 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT count(*)
  1289. FROM msg AS M
  1290. WHERE M.oc_id = 1
  1291. AND (
  1292. EXISTS (
  1293. SELECT 1 FROM msg_to TT
  1294. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  1295. ) OR
  1296. EXISTS (
  1297. SELECT 1 FROM msg_cc CC
  1298. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  1299. )
  1300. )
  1301. 10:51:43.633 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  1302. 10:51:43.639 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:51:43 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  1303. A.job_id,
  1304. A.job_title,
  1305. A.job_desc,
  1306. A.status,
  1307. A.job_type,
  1308. A.job_code,
  1309. A.job_cron,
  1310. A.job_class_id,
  1311. B.job_class,
  1312. A.cycle_title,
  1313. A.cycle_period,
  1314. A.cycle_unit
  1315. FROM job AS A
  1316. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1317. WHERE A.deleted_flag = 0
  1318. ORDER BY A.job_id ASC
  1319. LIMIT 10
  1320. 10:51:52.585 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:51:52 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1321. 10:51:52.593 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:51:52 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1322. 10:51:52.596 [XNIO-1 task-2] INFO p6spy - 2023-08-24 10:51:52 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1323. job_class_id,
  1324. job_class_title,
  1325. job_class_desc,
  1326. job_class
  1327. FROM job_class
  1328. WHERE deleted_flag = 0
  1329. ORDER BY job_class_id ASC
  1330. 10:51:52.609 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:51:52 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT
  1331. A.job_id,
  1332. A.job_title,
  1333. A.job_desc,
  1334. A.status,
  1335. A.job_type,
  1336. A.job_code,
  1337. A.job_cron,
  1338. A.job_class_id,
  1339. B.job_class,
  1340. A.cycle_title,
  1341. A.cycle_period,
  1342. A.cycle_unit
  1343. FROM job AS A
  1344. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1345. WHERE A.job_id = 439094
  1346. 10:52:00.131 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:52:00 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  1347. 10:52:00.185 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:52:00 | Time Consuming: 45 ms | Connection: statement-1 | SQL: UPDATE job
  1348. SET job_title = '巡检天任务',
  1349. job_desc = '天任务',
  1350. status = 1,
  1351. job_type = 1,
  1352. job_code = 'Cron任务',
  1353. job_cron = '0 53 10 * * ?',
  1354. job_class_id = 2,
  1355. cycle_title = '天',
  1356. cycle_period = 0,
  1357. cycle_unit = 0,
  1358. updated_by = 1,
  1359. updated_at = '2023-08-24T10:52:00.135910400'
  1360. WHERE job_id = 439094
  1361. 10:52:00.231 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:52:00 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  1362. 10:52:00.239 [XNIO-1 task-3] INFO p6spy - 2023-08-24 10:52:00 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  1363. A.job_id,
  1364. A.job_title,
  1365. A.job_desc,
  1366. A.status,
  1367. A.job_type,
  1368. A.job_code,
  1369. A.job_cron,
  1370. A.job_class_id,
  1371. B.job_class,
  1372. A.cycle_title,
  1373. A.cycle_period,
  1374. A.cycle_unit
  1375. FROM job AS A
  1376. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1377. WHERE A.deleted_flag = 0
  1378. ORDER BY A.job_id ASC
  1379. LIMIT 10
  1380. 10:52:05.598 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1381. 10:52:05.599 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1382. 10:52:05.602 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1383. 10:52:05.603 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1384. 10:52:05.604 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1385. 10:52:05.604 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1386. 10:52:05.610 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1387. 10:52:05.612 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1388. 10:52:05.612 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1389. 10:52:05.612 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1390. 10:52:05.612 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1391. 10:52:05.632 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1392. 10:52:05.646 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1393. 10:52:09.276 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1394. 10:52:09.328 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16044 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1395. 10:52:09.329 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1396. 10:52:09.383 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1397. 10:52:09.383 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1398. 10:52:11.162 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1399. 10:52:11.165 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1400. 10:52:11.254 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  1401. 10:52:11.421 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1402. 10:52:11.437 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1403. 10:52:12.167 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1404. 10:52:12.167 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2783 ms
  1405. 10:52:14.568 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1406. 10:52:14.578 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1407. 10:52:14.578 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1408. 10:52:14.579 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1409. 10:52:14.579 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1410. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1411. NOT STARTED.
  1412. Currently in standby mode.
  1413. Number of jobs executed: 0
  1414. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1415. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1416. 10:52:14.580 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1417. 10:52:14.580 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1418. 10:52:14.580 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@110efbbf
  1419. 10:52:16.284 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1420. 10:52:16.290 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1421. 10:52:16.432 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1422. 10:52:16.462 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1423. 10:52:16.462 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1424. 10:52:16.463 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1425. 10:52:16.482 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1426. 10:52:16.490 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1427. 10:52:16.500 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1428. 10:52:16.533 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1429. 10:52:16.583 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1430. 10:52:16.584 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1431. 10:52:16.585 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1432. 10:52:16.609 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.847 seconds (process running for 8.775)
  1433. 10:52:16.612 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1434. 10:52:16.619 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1435. 10:52:16.940 [restartedMain] INFO p6spy - 2023-08-24 10:52:16 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  1436. 10:52:16.949 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6465d552
  1437. 10:52:16.960 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1438. 10:52:17.027 [restartedMain] INFO p6spy - 2023-08-24 10:52:17 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1439. A.job_id,
  1440. A.job_title,
  1441. A.job_desc,
  1442. A.status,
  1443. A.job_type,
  1444. A.job_code,
  1445. A.job_cron,
  1446. A.job_class_id,
  1447. B.job_class,
  1448. A.cycle_title,
  1449. A.cycle_period,
  1450. A.cycle_unit
  1451. FROM job AS A
  1452. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1453. WHERE A.deleted_flag = 0
  1454. AND A.status = 1
  1455. ORDER BY A.job_id ASC
  1456. 10:52:17.049 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1457. 10:52:17.051 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1458. 10:52:17.268 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:52:17 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1459. FROM goaf_sensor
  1460. WHERE goaf_sensor_ip = '192.168.3.12'
  1461. 10:52:17.703 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 10:52:17 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  1462. 10:52:17.711 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1463. 10:52:17.711 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1464. 10:52:17.717 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  1465. 10:53:00.009 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  1466. 10:53:00.016 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 10:53:00 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  1467. 10:53:00.035 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  1468. 10:54:52.125 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:54:52 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  1469. 10:54:52.130 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 10:54:52 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1470. FROM goaf_sensor
  1471. WHERE goaf_sensor_ip = '192.168.3.12'
  1472. 10:54:52.142 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1473. 10:54:52.143 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1474. 10:54:52.153 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1475. 10:54:52.156 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1476. 10:54:52.156 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1477. 10:54:52.156 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1478. 10:54:52.300 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1479. 10:54:52.301 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1480. 10:54:52.302 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1481. 10:54:52.302 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1482. 10:54:52.302 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1483. 10:54:52.314 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1484. 10:54:52.318 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1485. 10:59:14.132 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1486. 10:59:14.180 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19108 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1487. 10:59:14.180 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1488. 10:59:14.233 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1489. 10:59:14.233 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1490. 10:59:16.095 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1491. 10:59:16.100 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1492. 10:59:16.191 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  1493. 10:59:16.362 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1494. 10:59:16.378 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1495. 10:59:17.120 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1496. 10:59:17.120 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2886 ms
  1497. 10:59:19.476 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1498. 10:59:19.486 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1499. 10:59:19.487 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1500. 10:59:19.487 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1501. 10:59:19.488 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1502. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1503. NOT STARTED.
  1504. Currently in standby mode.
  1505. Number of jobs executed: 0
  1506. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1507. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1508. 10:59:19.488 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1509. 10:59:19.488 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1510. 10:59:19.488 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1b7332a4
  1511. 10:59:21.164 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1512. 10:59:21.170 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1513. 10:59:21.308 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1514. 10:59:21.338 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1515. 10:59:21.339 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1516. 10:59:21.339 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1517. 10:59:21.359 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1518. 10:59:21.368 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1519. 10:59:21.379 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1520. 10:59:21.409 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1521. 10:59:21.461 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1522. 10:59:21.462 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1523. 10:59:21.463 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1524. 10:59:21.488 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.831 seconds (process running for 8.677)
  1525. 10:59:21.491 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1526. 10:59:21.497 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1527. 10:59:21.820 [restartedMain] INFO p6spy - 2023-08-24 10:59:21 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1528. 10:59:21.824 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@7bbcc998
  1529. 10:59:21.827 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1530. 10:59:21.892 [restartedMain] INFO p6spy - 2023-08-24 10:59:21 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1531. A.job_id,
  1532. A.job_title,
  1533. A.job_desc,
  1534. A.status,
  1535. A.job_type,
  1536. A.job_code,
  1537. A.job_cron,
  1538. A.job_class_id,
  1539. B.job_class,
  1540. A.cycle_title,
  1541. A.cycle_period,
  1542. A.cycle_unit
  1543. FROM job AS A
  1544. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1545. WHERE A.deleted_flag = 0
  1546. AND A.status = 1
  1547. ORDER BY A.job_id ASC
  1548. 10:59:21.913 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1549. 10:59:21.914 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1550. 10:59:22.135 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 10:59:22 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1551. FROM goaf_sensor
  1552. WHERE goaf_sensor_ip = '192.168.3.12'
  1553. 10:59:22.589 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1554. 10:59:22.590 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1555. 10:59:22.596 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  1556. 10:59:22.599 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 10:59:22 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1557. 11:00:37.592 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:00:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1558. 11:00:37.598 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:00:37 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1559. FROM goaf_sensor
  1560. WHERE goaf_sensor_ip = '192.168.3.12'
  1561. 11:01:53.059 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:01:53 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1562. 11:01:53.064 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:01:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1563. FROM goaf_sensor
  1564. WHERE goaf_sensor_ip = '192.168.3.12'
  1565. 11:02:30.091 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1566. 11:02:30.092 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1567. 11:02:30.100 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1568. 11:02:30.102 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1569. 11:02:30.102 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1570. 11:02:30.103 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1571. 11:02:30.109 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1572. 11:02:30.110 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1573. 11:02:30.110 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1574. 11:02:30.110 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1575. 11:02:30.110 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1576. 11:02:30.123 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1577. 11:02:30.127 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1578. 11:02:33.317 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1579. 11:02:33.365 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10808 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1580. 11:02:33.365 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1581. 11:02:33.418 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1582. 11:02:33.418 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1583. 11:02:35.190 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1584. 11:02:35.193 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1585. 11:02:35.287 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  1586. 11:02:35.449 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1587. 11:02:35.464 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1588. 11:02:36.195 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1589. 11:02:36.196 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2777 ms
  1590. 11:02:38.541 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1591. 11:02:38.550 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1592. 11:02:38.550 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1593. 11:02:38.551 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1594. 11:02:38.552 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1595. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1596. NOT STARTED.
  1597. Currently in standby mode.
  1598. Number of jobs executed: 0
  1599. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1600. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1601. 11:02:38.552 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1602. 11:02:38.552 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1603. 11:02:38.552 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2fd5dce5
  1604. 11:02:40.235 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1605. 11:02:40.241 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1606. 11:02:40.384 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1607. 11:02:40.414 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1608. 11:02:40.415 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1609. 11:02:40.415 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1610. 11:02:40.435 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1611. 11:02:40.444 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1612. 11:02:40.454 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1613. 11:02:40.483 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1614. 11:02:40.535 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1615. 11:02:40.536 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1616. 11:02:40.537 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1617. 11:02:40.561 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.722 seconds (process running for 8.555)
  1618. 11:02:40.563 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1619. 11:02:40.570 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1620. 11:02:40.898 [restartedMain] INFO p6spy - 2023-08-24 11:02:40 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1621. 11:02:40.902 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@19639a39
  1622. 11:02:40.912 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1623. 11:02:40.978 [restartedMain] INFO p6spy - 2023-08-24 11:02:40 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1624. A.job_id,
  1625. A.job_title,
  1626. A.job_desc,
  1627. A.status,
  1628. A.job_type,
  1629. A.job_code,
  1630. A.job_cron,
  1631. A.job_class_id,
  1632. B.job_class,
  1633. A.cycle_title,
  1634. A.cycle_period,
  1635. A.cycle_unit
  1636. FROM job AS A
  1637. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1638. WHERE A.deleted_flag = 0
  1639. AND A.status = 1
  1640. ORDER BY A.job_id ASC
  1641. 11:02:40.999 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1642. 11:02:41.000 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1643. 11:02:41.209 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:02:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1644. FROM goaf_sensor
  1645. WHERE goaf_sensor_ip = '192.168.3.12'
  1646. 11:02:41.440 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1647. 11:02:41.441 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1648. 11:02:41.470 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 27 ms
  1649. 11:02:41.476 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-24 11:02:41 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1650. 11:03:19.413 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1651. 11:03:19.414 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1652. 11:03:19.422 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1653. 11:03:19.425 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1654. 11:03:19.425 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1655. 11:03:19.426 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1656. 11:03:19.435 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1657. 11:03:19.436 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1658. 11:03:19.436 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1659. 11:03:19.436 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1660. 11:03:19.436 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1661. 11:03:19.459 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1662. 11:03:19.465 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1663. 11:03:22.686 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1664. 11:03:22.734 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16396 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1665. 11:03:22.735 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1666. 11:03:22.788 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1667. 11:03:22.788 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1668. 11:03:24.549 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1669. 11:03:24.552 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1670. 11:03:24.642 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  1671. 11:03:24.810 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1672. 11:03:24.826 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1673. 11:03:25.569 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1674. 11:03:25.569 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2781 ms
  1675. 11:03:27.951 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1676. 11:03:27.961 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1677. 11:03:27.961 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1678. 11:03:27.962 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1679. 11:03:27.962 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1680. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1681. NOT STARTED.
  1682. Currently in standby mode.
  1683. Number of jobs executed: 0
  1684. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1685. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1686. 11:03:27.962 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1687. 11:03:27.962 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1688. 11:03:27.962 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6ced931c
  1689. 11:03:29.643 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1690. 11:03:29.648 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1691. 11:03:29.790 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1692. 11:03:29.820 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1693. 11:03:29.820 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1694. 11:03:29.821 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1695. 11:03:29.841 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1696. 11:03:29.850 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1697. 11:03:29.859 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1698. 11:03:29.888 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1699. 11:03:29.940 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1700. 11:03:29.941 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1701. 11:03:29.942 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1702. 11:03:29.966 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.754 seconds (process running for 8.582)
  1703. 11:03:29.969 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1704. 11:03:29.976 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1705. 11:03:30.293 [restartedMain] INFO p6spy - 2023-08-24 11:03:30 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1706. 11:03:30.297 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@b0c4902
  1707. 11:03:30.300 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1708. 11:03:30.367 [restartedMain] INFO p6spy - 2023-08-24 11:03:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1709. A.job_id,
  1710. A.job_title,
  1711. A.job_desc,
  1712. A.status,
  1713. A.job_type,
  1714. A.job_code,
  1715. A.job_cron,
  1716. A.job_class_id,
  1717. B.job_class,
  1718. A.cycle_title,
  1719. A.cycle_period,
  1720. A.cycle_unit
  1721. FROM job AS A
  1722. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1723. WHERE A.deleted_flag = 0
  1724. AND A.status = 1
  1725. ORDER BY A.job_id ASC
  1726. 11:03:30.389 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1727. 11:03:30.391 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1728. 11:03:30.668 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:03:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1729. FROM goaf_sensor
  1730. WHERE goaf_sensor_ip = '192.168.3.12'
  1731. 11:03:30.807 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1732. 11:03:30.807 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1733. 11:03:30.812 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  1734. 11:03:30.847 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 11:03:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1735. 11:03:51.245 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1736. 11:03:51.247 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1737. 11:03:51.253 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1738. 11:03:51.256 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1739. 11:03:51.256 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1740. 11:03:51.256 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1741. 11:03:51.264 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1742. 11:03:51.265 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1743. 11:03:51.266 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1744. 11:03:51.266 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1745. 11:03:51.266 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1746. 11:03:51.307 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1747. 11:03:51.310 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1748. 11:03:54.451 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1749. 11:03:54.502 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 9860 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1750. 11:03:54.503 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1751. 11:03:54.556 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1752. 11:03:54.556 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1753. 11:03:56.344 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1754. 11:03:56.347 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1755. 11:03:56.443 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  1756. 11:03:56.609 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1757. 11:03:56.625 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1758. 11:03:57.368 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1759. 11:03:57.368 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2812 ms
  1760. 11:03:59.720 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1761. 11:03:59.730 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1762. 11:03:59.730 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1763. 11:03:59.731 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1764. 11:03:59.731 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1765. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1766. NOT STARTED.
  1767. Currently in standby mode.
  1768. Number of jobs executed: 0
  1769. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1770. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1771. 11:03:59.731 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1772. 11:03:59.732 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1773. 11:03:59.732 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2dcaea4a
  1774. 11:04:01.399 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1775. 11:04:01.405 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1776. 11:04:01.546 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1777. 11:04:01.576 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1778. 11:04:01.576 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1779. 11:04:01.576 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1780. 11:04:01.595 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1781. 11:04:01.604 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1782. 11:04:01.614 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1783. 11:04:01.644 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1784. 11:04:01.694 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1785. 11:04:01.695 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1786. 11:04:01.696 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1787. 11:04:01.720 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.823 seconds (process running for 8.564)
  1788. 11:04:01.722 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1789. 11:04:01.729 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1790. 11:04:02.050 [restartedMain] INFO p6spy - 2023-08-24 11:04:02 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1791. 11:04:02.055 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3df31e69
  1792. 11:04:02.065 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1793. 11:04:02.128 [restartedMain] INFO p6spy - 2023-08-24 11:04:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1794. A.job_id,
  1795. A.job_title,
  1796. A.job_desc,
  1797. A.status,
  1798. A.job_type,
  1799. A.job_code,
  1800. A.job_cron,
  1801. A.job_class_id,
  1802. B.job_class,
  1803. A.cycle_title,
  1804. A.cycle_period,
  1805. A.cycle_unit
  1806. FROM job AS A
  1807. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1808. WHERE A.deleted_flag = 0
  1809. AND A.status = 1
  1810. ORDER BY A.job_id ASC
  1811. 11:04:02.148 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1812. 11:04:02.150 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1813. 11:04:02.415 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:04:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1814. FROM goaf_sensor
  1815. WHERE goaf_sensor_ip = '192.168.3.12'
  1816. 11:05:59.244 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:05:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1817. 11:05:59.250 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:05:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1818. FROM goaf_sensor
  1819. WHERE goaf_sensor_ip = '192.168.3.12'
  1820. 11:06:13.749 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1821. 11:06:13.750 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1822. 11:06:13.752 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:06:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1823. 11:06:13.753 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1824. 11:06:13.770 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:06:13 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  1825. 11:07:03.779 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  1826. 11:07:03.819 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 30 ms | Connection: statement-0 | SQL: SELECT
  1827. client_id,
  1828. client_title,
  1829. client_app_id,
  1830. client_app_key,
  1831. client_app_secret,
  1832. client_desc,
  1833. status,
  1834. is_fixed
  1835. FROM client
  1836. WHERE deleted_flag = 0
  1837. AND client_app_id = '10001'
  1838. AND client_app_key = '82a8bf439373e305'
  1839. 11:07:03.909 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 38 ms | Connection: statement-0 | SQL: SELECT
  1840. A.oc_id,
  1841. B.oc_type_id,
  1842. B.oc_name,
  1843. A.account_id,
  1844. A.account_name,
  1845. A.account_real_name,
  1846. A.password,
  1847. A.account_type,
  1848. A.account_staff_no,
  1849. A.account_phone,
  1850. A.account_last_ip,
  1851. A.account_loc,
  1852. A.status,
  1853. A.account_avatar,
  1854. A.account_photo,
  1855. A.account_real_name,
  1856. A.account_intro,
  1857. A.wx_id,
  1858. A.is_fixed
  1859. FROM account AS A
  1860. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1861. WHERE A.deleted_flag = 0
  1862. AND (A.account_name = 'sxky'
  1863. OR A.account_phone = 'sxky'
  1864. OR A.account_mail = 'sxky'
  1865. OR A.account_staff_no = 'sxky')
  1866. 11:07:03.923 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT
  1867. A.oc_id,
  1868. A.oc_name,
  1869. A.oc_type_id,
  1870. A.root_id,
  1871. A.parent_id,
  1872. A.admin_id,
  1873. B.account_name AS admin_name,
  1874. A.group_id,
  1875. A.node_left,
  1876. A.node_right,
  1877. A.node_level,
  1878. A.is_leaf,
  1879. A.status,
  1880. A.if_lic
  1881. FROM oc AS A
  1882. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  1883. WHERE A.oc_id = 406283
  1884. 11:07:03.938 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT
  1885. A.rm_id,
  1886. A.role_id,
  1887. B.role_type_id,
  1888. B.role_code,
  1889. B.role_name,
  1890. A.account_id
  1891. FROM s_role_member AS A
  1892. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  1893. WHERE account_id = 406283
  1894. LIMIT 1
  1895. 11:07:03.974 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 35 ms | Connection: statement-0 | SQL: SELECT
  1896. A.gm_id,
  1897. A.oc_id,
  1898. A.group_id,
  1899. B.group_name,
  1900. B.node_left ,
  1901. B.node_right,
  1902. A.account_id
  1903. FROM s_group_member AS A
  1904. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1905. WHERE B.deleted_flag = 0
  1906. AND A.oc_id = 406283
  1907. AND A.account_id = 406283
  1908. LIMIT 1
  1909. 11:07:03.986 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  1910. A.gmp_id,
  1911. A.oc_id,
  1912. A.group_id,
  1913. B.group_name,
  1914. A.account_id,
  1915. D.account_name,
  1916. D.account_real_name,
  1917. A.position_id,
  1918. C.position_name
  1919. FROM s_group_member_position A
  1920. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1921. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  1922. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  1923. WHERE A.deleted_flag = 0
  1924. AND A.oc_id = 406283
  1925. AND A.group_id = 406283
  1926. AND A.account_id = 406283
  1927. LIMIT 1
  1928. 11:07:03.993 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:07:03 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1929. A.gmpg_id,
  1930. A.oc_id,
  1931. A.group_id,
  1932. A.account_id,
  1933. A.position_id,
  1934. A.grant_group_id,
  1935. B.group_name AS grant_group_name
  1936. FROM s_group_member_position_grant A
  1937. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  1938. WHERE A.deleted_flag = 0
  1939. AND A.oc_id = 406283
  1940. AND A.group_id = 406283
  1941. AND A.account_id = 406283
  1942. AND A.position_id = 406283
  1943. LIMIT 1
  1944. 11:07:04.415 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1945. client_id,
  1946. client_title,
  1947. client_app_id,
  1948. client_app_key,
  1949. client_app_secret,
  1950. client_desc,
  1951. status,
  1952. is_fixed
  1953. FROM client
  1954. WHERE deleted_flag = 0
  1955. AND client_app_id = '10001'
  1956. AND client_app_key = '82a8bf439373e305'
  1957. 11:07:04.434 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:04 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1958. A.client_id,
  1959. A.role_id,
  1960. A.permit_id,
  1961. A.permit_title,
  1962. A.permit_code,
  1963. A.permit_entry,
  1964. A.permit_desc,
  1965. A.permit_type,
  1966. A.parent_id,
  1967. A.root_id,
  1968. A.sort_no,
  1969. A.is_home
  1970. FROM s_role_permit AS A
  1971. WHERE 1 = 1
  1972. AND A.client_id = 2
  1973. AND A.role_id = 6
  1974. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1975. 11:07:04.898 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:04 | Time Consuming: 28 ms | Connection: statement-0 | SQL: SELECT count(*)
  1976. FROM msg AS M
  1977. WHERE M.oc_id = 406283
  1978. AND (
  1979. EXISTS (
  1980. SELECT 1 FROM msg_to TT
  1981. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1982. ) OR
  1983. EXISTS (
  1984. SELECT 1 FROM msg_cc CC
  1985. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1986. )
  1987. )
  1988. 11:07:05.442 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1989. 11:07:05.446 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1990. 11:07:05.451 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1991. FROM goaf_sensor
  1992. where oc_id = 406283
  1993. LIMIT 10
  1994. 11:07:17.826 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1995. 11:07:17.830 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1996. 11:07:17.835 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1997. FROM goaf_sensor
  1998. where oc_id = 406283
  1999. LIMIT 10
  2000. 11:07:21.244 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:21 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2001. 11:07:21.255 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:21 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  2002. FROM goaf_sensordata
  2003. WHERE oc_id = 406283
  2004. ORDER BY goaf_datareport_time DESC
  2005. LIMIT 1
  2006. 11:07:24.216 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:24 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2007. 11:07:24.221 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2008. 11:07:24.226 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2009. FROM goaf_sensor
  2010. where oc_id = 406283
  2011. LIMIT 10
  2012. 11:07:29.143 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:07:29 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2013. 11:07:29.148 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:07:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2014. FROM goaf_sensor
  2015. WHERE goaf_sensor_ip = '192.168.3.12'
  2016. 11:07:50.402 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2017. 11:07:50.410 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:50 | Time Consuming: 2 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  2018. 11:07:50.412 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2019. 11:07:50.414 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2020. 11:07:50.416 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2021. 11:07:50.417 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2022. 11:07:50.417 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2023. 11:07:50.417 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2024. 11:07:50.429 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:07:50 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT *
  2025. FROM goaf_sensordata
  2026. WHERE oc_id = 406283
  2027. ORDER BY goaf_datareport_time DESC
  2028. LIMIT 10
  2029. 11:07:50.538 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2030. 11:07:50.539 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2031. 11:07:50.539 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2032. 11:07:50.539 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2033. 11:07:50.539 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2034. 11:07:50.551 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2035. 11:07:50.555 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2036. 11:09:50.461 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2037. 11:09:50.526 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15168 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2038. 11:09:50.527 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2039. 11:09:50.612 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2040. 11:09:50.612 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2041. 11:09:52.306 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2042. 11:09:52.309 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2043. 11:09:52.396 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  2044. 11:09:52.544 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2045. 11:09:52.561 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2046. 11:09:53.257 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2047. 11:09:53.257 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2644 ms
  2048. 11:09:56.066 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2049. 11:09:56.075 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2050. 11:09:56.076 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2051. 11:09:56.077 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2052. 11:09:56.077 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2053. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2054. NOT STARTED.
  2055. Currently in standby mode.
  2056. Number of jobs executed: 0
  2057. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2058. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2059. 11:09:56.078 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2060. 11:09:56.078 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2061. 11:09:56.078 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7e1881ba
  2062. 11:09:57.772 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2063. 11:09:57.777 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2064. 11:09:57.917 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2065. 11:09:57.943 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2066. 11:09:57.944 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2067. 11:09:57.944 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2068. 11:09:57.965 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2069. 11:09:57.973 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2070. 11:09:57.983 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2071. 11:09:58.012 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2072. 11:09:58.064 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2073. 11:09:58.066 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2074. 11:09:58.066 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2075. 11:09:58.090 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.18 seconds (process running for 9.058)
  2076. 11:09:58.092 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2077. 11:09:58.099 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2078. 11:09:58.679 [restartedMain] INFO p6spy - 2023-08-24 11:09:58 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2079. 11:09:58.684 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@14c6ae22
  2080. 11:09:58.693 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2081. 11:09:58.757 [restartedMain] INFO p6spy - 2023-08-24 11:09:58 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  2082. A.job_id,
  2083. A.job_title,
  2084. A.job_desc,
  2085. A.status,
  2086. A.job_type,
  2087. A.job_code,
  2088. A.job_cron,
  2089. A.job_class_id,
  2090. B.job_class,
  2091. A.cycle_title,
  2092. A.cycle_period,
  2093. A.cycle_unit
  2094. FROM job AS A
  2095. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2096. WHERE A.deleted_flag = 0
  2097. AND A.status = 1
  2098. ORDER BY A.job_id ASC
  2099. 11:09:58.777 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2100. 11:09:58.778 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2101. 11:09:58.973 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:09:58 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  2102. FROM goaf_sensor
  2103. WHERE goaf_sensor_ip = '192.168.3.12'
  2104. 11:09:59.370 [RMI TCP Connection(14)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2105. 11:09:59.371 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2106. 11:09:59.375 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  2107. 11:09:59.383 [RMI TCP Connection(15)-192.168.3.5] INFO p6spy - 2023-08-24 11:09:59 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  2108. 11:10:01.735 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2109. 11:10:01.746 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:01 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2110. A.job_id,
  2111. A.job_title,
  2112. A.job_desc,
  2113. A.status,
  2114. A.job_type,
  2115. A.job_code,
  2116. A.job_cron,
  2117. A.job_class_id,
  2118. B.job_class,
  2119. A.cycle_title,
  2120. A.cycle_period,
  2121. A.cycle_unit
  2122. FROM job AS A
  2123. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2124. WHERE A.job_id = 439094
  2125. 11:10:09.411 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:09 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2126. 11:10:09.428 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:09 | Time Consuming: 10 ms | Connection: statement-0 | SQL: UPDATE job
  2127. SET job_title = '巡检天任务',
  2128. job_desc = '天任务',
  2129. status = 1,
  2130. job_type = 1,
  2131. job_code = 'Cron任务',
  2132. job_cron = '0 10 110 * * ?',
  2133. job_class_id = 2,
  2134. cycle_title = '天',
  2135. cycle_period = 0,
  2136. cycle_unit = 0,
  2137. updated_by = 1,
  2138. updated_at = '2023-08-24T11:10:09.414976500'
  2139. WHERE job_id = 439094
  2140. 11:10:09.532 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:09 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  2141. 11:10:09.539 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:09 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2142. A.job_id,
  2143. A.job_title,
  2144. A.job_desc,
  2145. A.status,
  2146. A.job_type,
  2147. A.job_code,
  2148. A.job_cron,
  2149. A.job_class_id,
  2150. B.job_class,
  2151. A.cycle_title,
  2152. A.cycle_period,
  2153. A.cycle_unit
  2154. FROM job AS A
  2155. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2156. WHERE A.deleted_flag = 0
  2157. ORDER BY A.job_id ASC
  2158. LIMIT 10
  2159. 11:10:14.558 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:14 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2160. 11:10:14.567 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2161. A.job_id,
  2162. A.job_title,
  2163. A.job_desc,
  2164. A.status,
  2165. A.job_type,
  2166. A.job_code,
  2167. A.job_cron,
  2168. A.job_class_id,
  2169. B.job_class,
  2170. A.cycle_title,
  2171. A.cycle_period,
  2172. A.cycle_unit
  2173. FROM job AS A
  2174. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2175. WHERE A.job_id = 439094
  2176. 11:10:18.466 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:18 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2177. 11:10:18.479 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:18 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  2178. A.job_id,
  2179. A.job_title,
  2180. A.job_desc,
  2181. A.status,
  2182. A.job_type,
  2183. A.job_code,
  2184. A.job_cron,
  2185. A.job_class_id,
  2186. B.job_class,
  2187. A.cycle_title,
  2188. A.cycle_period,
  2189. A.cycle_unit
  2190. FROM job AS A
  2191. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2192. WHERE A.job_id = 439094
  2193. 11:10:24.491 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2194. 11:10:24.506 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:24 | Time Consuming: 8 ms | Connection: statement-0 | SQL: UPDATE job
  2195. SET job_title = '巡检天任务',
  2196. job_desc = '天任务',
  2197. status = 1,
  2198. job_type = 1,
  2199. job_code = 'Cron任务',
  2200. job_cron = '0 11 110 * * ?',
  2201. job_class_id = 2,
  2202. cycle_title = '天',
  2203. cycle_period = 0,
  2204. cycle_unit = 0,
  2205. updated_by = 1,
  2206. updated_at = '2023-08-24T11:10:24.496728'
  2207. WHERE job_id = 439094
  2208. 11:10:24.552 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  2209. 11:10:24.558 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:10:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2210. A.job_id,
  2211. A.job_title,
  2212. A.job_desc,
  2213. A.status,
  2214. A.job_type,
  2215. A.job_code,
  2216. A.job_cron,
  2217. A.job_class_id,
  2218. B.job_class,
  2219. A.cycle_title,
  2220. A.cycle_period,
  2221. A.cycle_unit
  2222. FROM job AS A
  2223. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2224. WHERE A.deleted_flag = 0
  2225. ORDER BY A.job_id ASC
  2226. LIMIT 10
  2227. 11:10:29.420 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2228. 11:10:29.421 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2229. 11:10:29.423 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2230. 11:10:29.425 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2231. 11:10:29.425 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2232. 11:10:29.425 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2233. 11:10:29.548 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2234. 11:10:29.550 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2235. 11:10:29.550 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2236. 11:10:29.550 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2237. 11:10:29.550 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2238. 11:10:29.567 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2239. 11:10:29.571 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2240. 11:10:33.225 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2241. 11:10:33.285 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4716 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2242. 11:10:33.286 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2243. 11:10:33.350 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2244. 11:10:33.350 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2245. 11:10:35.306 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2246. 11:10:35.309 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2247. 11:10:35.418 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 87 ms. Found 0 Redis repository interfaces.
  2248. 11:10:35.604 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2249. 11:10:35.620 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2250. 11:10:36.438 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2251. 11:10:36.438 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3087 ms
  2252. 11:10:39.133 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2253. 11:10:39.145 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2254. 11:10:39.145 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2255. 11:10:39.146 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2256. 11:10:39.146 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2257. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2258. NOT STARTED.
  2259. Currently in standby mode.
  2260. Number of jobs executed: 0
  2261. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2262. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2263. 11:10:39.146 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2264. 11:10:39.147 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2265. 11:10:39.147 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@eef2823
  2266. 11:10:41.158 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2267. 11:10:41.166 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2268. 11:10:41.331 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2269. 11:10:41.369 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2270. 11:10:41.369 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2271. 11:10:41.369 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2272. 11:10:41.398 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2273. 11:10:41.407 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2274. 11:10:41.420 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2275. 11:10:41.462 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2276. 11:10:41.516 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2277. 11:10:41.517 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2278. 11:10:41.517 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2279. 11:10:41.543 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.092 seconds (process running for 9.998)
  2280. 11:10:41.545 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2281. 11:10:41.552 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2282. 11:10:41.953 [restartedMain] INFO p6spy - 2023-08-24 11:10:41 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2283. 11:10:41.959 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@135b444d
  2284. 11:10:41.969 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2285. 11:10:42.037 [restartedMain] INFO p6spy - 2023-08-24 11:10:42 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2286. A.job_id,
  2287. A.job_title,
  2288. A.job_desc,
  2289. A.status,
  2290. A.job_type,
  2291. A.job_code,
  2292. A.job_cron,
  2293. A.job_class_id,
  2294. B.job_class,
  2295. A.cycle_title,
  2296. A.cycle_period,
  2297. A.cycle_unit
  2298. FROM job AS A
  2299. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2300. WHERE A.deleted_flag = 0
  2301. AND A.status = 1
  2302. ORDER BY A.job_id ASC
  2303. 11:10:42.070 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLogger -
  2304. Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
  2305. 11:10:42.106 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2306. 11:10:42.107 [restartedMain] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2307. 11:10:42.115 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2308. 11:10:42.115 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2309. 11:10:42.115 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2310. 11:10:42.121 [restartedMain] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2311. 11:10:42.122 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2312. 11:10:42.122 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2313. 11:10:42.122 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2314. 11:10:42.123 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2315. 11:10:42.134 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2316. 11:10:42.137 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2317. 11:11:21.159 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2318. 11:11:21.207 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 1768 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2319. 11:11:21.208 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2320. 11:11:21.261 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2321. 11:11:21.261 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2322. 11:11:23.011 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2323. 11:11:23.014 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2324. 11:11:23.105 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  2325. 11:11:23.277 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2326. 11:11:23.293 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2327. 11:11:24.026 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2328. 11:11:24.026 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2764 ms
  2329. 11:11:26.357 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2330. 11:11:26.366 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2331. 11:11:26.367 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2332. 11:11:26.367 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2333. 11:11:26.368 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2334. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2335. NOT STARTED.
  2336. Currently in standby mode.
  2337. Number of jobs executed: 0
  2338. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2339. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2340. 11:11:26.368 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2341. 11:11:26.368 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2342. 11:11:26.368 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@359ffd5f
  2343. 11:11:28.026 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2344. 11:11:28.032 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2345. 11:11:28.174 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2346. 11:11:28.202 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2347. 11:11:28.202 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2348. 11:11:28.203 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2349. 11:11:28.222 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2350. 11:11:28.231 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2351. 11:11:28.241 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2352. 11:11:28.271 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2353. 11:11:28.322 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2354. 11:11:28.324 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2355. 11:11:28.324 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2356. 11:11:28.349 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.686 seconds (process running for 8.476)
  2357. 11:11:28.351 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2358. 11:11:28.358 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2359. 11:11:28.693 [restartedMain] INFO p6spy - 2023-08-24 11:11:28 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  2360. 11:11:28.697 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3f0b67d
  2361. 11:11:28.700 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2362. 11:11:28.768 [restartedMain] INFO p6spy - 2023-08-24 11:11:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2363. A.job_id,
  2364. A.job_title,
  2365. A.job_desc,
  2366. A.status,
  2367. A.job_type,
  2368. A.job_code,
  2369. A.job_cron,
  2370. A.job_class_id,
  2371. B.job_class,
  2372. A.cycle_title,
  2373. A.cycle_period,
  2374. A.cycle_unit
  2375. FROM job AS A
  2376. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2377. WHERE A.deleted_flag = 0
  2378. AND A.status = 1
  2379. ORDER BY A.job_id ASC
  2380. 11:11:28.798 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLogger -
  2381. Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
  2382. 11:11:28.830 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2383. 11:11:28.831 [restartedMain] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2384. 11:11:28.839 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2385. 11:11:28.839 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2386. 11:11:28.839 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2387. 11:11:28.844 [restartedMain] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2388. 11:11:28.846 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2389. 11:11:28.846 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2390. 11:11:28.846 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2391. 11:11:28.846 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2392. 11:11:28.857 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2393. 11:11:28.874 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2394. 11:13:04.938 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2395. 11:13:04.987 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19344 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2396. 11:13:04.987 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2397. 11:13:05.040 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2398. 11:13:05.040 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2399. 11:13:06.732 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2400. 11:13:06.735 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2401. 11:13:06.824 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  2402. 11:13:06.980 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2403. 11:13:06.996 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2404. 11:13:07.690 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2405. 11:13:07.691 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2649 ms
  2406. 11:13:09.915 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2407. 11:13:09.925 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2408. 11:13:09.925 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2409. 11:13:09.925 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2410. 11:13:09.926 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2411. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2412. NOT STARTED.
  2413. Currently in standby mode.
  2414. Number of jobs executed: 0
  2415. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2416. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2417. 11:13:09.926 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2418. 11:13:09.926 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2419. 11:13:09.926 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@ce678f8
  2420. 11:13:11.448 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2421. 11:13:11.454 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2422. 11:13:11.607 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2423. 11:13:11.639 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2424. 11:13:11.640 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2425. 11:13:11.640 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2426. 11:13:11.660 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2427. 11:13:11.669 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2428. 11:13:11.679 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2429. 11:13:11.707 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2430. 11:13:11.756 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2431. 11:13:11.758 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2432. 11:13:11.758 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2433. 11:13:11.782 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.301 seconds (process running for 7.845)
  2434. 11:13:11.784 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2435. 11:13:12.018 [nioEventLoopGroup-5-1] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2436. 11:13:12.396 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:13:12 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT 1
  2437. 11:13:12.397 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2438. 11:13:12.397 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2439. 11:13:12.401 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  2440. 11:13:12.401 [nioEventLoopGroup-5-1] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3682c733
  2441. 11:13:12.412 [nioEventLoopGroup-5-1] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2442. 11:13:12.435 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:13:12 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  2443. FROM goaf_sensor
  2444. WHERE goaf_sensor_ip = '192.168.3.12'
  2445. 11:13:12.464 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:13:12 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2446. 11:13:16.441 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2447. 11:13:16.477 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2448. client_id,
  2449. client_title,
  2450. client_app_id,
  2451. client_app_key,
  2452. client_app_secret,
  2453. client_desc,
  2454. status,
  2455. is_fixed
  2456. FROM client
  2457. WHERE deleted_flag = 0
  2458. AND client_app_id = '10001'
  2459. AND client_app_key = '82a8bf439373e305'
  2460. 11:13:16.497 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2461. A.oc_id,
  2462. B.oc_type_id,
  2463. B.oc_name,
  2464. A.account_id,
  2465. A.account_name,
  2466. A.account_real_name,
  2467. A.password,
  2468. A.account_type,
  2469. A.account_staff_no,
  2470. A.account_phone,
  2471. A.account_last_ip,
  2472. A.account_loc,
  2473. A.status,
  2474. A.account_avatar,
  2475. A.account_photo,
  2476. A.account_real_name,
  2477. A.account_intro,
  2478. A.wx_id,
  2479. A.is_fixed
  2480. FROM account AS A
  2481. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2482. WHERE A.deleted_flag = 0
  2483. AND (A.account_name = 'system'
  2484. OR A.account_phone = 'system'
  2485. OR A.account_mail = 'system'
  2486. OR A.account_staff_no = 'system')
  2487. 11:13:16.504 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2488. A.oc_id,
  2489. A.oc_name,
  2490. A.oc_type_id,
  2491. A.root_id,
  2492. A.parent_id,
  2493. A.admin_id,
  2494. B.account_name AS admin_name,
  2495. A.group_id,
  2496. A.node_left,
  2497. A.node_right,
  2498. A.node_level,
  2499. A.is_leaf,
  2500. A.status,
  2501. A.if_lic
  2502. FROM oc AS A
  2503. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  2504. WHERE A.oc_id = 1
  2505. 11:13:16.510 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  2506. A.rm_id,
  2507. A.role_id,
  2508. B.role_type_id,
  2509. B.role_code,
  2510. B.role_name,
  2511. A.account_id
  2512. FROM s_role_member AS A
  2513. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  2514. WHERE account_id = 1
  2515. LIMIT 1
  2516. 11:13:16.516 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2517. A.gm_id,
  2518. A.oc_id,
  2519. A.group_id,
  2520. B.group_name,
  2521. B.node_left ,
  2522. B.node_right,
  2523. A.account_id
  2524. FROM s_group_member AS A
  2525. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2526. WHERE B.deleted_flag = 0
  2527. AND A.oc_id = 1
  2528. AND A.account_id = 1
  2529. LIMIT 1
  2530. 11:13:16.523 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2531. A.gmp_id,
  2532. A.oc_id,
  2533. A.group_id,
  2534. B.group_name,
  2535. A.account_id,
  2536. D.account_name,
  2537. D.account_real_name,
  2538. A.position_id,
  2539. C.position_name
  2540. FROM s_group_member_position A
  2541. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2542. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  2543. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  2544. WHERE A.deleted_flag = 0
  2545. AND A.oc_id = 1
  2546. AND A.group_id = 1
  2547. AND A.account_id = 1
  2548. LIMIT 1
  2549. 11:13:16.530 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2550. A.gmpg_id,
  2551. A.oc_id,
  2552. A.group_id,
  2553. A.account_id,
  2554. A.position_id,
  2555. A.grant_group_id,
  2556. B.group_name AS grant_group_name
  2557. FROM s_group_member_position_grant A
  2558. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  2559. WHERE A.deleted_flag = 0
  2560. AND A.oc_id = 1
  2561. AND A.group_id = 1
  2562. AND A.account_id = 1
  2563. AND A.position_id = 1
  2564. LIMIT 1
  2565. 11:13:16.981 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2566. client_id,
  2567. client_title,
  2568. client_app_id,
  2569. client_app_key,
  2570. client_app_secret,
  2571. client_desc,
  2572. status,
  2573. is_fixed
  2574. FROM client
  2575. WHERE deleted_flag = 0
  2576. AND client_app_id = '10001'
  2577. AND client_app_key = '82a8bf439373e305'
  2578. 11:13:17.002 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:17 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  2579. A.client_id,
  2580. A.role_id,
  2581. A.permit_id,
  2582. A.permit_title,
  2583. A.permit_code,
  2584. A.permit_entry,
  2585. A.permit_desc,
  2586. A.permit_type,
  2587. A.parent_id,
  2588. A.root_id,
  2589. A.sort_no,
  2590. A.is_home
  2591. FROM s_role_permit AS A
  2592. WHERE 1 = 1
  2593. AND A.client_id = 2
  2594. AND A.role_id = 1
  2595. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2596. 11:13:17.198 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:17 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT count(*)
  2597. FROM msg AS M
  2598. WHERE M.oc_id = 1
  2599. AND (
  2600. EXISTS (
  2601. SELECT 1 FROM msg_to TT
  2602. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  2603. ) OR
  2604. EXISTS (
  2605. SELECT 1 FROM msg_cc CC
  2606. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  2607. )
  2608. )
  2609. 11:13:21.591 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:21 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2610. 11:13:21.669 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:21 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  2611. 11:13:21.677 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2612. A.job_id,
  2613. A.job_title,
  2614. A.job_desc,
  2615. A.status,
  2616. A.job_type,
  2617. A.job_code,
  2618. A.job_cron,
  2619. A.job_class_id,
  2620. B.job_class,
  2621. A.cycle_title,
  2622. A.cycle_period,
  2623. A.cycle_unit
  2624. FROM job AS A
  2625. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2626. WHERE A.deleted_flag = 0
  2627. ORDER BY A.job_id ASC
  2628. LIMIT 10
  2629. 11:13:30.658 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:13:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2630. 11:13:30.663 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:30 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  2631. 11:13:30.667 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:13:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2632. job_class_id,
  2633. job_class_title,
  2634. job_class_desc,
  2635. job_class
  2636. FROM job_class
  2637. WHERE deleted_flag = 0
  2638. ORDER BY job_class_id ASC
  2639. 11:13:30.673 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:30 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  2640. A.job_id,
  2641. A.job_title,
  2642. A.job_desc,
  2643. A.status,
  2644. A.job_type,
  2645. A.job_code,
  2646. A.job_cron,
  2647. A.job_class_id,
  2648. B.job_class,
  2649. A.cycle_title,
  2650. A.cycle_period,
  2651. A.cycle_unit
  2652. FROM job AS A
  2653. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2654. WHERE A.job_id = 439094
  2655. 11:13:37.154 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  2656. 11:13:37.171 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:37 | Time Consuming: 9 ms | Connection: statement-1 | SQL: UPDATE job
  2657. SET job_title = '巡检天任务',
  2658. job_desc = '天任务',
  2659. status = 1,
  2660. job_type = 1,
  2661. job_code = 'Cron任务',
  2662. job_cron = '0 15 11 * * ?',
  2663. job_class_id = 2,
  2664. cycle_title = '天',
  2665. cycle_period = 0,
  2666. cycle_unit = 0,
  2667. updated_by = 1,
  2668. updated_at = '2023-08-24T11:13:37.159070500'
  2669. WHERE job_id = 439094
  2670. 11:13:37.208 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:37 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  2671. 11:13:37.214 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:13:37 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  2672. A.job_id,
  2673. A.job_title,
  2674. A.job_desc,
  2675. A.status,
  2676. A.job_type,
  2677. A.job_code,
  2678. A.job_cron,
  2679. A.job_class_id,
  2680. B.job_class,
  2681. A.cycle_title,
  2682. A.cycle_period,
  2683. A.cycle_unit
  2684. FROM job AS A
  2685. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2686. WHERE A.deleted_flag = 0
  2687. ORDER BY A.job_id ASC
  2688. LIMIT 10
  2689. 11:13:51.179 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2690. 11:13:51.180 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2691. 11:13:51.183 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2692. 11:13:51.185 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2693. 11:13:51.185 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2694. 11:13:51.185 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2695. 11:13:51.191 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2696. 11:13:51.192 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2697. 11:13:51.192 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2698. 11:13:51.192 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2699. 11:13:51.192 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2700. 11:13:51.205 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2701. 11:13:51.209 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2702. 11:13:56.465 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2703. 11:13:56.508 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 1680 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2704. 11:13:56.509 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2705. 11:13:56.558 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2706. 11:13:56.558 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2707. 11:13:58.237 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2708. 11:13:58.240 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2709. 11:13:58.328 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  2710. 11:13:58.480 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2711. 11:13:58.494 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2712. 11:13:59.182 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2713. 11:13:59.182 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2623 ms
  2714. 11:14:01.384 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2715. 11:14:01.393 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2716. 11:14:01.393 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2717. 11:14:01.394 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2718. 11:14:01.394 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2719. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2720. NOT STARTED.
  2721. Currently in standby mode.
  2722. Number of jobs executed: 0
  2723. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2724. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2725. 11:14:01.394 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2726. 11:14:01.394 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2727. 11:14:01.394 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5225ff8d
  2728. 11:14:02.976 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2729. 11:14:02.981 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2730. 11:14:03.112 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2731. 11:14:03.138 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2732. 11:14:03.138 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2733. 11:14:03.138 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2734. 11:14:03.156 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2735. 11:14:03.164 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2736. 11:14:03.172 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2737. 11:14:03.199 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2738. 11:14:03.253 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2739. 11:14:03.254 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2740. 11:14:03.255 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2741. 11:14:03.278 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.264 seconds (process running for 7.92)
  2742. 11:14:03.282 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2743. 11:14:03.289 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2744. 11:14:03.600 [restartedMain] INFO p6spy - 2023-08-24 11:14:03 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  2745. 11:14:03.604 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@47115e93
  2746. 11:14:03.613 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2747. 11:14:03.680 [restartedMain] INFO p6spy - 2023-08-24 11:14:03 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  2748. A.job_id,
  2749. A.job_title,
  2750. A.job_desc,
  2751. A.status,
  2752. A.job_type,
  2753. A.job_code,
  2754. A.job_cron,
  2755. A.job_class_id,
  2756. B.job_class,
  2757. A.cycle_title,
  2758. A.cycle_period,
  2759. A.cycle_unit
  2760. FROM job AS A
  2761. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2762. WHERE A.deleted_flag = 0
  2763. AND A.status = 1
  2764. ORDER BY A.job_id ASC
  2765. 11:14:03.700 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2766. 11:14:03.702 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2767. 11:14:03.916 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:14:03 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  2768. FROM goaf_sensor
  2769. WHERE goaf_sensor_ip = '192.168.3.12'
  2770. 11:14:04.406 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2771. 11:14:04.407 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2772. 11:14:04.409 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  2773. 11:14:04.414 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:14:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2774. 11:15:00.022 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2775. 11:15:00.028 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 11:15:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2776. 11:15:00.043 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2777. 11:15:49.245 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2778. 11:15:49.254 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2779. client_id,
  2780. client_title,
  2781. client_app_id,
  2782. client_app_key,
  2783. client_app_secret,
  2784. client_desc,
  2785. status,
  2786. is_fixed
  2787. FROM client
  2788. WHERE deleted_flag = 0
  2789. AND client_app_id = '10001'
  2790. AND client_app_key = '82a8bf439373e305'
  2791. 11:15:49.273 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2792. A.oc_id,
  2793. B.oc_type_id,
  2794. B.oc_name,
  2795. A.account_id,
  2796. A.account_name,
  2797. A.account_real_name,
  2798. A.password,
  2799. A.account_type,
  2800. A.account_staff_no,
  2801. A.account_phone,
  2802. A.account_last_ip,
  2803. A.account_loc,
  2804. A.status,
  2805. A.account_avatar,
  2806. A.account_photo,
  2807. A.account_real_name,
  2808. A.account_intro,
  2809. A.wx_id,
  2810. A.is_fixed
  2811. FROM account AS A
  2812. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2813. WHERE A.deleted_flag = 0
  2814. AND (A.account_name = 'sxky'
  2815. OR A.account_phone = 'sxky'
  2816. OR A.account_mail = 'sxky'
  2817. OR A.account_staff_no = 'sxky')
  2818. 11:15:49.280 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2819. A.oc_id,
  2820. A.oc_name,
  2821. A.oc_type_id,
  2822. A.root_id,
  2823. A.parent_id,
  2824. A.admin_id,
  2825. B.account_name AS admin_name,
  2826. A.group_id,
  2827. A.node_left,
  2828. A.node_right,
  2829. A.node_level,
  2830. A.is_leaf,
  2831. A.status,
  2832. A.if_lic
  2833. FROM oc AS A
  2834. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  2835. WHERE A.oc_id = 406283
  2836. 11:15:49.285 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2837. A.rm_id,
  2838. A.role_id,
  2839. B.role_type_id,
  2840. B.role_code,
  2841. B.role_name,
  2842. A.account_id
  2843. FROM s_role_member AS A
  2844. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  2845. WHERE account_id = 406283
  2846. LIMIT 1
  2847. 11:15:49.291 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2848. A.gm_id,
  2849. A.oc_id,
  2850. A.group_id,
  2851. B.group_name,
  2852. B.node_left ,
  2853. B.node_right,
  2854. A.account_id
  2855. FROM s_group_member AS A
  2856. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2857. WHERE B.deleted_flag = 0
  2858. AND A.oc_id = 406283
  2859. AND A.account_id = 406283
  2860. LIMIT 1
  2861. 11:15:49.296 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2862. A.gmp_id,
  2863. A.oc_id,
  2864. A.group_id,
  2865. B.group_name,
  2866. A.account_id,
  2867. D.account_name,
  2868. D.account_real_name,
  2869. A.position_id,
  2870. C.position_name
  2871. FROM s_group_member_position A
  2872. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2873. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  2874. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  2875. WHERE A.deleted_flag = 0
  2876. AND A.oc_id = 406283
  2877. AND A.group_id = 406283
  2878. AND A.account_id = 406283
  2879. LIMIT 1
  2880. 11:15:49.302 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2881. A.gmpg_id,
  2882. A.oc_id,
  2883. A.group_id,
  2884. A.account_id,
  2885. A.position_id,
  2886. A.grant_group_id,
  2887. B.group_name AS grant_group_name
  2888. FROM s_group_member_position_grant A
  2889. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  2890. WHERE A.deleted_flag = 0
  2891. AND A.oc_id = 406283
  2892. AND A.group_id = 406283
  2893. AND A.account_id = 406283
  2894. AND A.position_id = 406283
  2895. LIMIT 1
  2896. 11:15:49.679 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2897. client_id,
  2898. client_title,
  2899. client_app_id,
  2900. client_app_key,
  2901. client_app_secret,
  2902. client_desc,
  2903. status,
  2904. is_fixed
  2905. FROM client
  2906. WHERE deleted_flag = 0
  2907. AND client_app_id = '10001'
  2908. AND client_app_key = '82a8bf439373e305'
  2909. 11:15:49.697 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:49 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2910. A.client_id,
  2911. A.role_id,
  2912. A.permit_id,
  2913. A.permit_title,
  2914. A.permit_code,
  2915. A.permit_entry,
  2916. A.permit_desc,
  2917. A.permit_type,
  2918. A.parent_id,
  2919. A.root_id,
  2920. A.sort_no,
  2921. A.is_home
  2922. FROM s_role_permit AS A
  2923. WHERE 1 = 1
  2924. AND A.client_id = 2
  2925. AND A.role_id = 6
  2926. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2927. 11:15:50.092 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:50 | Time Consuming: 30 ms | Connection: statement-0 | SQL: SELECT count(*)
  2928. FROM msg AS M
  2929. WHERE M.oc_id = 406283
  2930. AND (
  2931. EXISTS (
  2932. SELECT 1 FROM msg_to TT
  2933. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  2934. ) OR
  2935. EXISTS (
  2936. SELECT 1 FROM msg_cc CC
  2937. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  2938. )
  2939. )
  2940. 11:15:50.664 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2941. 11:15:50.667 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2942. 11:15:50.672 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  2943. FROM goaf_sensor
  2944. where oc_id = 406283
  2945. LIMIT 10
  2946. 11:15:53.183 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:53 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2947. 11:15:53.194 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:15:53 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  2948. FROM goaf_sensordata
  2949. WHERE oc_id = 406283
  2950. ORDER BY goaf_datareport_time DESC
  2951. LIMIT 1
  2952. 11:16:22.454 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:16:22 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2953. 11:16:22.472 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:16:22 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  2954. 11:16:22.492 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:16:22 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT *
  2955. FROM goaf_sensordata
  2956. WHERE oc_id = 406283
  2957. ORDER BY goaf_datareport_time DESC
  2958. LIMIT 10
  2959. 11:16:26.245 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:16:26 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  2960. 11:16:26.250 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:16:26 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2961. FROM goaf_sensor
  2962. WHERE goaf_sensor_ip = '192.168.3.12'
  2963. 11:16:59.628 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:16:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2964. 11:16:59.631 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:16:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2965. 11:16:59.635 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:16:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  2966. FROM goaf_sensor
  2967. where oc_id = 406283
  2968. LIMIT 10
  2969. 11:17:41.716 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:17:41 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2970. 11:17:41.721 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:17:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2971. FROM goaf_sensor
  2972. WHERE goaf_sensor_ip = '192.168.3.12'
  2973. 11:18:02.390 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:18:02 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2974. 11:18:02.395 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:18:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2975. 11:18:02.399 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:18:02 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  2976. 11:18:02.400 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:18:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2977. FROM goaf_sensor
  2978. where oc_id = 406283
  2979. LIMIT 10
  2980. 11:18:02.403 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:18:02 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  2981. COUNT(*) AS 'goafSensorTotalNum',
  2982. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  2983. FROM goaf_sensor
  2984. WHERE oc_id = 406283
  2985. 11:18:03.661 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:18:03 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  2986. 11:18:03.666 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:18:03 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2987. 11:18:03.668 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:18:03 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2988. 11:18:03.669 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:18:03 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  2989. FROM goaf_sensor
  2990. where oc_id = 406283
  2991. LIMIT 10
  2992. 11:18:03.677 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:18:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2993. FROM goaf_syscfg
  2994. WHERE oc_id = 406283
  2995. 11:18:57.188 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:18:57 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2996. 11:18:57.194 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:18:57 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  2997. FROM goaf_sensor
  2998. WHERE goaf_sensor_ip = '192.168.3.12'
  2999. 11:20:12.656 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 11:20:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3000. 11:20:12.662 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 11:20:12 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3001. FROM goaf_sensor
  3002. WHERE goaf_sensor_ip = '192.168.3.12'
  3003. 11:20:28.824 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:20:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3004. 11:20:28.832 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:20:28 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  3005. FROM goaf_syscfg
  3006. WHERE oc_id = 406283
  3007. 11:21:28.081 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 11:21:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3008. 11:21:28.087 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 11:21:28 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3009. FROM goaf_sensor
  3010. WHERE goaf_sensor_ip = '192.168.3.12'
  3011. 11:22:43.597 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 11:22:43 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  3012. 11:22:43.600 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 11:22:43 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  3013. FROM goaf_sensor
  3014. WHERE goaf_sensor_ip = '192.168.3.12'
  3015. 11:23:47.431 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:23:47 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  3016. 11:23:47.440 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:23:47 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  3017. A.job_id,
  3018. A.job_title,
  3019. A.job_desc,
  3020. A.status,
  3021. A.job_type,
  3022. A.job_code,
  3023. A.job_cron,
  3024. A.job_class_id,
  3025. B.job_class,
  3026. A.cycle_title,
  3027. A.cycle_period,
  3028. A.cycle_unit
  3029. FROM job AS A
  3030. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3031. WHERE A.job_id = 439094
  3032. 11:23:52.941 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:23:52 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  3033. 11:23:52.958 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:23:52 | Time Consuming: 10 ms | Connection: statement-5 | SQL: UPDATE job
  3034. SET job_title = '巡检天任务',
  3035. job_desc = '天任务',
  3036. status = 1,
  3037. job_type = 1,
  3038. job_code = 'Cron任务',
  3039. job_cron = '0 25 11 * * ?',
  3040. job_class_id = 2,
  3041. cycle_title = '天',
  3042. cycle_period = 0,
  3043. cycle_unit = 0,
  3044. updated_by = 1,
  3045. updated_at = '2023-08-24T11:23:52.945622400'
  3046. WHERE job_id = 439094
  3047. 11:23:53.001 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:23:53 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  3048. 11:23:53.007 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:23:53 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  3049. A.job_id,
  3050. A.job_title,
  3051. A.job_desc,
  3052. A.status,
  3053. A.job_type,
  3054. A.job_code,
  3055. A.job_cron,
  3056. A.job_class_id,
  3057. B.job_class,
  3058. A.cycle_title,
  3059. A.cycle_period,
  3060. A.cycle_unit
  3061. FROM job AS A
  3062. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3063. WHERE A.deleted_flag = 0
  3064. ORDER BY A.job_id ASC
  3065. LIMIT 10
  3066. 11:23:59.021 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 11:23:59 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT 1
  3067. 11:23:59.025 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 11:23:59 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  3068. FROM goaf_sensor
  3069. WHERE goaf_sensor_ip = '192.168.3.12'
  3070. 11:24:00.294 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3071. 11:24:00.296 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3072. 11:24:00.298 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3073. 11:24:00.300 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3074. 11:24:00.300 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3075. 11:24:00.300 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3076. 11:24:00.307 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3077. 11:24:00.308 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3078. 11:24:00.308 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3079. 11:24:00.308 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3080. 11:24:00.308 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3081. 11:24:00.321 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3082. 11:24:00.341 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3083. 11:24:03.836 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3084. 11:24:03.885 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14264 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3085. 11:24:03.885 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3086. 11:24:03.940 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3087. 11:24:03.941 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3088. 11:24:05.748 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3089. 11:24:05.752 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3090. 11:24:05.835 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 0 Redis repository interfaces.
  3091. 11:24:06.003 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3092. 11:24:06.019 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3093. 11:24:06.769 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3094. 11:24:06.770 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2828 ms
  3095. 11:24:09.113 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3096. 11:24:09.123 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3097. 11:24:09.123 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3098. 11:24:09.124 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3099. 11:24:09.124 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3100. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3101. NOT STARTED.
  3102. Currently in standby mode.
  3103. Number of jobs executed: 0
  3104. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3105. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3106. 11:24:09.124 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3107. 11:24:09.124 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3108. 11:24:09.124 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7b81c9a3
  3109. 11:24:10.810 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3110. 11:24:10.816 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3111. 11:24:10.959 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3112. 11:24:10.989 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3113. 11:24:10.990 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3114. 11:24:10.990 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3115. 11:24:11.012 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3116. 11:24:11.024 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3117. 11:24:11.040 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3118. 11:24:11.076 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3119. 11:24:11.138 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3120. 11:24:11.139 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3121. 11:24:11.140 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3122. 11:24:11.166 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.824 seconds (process running for 8.685)
  3123. 11:24:11.169 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3124. 11:24:11.177 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3125. 11:24:11.509 [restartedMain] INFO p6spy - 2023-08-24 11:24:11 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3126. 11:24:11.516 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@7d4a2f02
  3127. 11:24:11.527 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3128. 11:24:11.599 [restartedMain] INFO p6spy - 2023-08-24 11:24:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3129. A.job_id,
  3130. A.job_title,
  3131. A.job_desc,
  3132. A.status,
  3133. A.job_type,
  3134. A.job_code,
  3135. A.job_cron,
  3136. A.job_class_id,
  3137. B.job_class,
  3138. A.cycle_title,
  3139. A.cycle_period,
  3140. A.cycle_unit
  3141. FROM job AS A
  3142. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3143. WHERE A.deleted_flag = 0
  3144. AND A.status = 1
  3145. ORDER BY A.job_id ASC
  3146. 11:24:11.620 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3147. 11:24:11.622 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3148. 11:24:11.879 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:24:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3149. FROM goaf_sensor
  3150. WHERE goaf_sensor_ip = '192.168.3.12'
  3151. 11:24:12.361 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3152. 11:24:12.362 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3153. 11:24:12.366 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  3154. 11:24:12.407 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 11:24:12 | Time Consuming: 19 ms | Connection: statement-0 | SQL: SELECT 1
  3155. 11:25:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  3156. 11:25:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 11:25:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3157. 11:25:00.028 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3158. 11:26:25.915 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:26:25 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3159. 11:26:25.919 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:26:25 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3160. FROM goaf_sensor
  3161. WHERE goaf_sensor_ip = '192.168.3.12'
  3162. 11:27:41.386 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:27:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3163. 11:27:41.392 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:27:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3164. FROM goaf_sensor
  3165. WHERE goaf_sensor_ip = '192.168.3.12'
  3166. 11:28:56.857 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:28:56 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3167. 11:28:56.862 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:28:56 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3168. FROM goaf_sensor
  3169. WHERE goaf_sensor_ip = '192.168.3.12'
  3170. 11:29:52.511 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:29:52 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  3171. 11:29:52.536 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:29:52 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  3172. client_id,
  3173. client_title,
  3174. client_app_id,
  3175. client_app_key,
  3176. client_app_secret,
  3177. client_desc,
  3178. status,
  3179. is_fixed
  3180. FROM client
  3181. WHERE deleted_flag = 0
  3182. AND client_app_id = '10001'
  3183. AND client_app_key = '82a8bf439373e305'
  3184. 11:29:52.583 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:29:52 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  3185. A.client_id,
  3186. A.role_id,
  3187. A.permit_id,
  3188. A.permit_title,
  3189. A.permit_code,
  3190. A.permit_entry,
  3191. A.permit_desc,
  3192. A.permit_type,
  3193. A.parent_id,
  3194. A.root_id,
  3195. A.sort_no,
  3196. A.is_home
  3197. FROM s_role_permit AS A
  3198. WHERE 1 = 1
  3199. AND A.client_id = 2
  3200. AND A.role_id = 1
  3201. ORDER BY A.parent_id ASC ,A.sort_no ASC
  3202. 11:29:52.802 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:29:52 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT count(*)
  3203. FROM msg AS M
  3204. WHERE M.oc_id = 1
  3205. AND (
  3206. EXISTS (
  3207. SELECT 1 FROM msg_to TT
  3208. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  3209. ) OR
  3210. EXISTS (
  3211. SELECT 1 FROM msg_cc CC
  3212. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  3213. )
  3214. )
  3215. 11:29:57.787 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:29:57 | Time Consuming: 5009 ms | Connection: statement-1 | SQL: SELECT 1
  3216. 11:29:57.794 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:29:57 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3217. 11:29:57.875 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:29:57 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  3218. 11:29:57.882 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:29:57 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3219. A.job_id,
  3220. A.job_title,
  3221. A.job_desc,
  3222. A.status,
  3223. A.job_type,
  3224. A.job_code,
  3225. A.job_cron,
  3226. A.job_class_id,
  3227. B.job_class,
  3228. A.cycle_title,
  3229. A.cycle_period,
  3230. A.cycle_unit
  3231. FROM job AS A
  3232. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3233. WHERE A.deleted_flag = 0
  3234. ORDER BY A.job_id ASC
  3235. LIMIT 10
  3236. 11:30:00.207 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:30:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3237. 11:30:00.215 [XNIO-1 task-2] INFO p6spy - 2023-08-24 11:30:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  3238. job_class_id,
  3239. job_class_title,
  3240. job_class_desc,
  3241. job_class
  3242. FROM job_class
  3243. WHERE deleted_flag = 0
  3244. ORDER BY job_class_id ASC
  3245. 11:30:05.215 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:05 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  3246. 11:30:05.218 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3247. 11:30:05.226 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  3248. A.job_id,
  3249. A.job_title,
  3250. A.job_desc,
  3251. A.status,
  3252. A.job_type,
  3253. A.job_code,
  3254. A.job_cron,
  3255. A.job_class_id,
  3256. B.job_class,
  3257. A.cycle_title,
  3258. A.cycle_period,
  3259. A.cycle_unit
  3260. FROM job AS A
  3261. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3262. WHERE A.job_id = 439094
  3263. 11:30:05.244 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  3264. A.job_id,
  3265. A.job_title,
  3266. A.job_desc,
  3267. A.status,
  3268. A.job_type,
  3269. A.job_code,
  3270. A.job_cron,
  3271. A.job_class_id,
  3272. B.job_class,
  3273. A.cycle_title,
  3274. A.cycle_period,
  3275. A.cycle_unit
  3276. FROM job AS A
  3277. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3278. WHERE A.job_id = 439094
  3279. 11:30:12.031 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:12 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3280. 11:30:12.046 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:12 | Time Consuming: 8 ms | Connection: statement-0 | SQL: UPDATE job
  3281. SET job_title = '巡检天任务',
  3282. job_desc = '天任务',
  3283. status = 1,
  3284. job_type = 1,
  3285. job_code = 'Cron任务',
  3286. job_cron = '0 31 11 * * ?',
  3287. job_class_id = 2,
  3288. cycle_title = '天',
  3289. cycle_period = 0,
  3290. cycle_unit = 0,
  3291. updated_by = 1,
  3292. updated_at = '2023-08-24T11:30:12.034770800'
  3293. WHERE job_id = 439094
  3294. 11:30:12.088 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:12 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  3295. 11:30:12.092 [XNIO-1 task-3] INFO p6spy - 2023-08-24 11:30:12 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  3296. A.job_id,
  3297. A.job_title,
  3298. A.job_desc,
  3299. A.status,
  3300. A.job_type,
  3301. A.job_code,
  3302. A.job_cron,
  3303. A.job_class_id,
  3304. B.job_class,
  3305. A.cycle_title,
  3306. A.cycle_period,
  3307. A.cycle_unit
  3308. FROM job AS A
  3309. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3310. WHERE A.deleted_flag = 0
  3311. ORDER BY A.job_id ASC
  3312. LIMIT 10
  3313. 11:30:12.322 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 11:30:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3314. FROM goaf_sensor
  3315. WHERE goaf_sensor_ip = '192.168.3.12'
  3316. 11:30:17.961 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3317. 11:30:17.962 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3318. 11:30:17.964 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3319. 11:30:17.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3320. 11:30:17.966 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3321. 11:30:17.967 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3322. 11:30:17.972 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3323. 11:30:17.973 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3324. 11:30:17.973 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3325. 11:30:17.973 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3326. 11:30:17.973 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3327. 11:30:17.988 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3328. 11:30:18.024 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3329. 11:30:23.309 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3330. 11:30:23.356 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 1736 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3331. 11:30:23.356 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3332. 11:30:23.410 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3333. 11:30:23.410 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3334. 11:30:25.260 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3335. 11:30:25.264 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3336. 11:30:25.351 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  3337. 11:30:25.516 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3338. 11:30:25.532 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3339. 11:30:26.268 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3340. 11:30:26.268 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2858 ms
  3341. 11:30:28.598 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3342. 11:30:28.608 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3343. 11:30:28.608 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3344. 11:30:28.609 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3345. 11:30:28.609 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3346. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3347. NOT STARTED.
  3348. Currently in standby mode.
  3349. Number of jobs executed: 0
  3350. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3351. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3352. 11:30:28.609 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3353. 11:30:28.609 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3354. 11:30:28.609 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@75cf37a4
  3355. 11:30:30.260 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3356. 11:30:30.266 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3357. 11:30:30.403 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3358. 11:30:30.432 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3359. 11:30:30.432 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3360. 11:30:30.433 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3361. 11:30:30.452 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3362. 11:30:30.461 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3363. 11:30:30.471 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3364. 11:30:30.500 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3365. 11:30:30.552 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3366. 11:30:30.553 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3367. 11:30:30.553 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3368. 11:30:30.578 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.803 seconds (process running for 8.7)
  3369. 11:30:30.580 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3370. 11:30:30.588 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3371. 11:30:30.903 [restartedMain] INFO p6spy - 2023-08-24 11:30:30 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3372. 11:30:30.908 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@4e4c9046
  3373. 11:30:30.925 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3374. 11:30:30.992 [restartedMain] INFO p6spy - 2023-08-24 11:30:30 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3375. A.job_id,
  3376. A.job_title,
  3377. A.job_desc,
  3378. A.status,
  3379. A.job_type,
  3380. A.job_code,
  3381. A.job_cron,
  3382. A.job_class_id,
  3383. B.job_class,
  3384. A.cycle_title,
  3385. A.cycle_period,
  3386. A.cycle_unit
  3387. FROM job AS A
  3388. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3389. WHERE A.deleted_flag = 0
  3390. AND A.status = 1
  3391. ORDER BY A.job_id ASC
  3392. 11:30:31.013 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3393. 11:30:31.014 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3394. 11:30:31.315 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:30:31 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  3395. FROM goaf_sensor
  3396. WHERE goaf_sensor_ip = '192.168.3.12'
  3397. 11:30:31.391 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3398. 11:30:31.391 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3399. 11:30:31.401 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:30:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3400. 11:30:31.416 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 25 ms
  3401. 11:31:00.013 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  3402. 11:31:00.020 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 11:31:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3403. 11:31:00.046 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3404. 11:31:20.339 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:31:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3405. 11:31:20.344 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:31:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  3406. FROM goaf_sensor
  3407. WHERE goaf_sensor_ip = '192.168.3.12'
  3408. 11:31:20.354 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:31:20 | Time Consuming: 6 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  3409. 11:31:20.360 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:31:20 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  3410. 11:31:20.389 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:31:20 | Time Consuming: 19 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  3411. ( goaf_data_id,
  3412. oc_id,
  3413. goaf_sensor_id,
  3414. goaf_sensor_name,
  3415. frequency_x,
  3416. frequency_y,
  3417. frequency_z,
  3418. acc_x,
  3419. acc_y,
  3420. acc_z,
  3421. vel_x,
  3422. vel_y,
  3423. vel_z,
  3424. dis_x,
  3425. dis_y,
  3426. dis_z,
  3427. sensor_temperature,
  3428. ang_x,
  3429. ang_y,
  3430. ang_z,
  3431. f_alarm_acc_x,
  3432. f_alarm_acc_y,
  3433. f_alarm_acc_z,
  3434. f_alarm_vel_x,
  3435. f_alarm_vel_y,
  3436. f_alarm_vel_z,
  3437. f_alarm_dis_x,
  3438. f_alarm_dis_y,
  3439. f_alarm_dis_z,
  3440. f_alarm_temperature,
  3441. td_wave_value_x,
  3442. td_wave_value_y,
  3443. td_wave_value_z,
  3444. goaf_datareport_time )
  3445. values ( 442163,
  3446. 406283,
  3447. 442139,
  3448. 'jacintoqqq',
  3449. 453,
  3450. 453,
  3451. 2284,
  3452. 9116,
  3453. 7622,
  3454. 1353,
  3455. 21664,
  3456. 18190,
  3457. 1223,
  3458. 2195,
  3459. 1911,
  3460. 83,
  3461. 325,
  3462. -6251,
  3463. 2716,
  3464. -388,
  3465. 60123,
  3466. 59238,
  3467. 59298,
  3468. 59117,
  3469. 58504,
  3470. 58650,
  3471. 59058,
  3472. 59351,
  3473. 60765,
  3474. -3855,
  3475. '-2020,-2243,-2402,-2200,-2236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3476. '-5572,-5993,-5418,-4502,-4492,-4688,-3661,-3629,-4651,-4913,-4739,-4647,-4419,-4473,-4466,-4084,-3995,-4404,-4898,-5185,-6477,-5264,-4778,-7420,-7252,-8758,-10809,-10704,-12880,-11707,-9678,-9245,-10209,-10852,-9195,-9072,-9211,-8241,-6625,-5723,-5356,-4120,-2711,-2027,-775,-208,36,-88,-877,-1277,-1186,-2655,-4619,-4755,-6067,-4613,-3532,-4675,-3976,-184,467,189,1374,1340,2799,4080,4266,4083,5209,5956,4793,5054,5732,4799,6700,7531,7659,9277,9518,7376,7202,7809,7674,8074,7498,7670,7946,7266,7490,7658,7482,7960,7418,6831,7177,6363,5516,5683,5040,4169,4881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3477. '-1493,-1758,-2186,-2288,-2312,-2478,-2759,-2501,-2112,-1919,-1512,-890,-6,719,1156,1404,1648,1566,1078,629,524,787,1152,1294,1120,1155,1094,822,816,654,-327,-1621,-2142,-2005,-1984,-2178,-1883,-1477,-1359,-1142,-667,-219,50,214,235,362,320,196,263,627,902,815,1059,1174,2124,2919,1480,691,-390,-1575,-1393,-851,-250,414,957,1529,2056,1657,1898,1360,890,1417,1637,1912,1964,1436,884,636,-1,79,-401,-1495,-1790,-2015,-2343,-2670,-2961,-2945,-2643,-2820,-2633,-2232,-1876,-1175,-708,-326,239,708,903,1276,1411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3478. '2023-08-24T11:31:20.361798' )
  3479. 11:32:35.790 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:32:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3480. 11:32:35.799 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:32:35 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  3481. FROM goaf_sensor
  3482. WHERE goaf_sensor_ip = '192.168.3.12'
  3483. 11:33:51.262 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:33:51 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  3484. 11:33:51.267 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:33:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3485. FROM goaf_sensor
  3486. WHERE goaf_sensor_ip = '192.168.3.12'
  3487. 11:34:58.147 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3488. 11:34:58.149 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3489. 11:34:58.157 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3490. 11:34:58.159 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3491. 11:34:58.159 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3492. 11:34:58.160 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3493. 11:34:58.165 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3494. 11:34:58.167 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3495. 11:34:58.167 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3496. 11:34:58.167 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3497. 11:34:58.167 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3498. 11:34:58.183 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3499. 11:34:58.186 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3500. 11:35:28.042 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3501. 11:35:28.094 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15336 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3502. 11:35:28.095 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3503. 11:35:28.155 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3504. 11:35:28.155 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3505. 11:35:29.923 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3506. 11:35:29.926 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3507. 11:35:30.011 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 0 Redis repository interfaces.
  3508. 11:35:30.174 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3509. 11:35:30.191 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3510. 11:35:30.926 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3511. 11:35:30.926 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2771 ms
  3512. 11:35:33.283 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3513. 11:35:33.293 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3514. 11:35:33.294 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3515. 11:35:33.294 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3516. 11:35:33.295 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3517. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3518. NOT STARTED.
  3519. Currently in standby mode.
  3520. Number of jobs executed: 0
  3521. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3522. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3523. 11:35:33.295 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3524. 11:35:33.295 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3525. 11:35:33.295 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6ced931c
  3526. 11:35:35.038 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3527. 11:35:35.043 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3528. 11:35:35.187 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3529. 11:35:35.218 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3530. 11:35:35.218 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3531. 11:35:35.218 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3532. 11:35:35.237 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3533. 11:35:35.246 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3534. 11:35:35.257 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3535. 11:35:35.287 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3536. 11:35:35.339 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3537. 11:35:35.341 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3538. 11:35:35.341 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3539. 11:35:35.366 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.846 seconds (process running for 8.721)
  3540. 11:35:35.369 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3541. 11:35:35.375 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3542. 11:35:35.695 [restartedMain] INFO p6spy - 2023-08-24 11:35:35 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3543. 11:35:35.699 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@b0c4902
  3544. 11:35:35.710 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3545. 11:35:35.784 [restartedMain] INFO p6spy - 2023-08-24 11:35:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3546. A.job_id,
  3547. A.job_title,
  3548. A.job_desc,
  3549. A.status,
  3550. A.job_type,
  3551. A.job_code,
  3552. A.job_cron,
  3553. A.job_class_id,
  3554. B.job_class,
  3555. A.cycle_title,
  3556. A.cycle_period,
  3557. A.cycle_unit
  3558. FROM job AS A
  3559. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3560. WHERE A.deleted_flag = 0
  3561. AND A.status = 1
  3562. ORDER BY A.job_id ASC
  3563. 11:35:35.805 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3564. 11:35:35.806 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3565. 11:35:36.034 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:35:36 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3566. FROM goaf_sensor
  3567. WHERE goaf_sensor_ip = '192.168.3.12'
  3568. 11:35:36.576 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3569. 11:35:36.576 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3570. 11:35:36.580 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  3571. 11:35:36.582 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:35:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3572. 11:35:36.592 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:35:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3573. 11:36:33.257 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:36:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3574. 11:36:33.262 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:36:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3575. FROM goaf_sensor
  3576. WHERE goaf_sensor_ip = '192.168.3.12'
  3577. 11:37:48.732 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:37:48 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3578. 11:37:48.737 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:37:48 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3579. FROM goaf_sensor
  3580. WHERE goaf_sensor_ip = '192.168.3.12'
  3581. 11:39:04.155 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:39:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3582. 11:39:04.160 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:39:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3583. FROM goaf_sensor
  3584. WHERE goaf_sensor_ip = '192.168.3.12'
  3585. 11:40:19.670 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 11:40:19 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3586. 11:40:19.676 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 11:40:19 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3587. FROM goaf_sensor
  3588. WHERE goaf_sensor_ip = '192.168.3.12'
  3589. 11:40:30.678 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3590. 11:40:30.680 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3591. 11:40:30.690 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3592. 11:40:30.696 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3593. 11:40:30.701 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3594. 11:40:30.702 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3595. 11:40:30.725 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3596. 11:40:30.727 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3597. 11:40:30.727 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3598. 11:40:30.727 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3599. 11:40:30.730 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3600. 11:40:30.747 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3601. 11:40:30.751 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3602. 11:40:37.494 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3603. 11:40:37.539 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15196 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3604. 11:40:37.539 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3605. 11:40:37.588 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3606. 11:40:37.588 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3607. 11:40:39.300 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3608. 11:40:39.304 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3609. 11:40:39.393 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  3610. 11:40:39.556 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3611. 11:40:39.571 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3612. 11:40:40.305 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3613. 11:40:40.305 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2716 ms
  3614. 11:40:42.699 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3615. 11:40:42.711 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3616. 11:40:42.711 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3617. 11:40:42.712 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3618. 11:40:42.714 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3619. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3620. NOT STARTED.
  3621. Currently in standby mode.
  3622. Number of jobs executed: 0
  3623. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3624. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3625. 11:40:42.714 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3626. 11:40:42.714 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3627. 11:40:42.714 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7e1881ba
  3628. 11:40:44.567 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3629. 11:40:44.572 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3630. 11:40:44.737 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3631. 11:40:44.793 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3632. 11:40:44.793 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3633. 11:40:44.793 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3634. 11:40:44.815 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3635. 11:40:44.823 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3636. 11:40:44.831 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3637. 11:40:44.878 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3638. 11:40:44.934 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3639. 11:40:44.935 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3640. 11:40:44.935 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3641. 11:40:44.968 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.935 seconds (process running for 8.615)
  3642. 11:40:44.970 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3643. 11:40:44.979 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3644. 11:40:45.360 [restartedMain] INFO p6spy - 2023-08-24 11:40:45 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  3645. 11:40:45.364 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@14c6ae22
  3646. 11:40:45.373 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3647. 11:40:45.453 [restartedMain] INFO p6spy - 2023-08-24 11:40:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3648. A.job_id,
  3649. A.job_title,
  3650. A.job_desc,
  3651. A.status,
  3652. A.job_type,
  3653. A.job_code,
  3654. A.job_cron,
  3655. A.job_class_id,
  3656. B.job_class,
  3657. A.cycle_title,
  3658. A.cycle_period,
  3659. A.cycle_unit
  3660. FROM job AS A
  3661. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3662. WHERE A.deleted_flag = 0
  3663. AND A.status = 1
  3664. ORDER BY A.job_id ASC
  3665. 11:40:45.474 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3666. 11:40:45.476 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3667. 11:40:45.693 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:40:45 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  3668. FROM goaf_sensor
  3669. WHERE goaf_sensor_ip = '192.168.3.12'
  3670. 11:40:46.049 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3671. 11:40:46.049 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3672. 11:40:46.053 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  3673. 11:40:46.060 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:40:46 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3674. 11:42:01.150 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:42:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3675. 11:42:01.155 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:42:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3676. FROM goaf_sensor
  3677. WHERE goaf_sensor_ip = '192.168.3.12'
  3678. 11:42:36.353 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3679. 11:42:36.354 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3680. 11:42:36.361 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3681. 11:42:36.363 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3682. 11:42:36.363 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3683. 11:42:36.364 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3684. 11:42:36.380 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3685. 11:42:36.386 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3686. 11:42:36.386 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3687. 11:42:36.386 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3688. 11:42:36.386 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3689. 11:42:36.407 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3690. 11:42:36.411 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3691. 11:42:42.650 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3692. 11:42:42.703 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 1296 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3693. 11:42:42.704 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3694. 11:42:42.765 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3695. 11:42:42.765 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3696. 11:42:44.473 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3697. 11:42:44.476 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3698. 11:42:44.564 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  3699. 11:42:44.718 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3700. 11:42:44.733 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3701. 11:42:45.421 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3702. 11:42:45.422 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2655 ms
  3703. 11:42:47.635 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3704. 11:42:47.644 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3705. 11:42:47.644 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3706. 11:42:47.645 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3707. 11:42:47.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3708. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3709. NOT STARTED.
  3710. Currently in standby mode.
  3711. Number of jobs executed: 0
  3712. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3713. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3714. 11:42:47.645 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3715. 11:42:47.645 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3716. 11:42:47.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@219ab2a4
  3717. 11:42:49.182 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3718. 11:42:49.187 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3719. 11:42:49.320 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3720. 11:42:49.346 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3721. 11:42:49.346 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3722. 11:42:49.346 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3723. 11:42:49.364 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3724. 11:42:49.373 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3725. 11:42:49.381 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3726. 11:42:49.409 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3727. 11:42:49.465 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3728. 11:42:49.466 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3729. 11:42:49.466 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3730. 11:42:49.493 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.335 seconds (process running for 8.012)
  3731. 11:42:49.496 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3732. 11:42:49.502 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3733. 11:42:49.795 [restartedMain] INFO p6spy - 2023-08-24 11:42:49 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  3734. 11:42:49.799 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@61e9923c
  3735. 11:42:49.808 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3736. 11:42:49.870 [restartedMain] INFO p6spy - 2023-08-24 11:42:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3737. A.job_id,
  3738. A.job_title,
  3739. A.job_desc,
  3740. A.status,
  3741. A.job_type,
  3742. A.job_code,
  3743. A.job_cron,
  3744. A.job_class_id,
  3745. B.job_class,
  3746. A.cycle_title,
  3747. A.cycle_period,
  3748. A.cycle_unit
  3749. FROM job AS A
  3750. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3751. WHERE A.deleted_flag = 0
  3752. AND A.status = 1
  3753. ORDER BY A.job_id ASC
  3754. 11:42:49.891 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3755. 11:42:49.893 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3756. 11:42:50.122 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:42:50 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT *
  3757. FROM goaf_sensor
  3758. WHERE goaf_sensor_ip = '192.168.3.12'
  3759. 11:42:50.614 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3760. 11:42:50.614 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3761. 11:42:50.622 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 8 ms
  3762. 11:42:50.627 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:42:50 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3763. 11:43:39.147 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:43:39 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3764. 11:43:39.152 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:43:39 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3765. FROM goaf_sensor
  3766. WHERE goaf_sensor_ip = '192.168.3.12'
  3767. 11:43:44.310 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:43:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3768. 11:43:44.315 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:43:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3769. FROM goaf_sensor
  3770. WHERE goaf_sensor_ip = '192.168.3.12'
  3771. 11:44:27.178 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:44:27 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3772. 11:44:27.182 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 11:44:27 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3773. FROM goaf_sensor
  3774. WHERE goaf_sensor_ip = '192.168.3.12'
  3775. 11:44:48.268 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3776. 11:44:48.269 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3777. 11:44:48.276 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3778. 11:44:48.278 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3779. 11:44:48.278 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3780. 11:44:48.278 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3781. 11:44:48.320 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3782. 11:44:48.321 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3783. 11:44:48.321 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3784. 11:44:48.321 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3785. 11:44:48.321 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3786. 11:44:48.333 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3787. 11:44:48.337 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3788. 11:44:53.688 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3789. 11:44:53.736 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13808 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3790. 11:44:53.737 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3791. 11:44:53.788 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3792. 11:44:53.789 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3793. 11:44:55.477 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3794. 11:44:55.480 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3795. 11:44:55.568 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  3796. 11:44:55.723 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3797. 11:44:55.740 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3798. 11:44:56.441 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3799. 11:44:56.442 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2653 ms
  3800. 11:44:58.718 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3801. 11:44:58.728 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3802. 11:44:58.728 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3803. 11:44:58.728 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3804. 11:44:58.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3805. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3806. NOT STARTED.
  3807. Currently in standby mode.
  3808. Number of jobs executed: 0
  3809. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3810. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3811. 11:44:58.729 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3812. 11:44:58.729 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3813. 11:44:58.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@ce678f8
  3814. 11:45:00.285 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3815. 11:45:00.291 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3816. 11:45:00.432 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3817. 11:45:00.461 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3818. 11:45:00.462 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3819. 11:45:00.462 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3820. 11:45:00.482 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3821. 11:45:00.490 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3822. 11:45:00.500 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3823. 11:45:00.531 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3824. 11:45:00.587 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3825. 11:45:00.589 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3826. 11:45:00.589 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3827. 11:45:00.616 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.384 seconds (process running for 8.003)
  3828. 11:45:00.618 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3829. 11:45:00.625 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3830. 11:45:00.940 [restartedMain] INFO p6spy - 2023-08-24 11:45:00 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3831. 11:45:00.945 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@29f4aa81
  3832. 11:45:00.955 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3833. 11:45:01.019 [restartedMain] INFO p6spy - 2023-08-24 11:45:01 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3834. A.job_id,
  3835. A.job_title,
  3836. A.job_desc,
  3837. A.status,
  3838. A.job_type,
  3839. A.job_code,
  3840. A.job_cron,
  3841. A.job_class_id,
  3842. B.job_class,
  3843. A.cycle_title,
  3844. A.cycle_period,
  3845. A.cycle_unit
  3846. FROM job AS A
  3847. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3848. WHERE A.deleted_flag = 0
  3849. AND A.status = 1
  3850. ORDER BY A.job_id ASC
  3851. 11:45:01.038 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3852. 11:45:01.040 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3853. 11:45:01.289 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 11:45:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3854. FROM goaf_sensor
  3855. WHERE goaf_sensor_ip = '192.168.3.12'
  3856. 11:45:01.398 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3857. 11:45:01.399 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3858. 11:45:01.403 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:45:01 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3859. 11:45:01.406 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 7 ms
  3860. 11:46:16.952 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:46:16 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  3861. 11:46:16.959 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 11:46:16 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3862. FROM goaf_sensor
  3863. WHERE goaf_sensor_ip = '192.168.3.12'
  3864. 11:47:32.430 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:47:32 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  3865. 11:47:32.435 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 11:47:32 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3866. FROM goaf_sensor
  3867. WHERE goaf_sensor_ip = '192.168.3.12'
  3868. 11:47:59.312 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3869. 11:47:59.313 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3870. 11:47:59.319 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3871. 11:47:59.322 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3872. 11:47:59.322 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3873. 11:47:59.322 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3874. 11:47:59.331 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3875. 11:47:59.333 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3876. 11:47:59.333 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3877. 11:47:59.333 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3878. 11:47:59.333 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3879. 11:47:59.361 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3880. 11:47:59.364 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3881. 11:48:03.968 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3882. 11:48:04.016 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14552 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3883. 11:48:04.017 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3884. 11:48:04.070 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3885. 11:48:04.070 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3886. 11:48:05.849 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3887. 11:48:05.852 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3888. 11:48:05.941 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  3889. 11:48:06.110 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3890. 11:48:06.126 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3891. 11:48:06.891 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3892. 11:48:06.892 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2821 ms
  3893. 11:48:09.227 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3894. 11:48:09.238 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3895. 11:48:09.238 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3896. 11:48:09.238 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3897. 11:48:09.239 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3898. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3899. NOT STARTED.
  3900. Currently in standby mode.
  3901. Number of jobs executed: 0
  3902. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3903. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3904. 11:48:09.239 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3905. 11:48:09.239 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3906. 11:48:09.239 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54822cd4
  3907. 11:48:10.924 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3908. 11:48:10.930 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3909. 11:48:11.081 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3910. 11:48:11.111 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3911. 11:48:11.111 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3912. 11:48:11.112 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3913. 11:48:11.132 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3914. 11:48:11.142 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3915. 11:48:11.153 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3916. 11:48:11.184 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3917. 11:48:11.238 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3918. 11:48:11.240 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3919. 11:48:11.240 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3920. 11:48:11.266 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.782 seconds (process running for 8.58)
  3921. 11:48:11.268 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3922. 11:48:11.276 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3923. 11:48:11.614 [restartedMain] INFO p6spy - 2023-08-24 11:48:11 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  3924. 11:48:11.620 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@ae96221
  3925. 11:48:11.623 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3926. 11:48:11.694 [restartedMain] INFO p6spy - 2023-08-24 11:48:11 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3927. A.job_id,
  3928. A.job_title,
  3929. A.job_desc,
  3930. A.status,
  3931. A.job_type,
  3932. A.job_code,
  3933. A.job_cron,
  3934. A.job_class_id,
  3935. B.job_class,
  3936. A.cycle_title,
  3937. A.cycle_period,
  3938. A.cycle_unit
  3939. FROM job AS A
  3940. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3941. WHERE A.deleted_flag = 0
  3942. AND A.status = 1
  3943. ORDER BY A.job_id ASC
  3944. 11:48:11.714 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3945. 11:48:11.716 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3946. 11:48:12.367 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 11:48:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3947. 11:48:12.368 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3948. 11:48:12.368 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3949. 11:48:12.372 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  3950. 11:48:12.383 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 11:48:12 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3951. 11:51:00.164 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3952. 11:51:00.166 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3953. 11:51:00.177 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3954. 11:51:00.180 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3955. 11:51:00.180 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3956. 11:51:00.180 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3957. 11:51:00.187 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3958. 11:51:00.188 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3959. 11:51:00.188 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3960. 11:51:00.188 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3961. 11:51:00.188 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3962. 11:51:00.200 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3963. 11:51:00.208 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3964. 11:51:03.514 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3965. 11:51:03.563 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 11676 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3966. 11:51:03.564 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3967. 11:51:03.618 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3968. 11:51:03.618 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3969. 11:51:05.394 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3970. 11:51:05.397 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3971. 11:51:05.480 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 69 ms. Found 0 Redis repository interfaces.
  3972. 11:51:05.648 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3973. 11:51:05.664 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3974. 11:51:06.400 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3975. 11:51:06.400 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2781 ms
  3976. 11:51:08.740 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3977. 11:51:08.750 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3978. 11:51:08.750 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3979. 11:51:08.751 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3980. 11:51:08.752 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3981. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3982. NOT STARTED.
  3983. Currently in standby mode.
  3984. Number of jobs executed: 0
  3985. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3986. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3987. 11:51:08.752 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3988. 11:51:08.752 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3989. 11:51:08.752 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@e3f59c8
  3990. 11:51:10.438 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3991. 11:51:10.444 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3992. 11:51:10.587 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3993. 11:51:10.617 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3994. 11:51:10.617 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3995. 11:51:10.618 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3996. 11:51:10.638 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3997. 11:51:10.647 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3998. 11:51:10.657 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3999. 11:51:10.687 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4000. 11:51:10.739 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4001. 11:51:10.740 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4002. 11:51:10.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4003. 11:51:10.766 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.743 seconds (process running for 8.55)
  4004. 11:51:10.768 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4005. 11:51:10.775 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4006. 11:51:11.101 [restartedMain] INFO p6spy - 2023-08-24 11:51:11 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4007. 11:51:11.105 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5ed6877c
  4008. 11:51:11.116 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4009. 11:51:11.186 [restartedMain] INFO p6spy - 2023-08-24 11:51:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4010. A.job_id,
  4011. A.job_title,
  4012. A.job_desc,
  4013. A.status,
  4014. A.job_type,
  4015. A.job_code,
  4016. A.job_cron,
  4017. A.job_class_id,
  4018. B.job_class,
  4019. A.cycle_title,
  4020. A.cycle_period,
  4021. A.cycle_unit
  4022. FROM job AS A
  4023. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4024. WHERE A.deleted_flag = 0
  4025. AND A.status = 1
  4026. ORDER BY A.job_id ASC
  4027. 11:51:11.206 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4028. 11:51:11.208 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4029. 11:51:11.615 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4030. 11:51:11.616 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4031. 11:51:11.621 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  4032. 11:51:11.633 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 11:51:11 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  4033. 11:52:05.830 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4034. 11:52:05.831 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4035. 11:52:05.841 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4036. 11:52:05.843 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4037. 11:52:05.844 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4038. 11:52:05.844 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4039. 11:52:05.933 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4040. 11:52:05.934 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4041. 11:52:05.934 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4042. 11:52:05.934 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4043. 11:52:05.935 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4044. 11:52:05.955 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4045. 11:52:05.965 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4046. 11:52:46.102 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4047. 11:52:46.157 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 6424 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4048. 11:52:46.157 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4049. 11:52:46.226 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4050. 11:52:46.226 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4051. 11:52:48.092 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4052. 11:52:48.095 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4053. 11:52:48.185 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  4054. 11:52:48.346 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4055. 11:52:48.363 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4056. 11:52:49.104 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4057. 11:52:49.104 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2878 ms
  4058. 11:52:51.449 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4059. 11:52:51.458 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4060. 11:52:51.458 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4061. 11:52:51.459 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4062. 11:52:51.459 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4063. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4064. NOT STARTED.
  4065. Currently in standby mode.
  4066. Number of jobs executed: 0
  4067. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4068. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4069. 11:52:51.459 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4070. 11:52:51.459 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4071. 11:52:51.459 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  4072. 11:52:53.143 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4073. 11:52:53.148 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4074. 11:52:53.293 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4075. 11:52:53.323 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4076. 11:52:53.323 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4077. 11:52:53.324 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4078. 11:52:53.344 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4079. 11:52:53.353 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4080. 11:52:53.364 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4081. 11:52:53.394 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4082. 11:52:53.446 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4083. 11:52:53.448 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4084. 11:52:53.448 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4085. 11:52:53.473 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.904 seconds (process running for 8.794)
  4086. 11:52:53.477 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4087. 11:52:53.485 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4088. 11:52:53.806 [restartedMain] INFO p6spy - 2023-08-24 11:52:53 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  4089. 11:52:53.810 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@37873594
  4090. 11:52:53.820 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4091. 11:52:53.885 [restartedMain] INFO p6spy - 2023-08-24 11:52:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4092. A.job_id,
  4093. A.job_title,
  4094. A.job_desc,
  4095. A.status,
  4096. A.job_type,
  4097. A.job_code,
  4098. A.job_cron,
  4099. A.job_class_id,
  4100. B.job_class,
  4101. A.cycle_title,
  4102. A.cycle_period,
  4103. A.cycle_unit
  4104. FROM job AS A
  4105. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4106. WHERE A.deleted_flag = 0
  4107. AND A.status = 1
  4108. ORDER BY A.job_id ASC
  4109. 11:52:53.908 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4110. 11:52:53.910 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4111. 11:52:54.548 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4112. 11:52:54.548 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4113. 11:52:54.549 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:52:54 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4114. 11:52:54.552 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  4115. 11:52:54.567 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:52:54 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  4116. 11:53:50.614 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4117. 11:53:50.615 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4118. 11:53:50.624 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4119. 11:53:50.626 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4120. 11:53:50.626 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4121. 11:53:50.627 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4122. 11:53:50.650 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4123. 11:53:50.653 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4124. 11:53:50.653 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4125. 11:53:50.653 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4126. 11:53:50.653 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4127. 11:53:50.668 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4128. 11:53:50.672 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4129. 11:53:55.344 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4130. 11:53:55.398 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18976 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4131. 11:53:55.399 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4132. 11:53:55.460 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4133. 11:53:55.460 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4134. 11:53:57.273 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4135. 11:53:57.277 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4136. 11:53:57.363 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  4137. 11:53:57.531 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4138. 11:53:57.548 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4139. 11:53:58.303 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4140. 11:53:58.303 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2842 ms
  4141. 11:54:00.686 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4142. 11:54:00.696 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4143. 11:54:00.696 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4144. 11:54:00.697 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4145. 11:54:00.698 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4146. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4147. NOT STARTED.
  4148. Currently in standby mode.
  4149. Number of jobs executed: 0
  4150. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4151. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4152. 11:54:00.698 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4153. 11:54:00.698 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4154. 11:54:00.698 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6cacb00
  4155. 11:54:02.410 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4156. 11:54:02.416 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4157. 11:54:02.559 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4158. 11:54:02.589 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4159. 11:54:02.590 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4160. 11:54:02.590 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4161. 11:54:02.611 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4162. 11:54:02.621 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4163. 11:54:02.631 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4164. 11:54:02.663 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4165. 11:54:02.717 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4166. 11:54:02.718 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4167. 11:54:02.719 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4168. 11:54:02.743 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.895 seconds (process running for 8.75)
  4169. 11:54:02.746 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4170. 11:54:02.754 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4171. 11:54:03.119 [restartedMain] INFO p6spy - 2023-08-24 11:54:03 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  4172. 11:54:03.124 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@466bc5d8
  4173. 11:54:03.127 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4174. 11:54:03.194 [restartedMain] INFO p6spy - 2023-08-24 11:54:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4175. A.job_id,
  4176. A.job_title,
  4177. A.job_desc,
  4178. A.status,
  4179. A.job_type,
  4180. A.job_code,
  4181. A.job_cron,
  4182. A.job_class_id,
  4183. B.job_class,
  4184. A.cycle_title,
  4185. A.cycle_period,
  4186. A.cycle_unit
  4187. FROM job AS A
  4188. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4189. WHERE A.deleted_flag = 0
  4190. AND A.status = 1
  4191. ORDER BY A.job_id ASC
  4192. 11:54:03.215 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4193. 11:54:03.217 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4194. 11:54:03.769 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:54:03 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4195. 11:54:03.769 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4196. 11:54:03.770 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4197. 11:54:03.774 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  4198. 11:54:03.784 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 11:54:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4199. 11:56:00.154 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4200. 11:56:00.155 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4201. 11:56:00.163 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4202. 11:56:00.165 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4203. 11:56:00.167 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4204. 11:56:00.167 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4205. 11:56:00.176 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4206. 11:56:00.179 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4207. 11:56:00.179 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4208. 11:56:00.179 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4209. 11:56:00.179 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4210. 11:56:00.197 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4211. 11:56:00.211 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4212. 11:56:49.178 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4213. 11:56:49.233 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 11784 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4214. 11:56:49.233 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4215. 11:56:49.305 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4216. 11:56:49.305 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4217. 11:56:51.146 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4218. 11:56:51.150 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4219. 11:56:51.238 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  4220. 11:56:51.410 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4221. 11:56:51.426 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4222. 11:56:52.162 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4223. 11:56:52.162 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2856 ms
  4224. 11:56:54.500 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4225. 11:56:54.510 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4226. 11:56:54.510 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4227. 11:56:54.511 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4228. 11:56:54.512 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4229. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4230. NOT STARTED.
  4231. Currently in standby mode.
  4232. Number of jobs executed: 0
  4233. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4234. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4235. 11:56:54.512 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4236. 11:56:54.512 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4237. 11:56:54.512 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  4238. 11:56:56.185 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4239. 11:56:56.190 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4240. 11:56:56.331 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4241. 11:56:56.363 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4242. 11:56:56.363 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4243. 11:56:56.364 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4244. 11:56:56.385 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4245. 11:56:56.394 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4246. 11:56:56.405 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4247. 11:56:56.435 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4248. 11:56:56.487 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4249. 11:56:56.489 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4250. 11:56:56.489 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4251. 11:56:56.513 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.898 seconds (process running for 8.796)
  4252. 11:56:56.516 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4253. 11:56:56.524 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4254. 11:56:56.845 [restartedMain] INFO p6spy - 2023-08-24 11:56:56 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  4255. 11:56:56.850 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@37873594
  4256. 11:56:56.861 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4257. 11:56:56.935 [restartedMain] INFO p6spy - 2023-08-24 11:56:56 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4258. A.job_id,
  4259. A.job_title,
  4260. A.job_desc,
  4261. A.status,
  4262. A.job_type,
  4263. A.job_code,
  4264. A.job_cron,
  4265. A.job_class_id,
  4266. B.job_class,
  4267. A.cycle_title,
  4268. A.cycle_period,
  4269. A.cycle_unit
  4270. FROM job AS A
  4271. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4272. WHERE A.deleted_flag = 0
  4273. AND A.status = 1
  4274. ORDER BY A.job_id ASC
  4275. 11:56:56.956 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4276. 11:56:56.958 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4277. 11:56:57.525 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4278. 11:56:57.525 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4279. 11:56:57.530 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  4280. 11:56:57.546 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:56:57 | Time Consuming: 24 ms | Connection: statement-0 | SQL: SELECT 1
  4281. 11:56:57.559 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 11:56:57 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4282. 12:00:22.121 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4283. 12:00:22.122 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4284. 12:00:22.131 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4285. 12:00:22.133 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4286. 12:00:22.134 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4287. 12:00:22.134 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4288. 12:00:22.189 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4289. 12:00:22.190 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4290. 12:00:22.191 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4291. 12:00:22.191 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4292. 12:00:22.191 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4293. 12:00:22.204 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4294. 12:00:22.208 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4295. 12:00:26.973 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4296. 12:00:27.022 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 6344 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4297. 12:00:27.022 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4298. 12:00:27.077 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4299. 12:00:27.077 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4300. 12:00:28.867 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4301. 12:00:28.870 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4302. 12:00:28.956 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  4303. 12:00:29.125 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4304. 12:00:29.141 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4305. 12:00:29.888 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4306. 12:00:29.888 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2810 ms
  4307. 12:00:32.302 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4308. 12:00:32.313 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4309. 12:00:32.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4310. 12:00:32.313 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4311. 12:00:32.314 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4312. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4313. NOT STARTED.
  4314. Currently in standby mode.
  4315. Number of jobs executed: 0
  4316. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4317. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4318. 12:00:32.314 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4319. 12:00:32.314 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4320. 12:00:32.314 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  4321. 12:00:33.991 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4322. 12:00:33.997 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4323. 12:00:34.140 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4324. 12:00:34.170 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4325. 12:00:34.170 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4326. 12:00:34.170 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4327. 12:00:34.190 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4328. 12:00:34.199 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4329. 12:00:34.210 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4330. 12:00:34.240 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4331. 12:00:34.291 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4332. 12:00:34.293 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4333. 12:00:34.293 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4334. 12:00:34.318 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.837 seconds (process running for 8.556)
  4335. 12:00:34.320 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4336. 12:00:34.327 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4337. 12:00:34.643 [restartedMain] INFO p6spy - 2023-08-24 12:00:34 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  4338. 12:00:34.648 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@e8ada0
  4339. 12:00:34.658 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4340. 12:00:34.732 [restartedMain] INFO p6spy - 2023-08-24 12:00:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4341. A.job_id,
  4342. A.job_title,
  4343. A.job_desc,
  4344. A.status,
  4345. A.job_type,
  4346. A.job_code,
  4347. A.job_cron,
  4348. A.job_class_id,
  4349. B.job_class,
  4350. A.cycle_title,
  4351. A.cycle_period,
  4352. A.cycle_unit
  4353. FROM job AS A
  4354. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4355. WHERE A.deleted_flag = 0
  4356. AND A.status = 1
  4357. ORDER BY A.job_id ASC
  4358. 12:00:34.752 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4359. 12:00:34.754 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4360. 12:00:35.144 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4361. 12:00:35.145 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4362. 12:00:35.148 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  4363. 12:00:35.170 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 12:00:35 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT 1
  4364. 12:04:40.883 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4365. 12:04:40.885 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4366. 12:04:40.892 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4367. 12:04:40.896 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4368. 12:04:40.897 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4369. 12:04:40.897 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4370. 12:04:40.922 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4371. 12:04:40.924 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4372. 12:04:40.924 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4373. 12:04:40.924 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4374. 12:04:40.924 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4375. 12:04:40.937 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4376. 12:04:40.942 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4377. 12:04:45.739 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4378. 12:04:45.794 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3604 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4379. 12:04:45.795 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4380. 12:04:45.853 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4381. 12:04:45.853 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4382. 12:04:47.665 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4383. 12:04:47.669 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4384. 12:04:47.754 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  4385. 12:04:47.925 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4386. 12:04:47.942 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4387. 12:04:48.736 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4388. 12:04:48.736 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2882 ms
  4389. 12:04:51.076 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4390. 12:04:51.086 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4391. 12:04:51.086 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4392. 12:04:51.087 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4393. 12:04:51.087 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4394. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4395. NOT STARTED.
  4396. Currently in standby mode.
  4397. Number of jobs executed: 0
  4398. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4399. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4400. 12:04:51.087 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4401. 12:04:51.087 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4402. 12:04:51.087 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2b8ccc79
  4403. 12:04:52.781 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4404. 12:04:52.787 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4405. 12:04:52.931 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4406. 12:04:52.965 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4407. 12:04:52.965 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4408. 12:04:52.965 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4409. 12:04:52.985 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4410. 12:04:52.994 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4411. 12:04:53.005 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4412. 12:04:53.036 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4413. 12:04:53.087 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4414. 12:04:53.088 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4415. 12:04:53.088 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4416. 12:04:53.114 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.864 seconds (process running for 8.712)
  4417. 12:04:53.115 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4418. 12:04:53.122 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4419. 12:04:53.441 [restartedMain] INFO p6spy - 2023-08-24 12:04:53 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4420. 12:04:53.446 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@37d1a3a
  4421. 12:04:53.456 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4422. 12:04:53.529 [restartedMain] INFO p6spy - 2023-08-24 12:04:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4423. A.job_id,
  4424. A.job_title,
  4425. A.job_desc,
  4426. A.status,
  4427. A.job_type,
  4428. A.job_code,
  4429. A.job_cron,
  4430. A.job_class_id,
  4431. B.job_class,
  4432. A.cycle_title,
  4433. A.cycle_period,
  4434. A.cycle_unit
  4435. FROM job AS A
  4436. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4437. WHERE A.deleted_flag = 0
  4438. AND A.status = 1
  4439. ORDER BY A.job_id ASC
  4440. 12:04:53.549 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4441. 12:04:53.551 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4442. 12:04:54.200 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 12:04:54 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4443. 12:04:54.202 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4444. 12:04:54.202 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4445. 12:04:54.207 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  4446. 12:04:54.216 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 12:04:54 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  4447. 12:12:02.624 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4448. 12:12:02.626 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4449. 12:12:02.629 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4450. 12:12:02.632 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4451. 12:12:02.632 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4452. 12:12:02.632 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4453. 12:12:02.641 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4454. 12:12:02.642 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4455. 12:12:02.642 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4456. 12:12:02.642 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4457. 12:12:02.643 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4458. 12:12:02.659 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4459. 12:12:02.663 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4460. 12:12:06.929 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4461. 12:12:06.976 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 2012 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4462. 12:12:06.977 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4463. 12:12:07.032 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4464. 12:12:07.033 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4465. 12:12:08.827 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4466. 12:12:08.830 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4467. 12:12:08.918 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  4468. 12:12:09.089 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4469. 12:12:09.105 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4470. 12:12:09.893 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4471. 12:12:09.893 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2860 ms
  4472. 12:12:12.241 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4473. 12:12:12.250 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4474. 12:12:12.250 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4475. 12:12:12.251 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4476. 12:12:12.252 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4477. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4478. NOT STARTED.
  4479. Currently in standby mode.
  4480. Number of jobs executed: 0
  4481. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4482. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4483. 12:12:12.252 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4484. 12:12:12.252 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4485. 12:12:12.252 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5b07b6ac
  4486. 12:12:13.936 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4487. 12:12:13.942 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4488. 12:12:14.085 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4489. 12:12:14.114 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4490. 12:12:14.114 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4491. 12:12:14.115 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4492. 12:12:14.134 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4493. 12:12:14.143 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4494. 12:12:14.153 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4495. 12:12:14.183 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4496. 12:12:14.234 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4497. 12:12:14.235 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4498. 12:12:14.235 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4499. 12:12:14.261 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.814 seconds (process running for 8.606)
  4500. 12:12:14.264 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4501. 12:12:14.272 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4502. 12:12:14.611 [restartedMain] INFO p6spy - 2023-08-24 12:12:14 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4503. 12:12:14.616 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3b0e649a
  4504. 12:12:14.626 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4505. 12:12:14.699 [restartedMain] INFO p6spy - 2023-08-24 12:12:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4506. A.job_id,
  4507. A.job_title,
  4508. A.job_desc,
  4509. A.status,
  4510. A.job_type,
  4511. A.job_code,
  4512. A.job_cron,
  4513. A.job_class_id,
  4514. B.job_class,
  4515. A.cycle_title,
  4516. A.cycle_period,
  4517. A.cycle_unit
  4518. FROM job AS A
  4519. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4520. WHERE A.deleted_flag = 0
  4521. AND A.status = 1
  4522. ORDER BY A.job_id ASC
  4523. 12:12:14.720 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4524. 12:12:14.722 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4525. 12:12:15.056 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4526. 12:12:15.056 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4527. 12:12:15.060 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  4528. 12:12:15.066 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 12:12:15 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4529. 12:15:57.431 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4530. 12:15:57.433 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4531. 12:15:57.445 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4532. 12:15:57.448 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4533. 12:15:57.449 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4534. 12:15:57.450 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4535. 12:15:57.457 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4536. 12:15:57.459 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4537. 12:15:57.459 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4538. 12:15:57.459 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4539. 12:15:57.459 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4540. 12:15:57.478 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4541. 12:15:57.482 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4542. 12:16:00.837 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4543. 12:16:00.887 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4544 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4544. 12:16:00.888 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4545. 12:16:00.941 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4546. 12:16:00.942 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4547. 12:16:02.814 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4548. 12:16:02.817 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4549. 12:16:02.908 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  4550. 12:16:03.082 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4551. 12:16:03.098 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4552. 12:16:03.838 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4553. 12:16:03.838 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2896 ms
  4554. 12:16:06.188 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4555. 12:16:06.198 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4556. 12:16:06.199 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4557. 12:16:06.199 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4558. 12:16:06.200 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4559. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4560. NOT STARTED.
  4561. Currently in standby mode.
  4562. Number of jobs executed: 0
  4563. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4564. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4565. 12:16:06.200 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4566. 12:16:06.200 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4567. 12:16:06.200 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@285fe226
  4568. 12:16:07.868 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4569. 12:16:07.874 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4570. 12:16:08.016 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4571. 12:16:08.046 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4572. 12:16:08.046 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4573. 12:16:08.046 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4574. 12:16:08.067 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4575. 12:16:08.076 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4576. 12:16:08.086 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4577. 12:16:08.114 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4578. 12:16:08.164 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4579. 12:16:08.165 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4580. 12:16:08.165 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4581. 12:16:08.190 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.013 seconds (process running for 8.929)
  4582. 12:16:08.192 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4583. 12:16:08.198 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4584. 12:16:08.517 [restartedMain] INFO p6spy - 2023-08-24 12:16:08 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4585. 12:16:08.523 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@7fd1b99b
  4586. 12:16:08.533 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4587. 12:16:08.602 [restartedMain] INFO p6spy - 2023-08-24 12:16:08 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4588. A.job_id,
  4589. A.job_title,
  4590. A.job_desc,
  4591. A.status,
  4592. A.job_type,
  4593. A.job_code,
  4594. A.job_cron,
  4595. A.job_class_id,
  4596. B.job_class,
  4597. A.cycle_title,
  4598. A.cycle_period,
  4599. A.cycle_unit
  4600. FROM job AS A
  4601. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4602. WHERE A.deleted_flag = 0
  4603. AND A.status = 1
  4604. ORDER BY A.job_id ASC
  4605. 12:16:08.623 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4606. 12:16:08.625 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4607. 12:16:09.306 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4608. 12:16:09.307 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4609. 12:16:09.308 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 12:16:09 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4610. 12:16:09.310 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  4611. 12:16:09.320 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 12:16:09 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  4612. 12:16:38.703 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:38 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  4613. 12:16:38.720 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:38 | Time Consuming: 16 ms | Connection: statement-0 | SQL: UPDATE goaf_sensor
  4614. SET goaf_sensor_name = 'jacinto.boyle',
  4615. modbus_id = 3,
  4616. sensor_baudrate = 138,
  4617. goaf_sensor_ip = '24.231.48.31',
  4618. goaf_dev_name = 'jacinto.boyle',
  4619. goaf_dev_typename = '空压机',
  4620. goaf_sensor_location = 'za58u9',
  4621. goaf_check_time_interval = 20,
  4622. goaf_install_time = '2023-08-23T00:08',
  4623. thv_acc_x = 3000,
  4624. thv_acc_y = 3000,
  4625. thv_acc_z = 3000,
  4626. thv_vel_x = 3000,
  4627. thv_vel_y = 3000,
  4628. thv_vel_z = 3000,
  4629. thv_dis_x = 3000,
  4630. thv_dis_y = 3000,
  4631. thv_dis_z = 3000,
  4632. thv_temperature = 50
  4633. WHERE goaf_sensor_id = 442135
  4634. 12:16:38.868 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4635. 12:16:38.875 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4636. FROM goaf_sensor
  4637. where oc_id = 406283
  4638. LIMIT 10
  4639. 12:16:51.877 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4640. 12:16:51.889 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:51 | Time Consuming: 11 ms | Connection: statement-0 | SQL: UPDATE goaf_sensor
  4641. SET goaf_sensor_name = 'jacintoqqq',
  4642. modbus_id = 1,
  4643. sensor_baudrate = 9600,
  4644. goaf_sensor_ip = '192.168.3.12',
  4645. goaf_dev_name = '12',
  4646. goaf_dev_typename = '空压机',
  4647. goaf_sensor_location = '12',
  4648. goaf_check_time_interval = 20,
  4649. goaf_install_time = '2023-08-23T16:43:40',
  4650. thv_acc_x = 3000,
  4651. thv_acc_y = 3000,
  4652. thv_acc_z = 3000,
  4653. thv_vel_x = 3000,
  4654. thv_vel_y = 3000,
  4655. thv_vel_z = 3000,
  4656. thv_dis_x = 3000,
  4657. thv_dis_y = 3000,
  4658. thv_dis_z = 3000,
  4659. thv_temperature = 50
  4660. WHERE goaf_sensor_id = 442139
  4661. 12:16:51.923 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4662. 12:16:51.928 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:16:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4663. FROM goaf_sensor
  4664. where oc_id = 406283
  4665. LIMIT 10
  4666. 12:27:24.781 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4667. 12:27:24.782 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4668. 12:27:24.785 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4669. 12:27:24.788 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4670. 12:27:24.788 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4671. 12:27:24.788 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4672. 12:27:24.795 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4673. 12:27:24.797 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4674. 12:27:24.798 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4675. 12:27:24.798 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4676. 12:27:24.798 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4677. 12:27:24.813 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4678. 12:27:24.816 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4679. 12:27:33.630 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4680. 12:27:33.693 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 5912 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4681. 12:27:33.694 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4682. 12:27:33.774 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4683. 12:27:33.775 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4684. 12:27:35.597 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4685. 12:27:35.600 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4686. 12:27:35.687 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  4687. 12:27:35.841 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4688. 12:27:35.857 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4689. 12:27:36.557 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4690. 12:27:36.557 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2782 ms
  4691. 12:27:38.764 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4692. 12:27:38.774 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4693. 12:27:38.774 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4694. 12:27:38.775 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4695. 12:27:38.775 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4696. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4697. NOT STARTED.
  4698. Currently in standby mode.
  4699. Number of jobs executed: 0
  4700. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4701. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4702. 12:27:38.775 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4703. 12:27:38.775 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4704. 12:27:38.776 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@47f63f67
  4705. 12:27:40.313 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4706. 12:27:40.320 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4707. 12:27:40.508 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4708. 12:27:40.542 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4709. 12:27:40.543 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4710. 12:27:40.543 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4711. 12:27:40.567 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4712. 12:27:40.576 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4713. 12:27:40.584 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4714. 12:27:40.611 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4715. 12:27:40.664 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4716. 12:27:40.666 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4717. 12:27:40.666 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4718. 12:27:40.690 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.693 seconds (process running for 8.594)
  4719. 12:27:40.693 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4720. 12:27:40.701 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4721. 12:27:41.055 [restartedMain] INFO p6spy - 2023-08-24 12:27:41 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  4722. 12:27:41.059 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@610e4454
  4723. 12:27:41.068 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4724. 12:27:41.138 [restartedMain] INFO p6spy - 2023-08-24 12:27:41 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4725. A.job_id,
  4726. A.job_title,
  4727. A.job_desc,
  4728. A.status,
  4729. A.job_type,
  4730. A.job_code,
  4731. A.job_cron,
  4732. A.job_class_id,
  4733. B.job_class,
  4734. A.cycle_title,
  4735. A.cycle_period,
  4736. A.cycle_unit
  4737. FROM job AS A
  4738. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4739. WHERE A.deleted_flag = 0
  4740. AND A.status = 1
  4741. ORDER BY A.job_id ASC
  4742. 12:27:41.159 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4743. 12:27:41.161 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4744. 12:27:41.453 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:27:41 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  4745. FROM goaf_sensor
  4746. WHERE goaf_sensor_ip = '192.168.3.12'
  4747. 12:27:41.494 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4748. 12:27:41.495 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4749. 12:27:41.498 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  4750. 12:27:41.503 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 12:27:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4751. 12:27:49.072 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4752. 12:27:49.082 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  4753. client_id,
  4754. client_title,
  4755. client_app_id,
  4756. client_app_key,
  4757. client_app_secret,
  4758. client_desc,
  4759. status,
  4760. is_fixed
  4761. FROM client
  4762. WHERE deleted_flag = 0
  4763. AND client_app_id = '10001'
  4764. AND client_app_key = '82a8bf439373e305'
  4765. 12:27:49.097 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4766. A.client_id,
  4767. A.role_id,
  4768. A.permit_id,
  4769. A.permit_title,
  4770. A.permit_code,
  4771. A.permit_entry,
  4772. A.permit_desc,
  4773. A.permit_type,
  4774. A.parent_id,
  4775. A.root_id,
  4776. A.sort_no,
  4777. A.is_home
  4778. FROM s_role_permit AS A
  4779. WHERE 1 = 1
  4780. AND A.client_id = 2
  4781. AND A.role_id = 1
  4782. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4783. 12:27:49.248 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  4784. 12:27:49.255 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT count(*)
  4785. FROM msg AS M
  4786. WHERE M.oc_id = 1
  4787. AND (
  4788. EXISTS (
  4789. SELECT 1 FROM msg_to TT
  4790. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  4791. ) OR
  4792. EXISTS (
  4793. SELECT 1 FROM msg_cc CC
  4794. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  4795. )
  4796. )
  4797. 12:27:49.349 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  4798. 12:27:49.359 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:49 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  4799. A.job_id,
  4800. A.job_title,
  4801. A.job_desc,
  4802. A.status,
  4803. A.job_type,
  4804. A.job_code,
  4805. A.job_cron,
  4806. A.job_class_id,
  4807. B.job_class,
  4808. A.cycle_title,
  4809. A.cycle_period,
  4810. A.cycle_unit
  4811. FROM job AS A
  4812. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4813. WHERE A.deleted_flag = 0
  4814. ORDER BY A.job_id ASC
  4815. LIMIT 10
  4816. 12:27:56.445 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:27:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4817. 12:27:56.453 [XNIO-1 task-2] INFO p6spy - 2023-08-24 12:27:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  4818. job_class_id,
  4819. job_class_title,
  4820. job_class_desc,
  4821. job_class
  4822. FROM job_class
  4823. WHERE deleted_flag = 0
  4824. ORDER BY job_class_id ASC
  4825. 12:27:56.455 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:56 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  4826. 12:27:56.464 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:27:56 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  4827. A.job_id,
  4828. A.job_title,
  4829. A.job_desc,
  4830. A.status,
  4831. A.job_type,
  4832. A.job_code,
  4833. A.job_cron,
  4834. A.job_class_id,
  4835. B.job_class,
  4836. A.cycle_title,
  4837. A.cycle_period,
  4838. A.cycle_unit
  4839. FROM job AS A
  4840. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4841. WHERE A.job_id = 439094
  4842. 12:28:04.824 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:28:04 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  4843. 12:28:04.845 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:28:04 | Time Consuming: 12 ms | Connection: statement-1 | SQL: UPDATE job
  4844. SET job_title = '巡检天任务',
  4845. job_desc = '天任务',
  4846. status = 1,
  4847. job_type = 1,
  4848. job_code = 'Cron任务',
  4849. job_cron = '0 29 12 * * ?',
  4850. job_class_id = 2,
  4851. cycle_title = '天',
  4852. cycle_period = 0,
  4853. cycle_unit = 0,
  4854. updated_by = 1,
  4855. updated_at = '2023-08-24T12:28:04.828261'
  4856. WHERE job_id = 439094
  4857. 12:28:04.890 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:28:04 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  4858. 12:28:04.898 [XNIO-1 task-3] INFO p6spy - 2023-08-24 12:28:04 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  4859. A.job_id,
  4860. A.job_title,
  4861. A.job_desc,
  4862. A.status,
  4863. A.job_type,
  4864. A.job_code,
  4865. A.job_cron,
  4866. A.job_class_id,
  4867. B.job_class,
  4868. A.cycle_title,
  4869. A.cycle_period,
  4870. A.cycle_unit
  4871. FROM job AS A
  4872. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4873. WHERE A.deleted_flag = 0
  4874. ORDER BY A.job_id ASC
  4875. LIMIT 10
  4876. 12:28:10.218 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4877. 12:28:10.219 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4878. 12:28:10.221 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4879. 12:28:10.223 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4880. 12:28:10.223 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4881. 12:28:10.223 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4882. 12:28:10.230 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  4883. 12:28:10.231 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4884. 12:28:10.231 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4885. 12:28:10.231 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4886. 12:28:10.231 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4887. 12:28:10.260 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4888. 12:28:10.264 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4889. 12:28:13.613 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4890. 12:28:13.662 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 12328 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4891. 12:28:13.662 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4892. 12:28:13.714 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4893. 12:28:13.714 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4894. 12:28:15.489 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4895. 12:28:15.492 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4896. 12:28:15.580 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  4897. 12:28:15.745 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4898. 12:28:15.762 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4899. 12:28:16.500 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4900. 12:28:16.501 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2785 ms
  4901. 12:28:18.840 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4902. 12:28:18.850 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4903. 12:28:18.851 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4904. 12:28:18.851 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4905. 12:28:18.852 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4906. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4907. NOT STARTED.
  4908. Currently in standby mode.
  4909. Number of jobs executed: 0
  4910. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4911. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4912. 12:28:18.852 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4913. 12:28:18.852 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4914. 12:28:18.852 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@eef2823
  4915. 12:28:20.530 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4916. 12:28:20.536 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4917. 12:28:20.680 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4918. 12:28:20.710 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4919. 12:28:20.710 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4920. 12:28:20.711 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4921. 12:28:20.731 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4922. 12:28:20.740 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4923. 12:28:20.750 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4924. 12:28:20.781 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4925. 12:28:20.831 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4926. 12:28:20.832 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4927. 12:28:20.832 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4928. 12:28:20.857 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.733 seconds (process running for 8.594)
  4929. 12:28:20.859 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4930. 12:28:20.866 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4931. 12:28:21.198 [restartedMain] INFO p6spy - 2023-08-24 12:28:21 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  4932. 12:28:21.203 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@135b444d
  4933. 12:28:21.216 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4934. 12:28:21.294 [restartedMain] INFO p6spy - 2023-08-24 12:28:21 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4935. A.job_id,
  4936. A.job_title,
  4937. A.job_desc,
  4938. A.status,
  4939. A.job_type,
  4940. A.job_code,
  4941. A.job_cron,
  4942. A.job_class_id,
  4943. B.job_class,
  4944. A.cycle_title,
  4945. A.cycle_period,
  4946. A.cycle_unit
  4947. FROM job AS A
  4948. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4949. WHERE A.deleted_flag = 0
  4950. AND A.status = 1
  4951. ORDER BY A.job_id ASC
  4952. 12:28:21.318 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4953. 12:28:21.320 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4954. 12:28:21.588 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:28:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4955. FROM goaf_sensor
  4956. WHERE goaf_sensor_ip = '192.168.3.12'
  4957. 12:28:22.140 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 12:28:22 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  4958. 12:28:22.142 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4959. 12:28:22.142 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4960. 12:28:22.148 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  4961. 12:28:22.158 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 12:28:22 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  4962. 12:29:00.017 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  4963. 12:29:00.022 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 12:29:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4964. 12:29:00.036 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  4965. 12:29:16.908 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:29:16 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  4966. 12:29:16.913 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:29:16 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4967. FROM goaf_sensor
  4968. WHERE goaf_sensor_ip = '192.168.3.12'
  4969. 12:29:16.923 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:29:16 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  4970. 12:29:16.927 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:29:16 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  4971. 12:29:16.953 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 12:29:16 | Time Consuming: 17 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  4972. ( goaf_data_id,
  4973. oc_id,
  4974. goaf_sensor_id,
  4975. goaf_sensor_name,
  4976. frequency_x,
  4977. frequency_y,
  4978. frequency_z,
  4979. acc_x,
  4980. acc_y,
  4981. acc_z,
  4982. vel_x,
  4983. vel_y,
  4984. vel_z,
  4985. dis_x,
  4986. dis_y,
  4987. dis_z,
  4988. sensor_temperature,
  4989. ang_x,
  4990. ang_y,
  4991. ang_z,
  4992. f_alarm_acc_x,
  4993. f_alarm_acc_y,
  4994. f_alarm_acc_z,
  4995. f_alarm_vel_x,
  4996. f_alarm_vel_y,
  4997. f_alarm_vel_z,
  4998. f_alarm_dis_x,
  4999. f_alarm_dis_y,
  5000. f_alarm_dis_z,
  5001. f_alarm_temperature,
  5002. td_wave_value_x,
  5003. td_wave_value_y,
  5004. td_wave_value_z,
  5005. goaf_datareport_time )
  5006. values ( 442164,
  5007. 406283,
  5008. 442139,
  5009. 'jacintoqqq',
  5010. 0,
  5011. 0,
  5012. 0,
  5013. 1,
  5014. 1,
  5015. 1,
  5016. 7,
  5017. 5,
  5018. 3,
  5019. 1,
  5020. 1,
  5021. 0,
  5022. 351,
  5023. -5936,
  5024. 3053,
  5025. -217,
  5026. 0,
  5027. 0,
  5028. 0,
  5029. 0,
  5030. 0,
  5031. 0,
  5032. 0,
  5033. 0,
  5034. 0,
  5035. 0,
  5036. '-843,-839,-848,-846,-841,-848,-846,-843,-839,-841,-848,-849,-840,-837,-837,-846,-850,-835,-838,-843,-835,-841,-848,-835,-833,-842,-847,-838,-838,-841,-838,-847,-848,-845,-842,-839,-846,-843,-824,-838,-841,-835,-837,-837,-854,-850,-839,-842,-844,-844,-848,-842,-844,-846,-836,-844,-835,-835,-846,-842,-836,-836,-842,-838,-835,-836,-843,-846,-846,-843,-836,-841,-843,-843,-842,-839,-840,-844,-836,-833,-842,-839,-835,-831,-839,-841,-846,-843,-839,-844,-840,-847,-842,-839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  5037. '491,485,503,503,495,493,492,498,496,493,494,492,495,494,494,504,506,508,497,494,493,489,502,503,495,490,501,503,486,496,490,487,502,486,483,494,494,496,491,493,500,495,494,493,497,499,494,507,502,499,500,496,507,497,479,495,507,492,486,501,499,494,495,492,489,491,500,501,500,502,501,499,502,499,493,496,494,492,495,494,500,503,504,505,505,505,496,494,501,504,499,495,500,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  5038. '-37,-36,-38,-34,-36,-32,-30,-33,-37,-32,-28,-34,-47,-39,-34,-37,-32,-33,-37,-41,-45,-40,-28,-32,-38,-43,-42,-33,-39,-42,-33,-30,-34,-30,-33,-37,-30,-32,-32,-42,-39,-29,-40,-43,-34,-35,-48,-44,-34,-37,-38,-29,-35,-36,-39,-43,-38,-36,-42,-42,-33,-39,-40,-44,-52,-46,-41,-36,-33,-39,-30,-34,-45,-34,-40,-45,-37,-37,-35,-35,-46,-43,-38,-42,-37,-38,-41,-33,-39,-41,-40,-40,-34,-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  5039. '2023-08-24T12:29:16.928080800' )
  5040. 12:30:32.342 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 12:30:32 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5041. 12:30:32.349 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 12:30:32 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  5042. FROM goaf_sensor
  5043. WHERE goaf_sensor_ip = '192.168.3.12'
  5044. 12:31:47.817 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 12:31:47 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5045. 12:31:47.823 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 12:31:47 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5046. FROM goaf_sensor
  5047. WHERE goaf_sensor_ip = '192.168.3.12'
  5048. 12:33:03.282 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 12:33:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5049. 12:33:03.289 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 12:33:03 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5050. FROM goaf_sensor
  5051. WHERE goaf_sensor_ip = '192.168.3.12'
  5052. 12:34:18.708 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 12:34:18 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5053. 12:34:18.712 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 12:34:18 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5054. FROM goaf_sensor
  5055. WHERE goaf_sensor_ip = '192.168.3.12'
  5056. 12:35:34.228 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 12:35:34 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5057. 12:35:34.235 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 12:35:34 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  5058. FROM goaf_sensor
  5059. WHERE goaf_sensor_ip = '192.168.3.12'
  5060. 12:36:49.707 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 12:36:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5061. 12:36:49.713 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 12:36:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  5062. FROM goaf_sensor
  5063. WHERE goaf_sensor_ip = '192.168.3.12'
  5064. 12:38:05.164 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 12:38:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5065. 12:38:05.168 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 12:38:05 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  5066. FROM goaf_sensor
  5067. WHERE goaf_sensor_ip = '192.168.3.12'
  5068. 12:39:20.640 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-24 12:39:20 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5069. 12:39:20.647 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-24 12:39:20 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  5070. FROM goaf_sensor
  5071. WHERE goaf_sensor_ip = '192.168.3.12'
  5072. 12:40:36.065 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-24 12:40:36 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5073. 12:40:36.072 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-24 12:40:36 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  5074. FROM goaf_sensor
  5075. WHERE goaf_sensor_ip = '192.168.3.12'
  5076. 12:41:51.497 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-24 12:41:51 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5077. 12:41:51.505 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-24 12:41:51 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT *
  5078. FROM goaf_sensor
  5079. WHERE goaf_sensor_ip = '192.168.3.12'
  5080. 12:43:06.948 [nioEventLoopGroup-5-12] INFO p6spy - 2023-08-24 12:43:06 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5081. 12:43:06.952 [nioEventLoopGroup-5-12] INFO p6spy - 2023-08-24 12:43:06 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  5082. FROM goaf_sensor
  5083. WHERE goaf_sensor_ip = '192.168.3.12'
  5084. 12:44:22.377 [nioEventLoopGroup-5-13] INFO p6spy - 2023-08-24 12:44:22 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5085. 12:44:22.386 [nioEventLoopGroup-5-13] INFO p6spy - 2023-08-24 12:44:22 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT *
  5086. FROM goaf_sensor
  5087. WHERE goaf_sensor_ip = '192.168.3.12'
  5088. 12:45:37.890 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 12:45:37 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  5089. 12:45:37.897 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 12:45:37 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  5090. FROM goaf_sensor
  5091. WHERE goaf_sensor_ip = '192.168.3.12'
  5092. 12:46:53.460 [nioEventLoopGroup-5-15] INFO p6spy - 2023-08-24 12:46:53 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5093. 12:46:53.468 [nioEventLoopGroup-5-15] INFO p6spy - 2023-08-24 12:46:53 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  5094. FROM goaf_sensor
  5095. WHERE goaf_sensor_ip = '192.168.3.12'
  5096. 12:48:08.937 [nioEventLoopGroup-5-16] INFO p6spy - 2023-08-24 12:48:08 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT 1
  5097. 12:48:08.942 [nioEventLoopGroup-5-16] INFO p6spy - 2023-08-24 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5098. FROM goaf_sensor
  5099. WHERE goaf_sensor_ip = '192.168.3.12'
  5100. 12:49:24.363 [nioEventLoopGroup-5-17] INFO p6spy - 2023-08-24 12:49:24 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  5101. 12:49:24.370 [nioEventLoopGroup-5-17] INFO p6spy - 2023-08-24 12:49:24 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  5102. FROM goaf_sensor
  5103. WHERE goaf_sensor_ip = '192.168.3.12'
  5104. 12:50:39.792 [nioEventLoopGroup-5-18] INFO p6spy - 2023-08-24 12:50:39 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  5105. 12:50:39.797 [nioEventLoopGroup-5-18] INFO p6spy - 2023-08-24 12:50:39 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5106. FROM goaf_sensor
  5107. WHERE goaf_sensor_ip = '192.168.3.12'
  5108. 12:51:55.215 [nioEventLoopGroup-5-19] INFO p6spy - 2023-08-24 12:51:55 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  5109. 12:51:55.222 [nioEventLoopGroup-5-19] INFO p6spy - 2023-08-24 12:51:55 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  5110. FROM goaf_sensor
  5111. WHERE goaf_sensor_ip = '192.168.3.12'
  5112. 12:53:10.713 [nioEventLoopGroup-5-20] INFO p6spy - 2023-08-24 12:53:10 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5113. 12:53:10.718 [nioEventLoopGroup-5-20] INFO p6spy - 2023-08-24 12:53:10 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  5114. FROM goaf_sensor
  5115. WHERE goaf_sensor_ip = '192.168.3.12'
  5116. 12:54:26.136 [nioEventLoopGroup-5-21] INFO p6spy - 2023-08-24 12:54:26 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5117. 12:54:26.142 [nioEventLoopGroup-5-21] INFO p6spy - 2023-08-24 12:54:26 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  5118. FROM goaf_sensor
  5119. WHERE goaf_sensor_ip = '192.168.3.12'
  5120. 12:55:41.653 [nioEventLoopGroup-5-22] INFO p6spy - 2023-08-24 12:55:41 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5121. 12:55:41.659 [nioEventLoopGroup-5-22] INFO p6spy - 2023-08-24 12:55:41 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  5122. FROM goaf_sensor
  5123. WHERE goaf_sensor_ip = '192.168.3.12'
  5124. 12:56:57.119 [nioEventLoopGroup-5-23] INFO p6spy - 2023-08-24 12:56:57 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5125. 12:56:57.123 [nioEventLoopGroup-5-23] INFO p6spy - 2023-08-24 12:56:57 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  5126. FROM goaf_sensor
  5127. WHERE goaf_sensor_ip = '192.168.3.12'
  5128. 12:58:12.600 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-24 12:58:12 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5129. 12:58:12.605 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-24 12:58:12 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5130. FROM goaf_sensor
  5131. WHERE goaf_sensor_ip = '192.168.3.12'
  5132. 12:59:28.067 [nioEventLoopGroup-5-25] INFO p6spy - 2023-08-24 12:59:28 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5133. 12:59:28.072 [nioEventLoopGroup-5-25] INFO p6spy - 2023-08-24 12:59:28 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  5134. FROM goaf_sensor
  5135. WHERE goaf_sensor_ip = '192.168.3.12'
  5136. 13:00:43.535 [nioEventLoopGroup-5-26] INFO p6spy - 2023-08-24 13:00:43 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5137. 13:00:43.541 [nioEventLoopGroup-5-26] INFO p6spy - 2023-08-24 13:00:43 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  5138. FROM goaf_sensor
  5139. WHERE goaf_sensor_ip = '192.168.3.12'
  5140. 13:01:59.007 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-24 13:01:59 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5141. 13:01:59.012 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-24 13:01:59 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT *
  5142. FROM goaf_sensor
  5143. WHERE goaf_sensor_ip = '192.168.3.12'
  5144. 13:03:14.479 [nioEventLoopGroup-5-28] INFO p6spy - 2023-08-24 13:03:14 | Time Consuming: 6 ms | Connection: statement-20 | SQL: SELECT 1
  5145. 13:03:14.484 [nioEventLoopGroup-5-28] INFO p6spy - 2023-08-24 13:03:14 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5146. FROM goaf_sensor
  5147. WHERE goaf_sensor_ip = '192.168.3.12'
  5148. 13:04:29.955 [nioEventLoopGroup-5-29] INFO p6spy - 2023-08-24 13:04:29 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5149. 13:04:29.960 [nioEventLoopGroup-5-29] INFO p6spy - 2023-08-24 13:04:29 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5150. FROM goaf_sensor
  5151. WHERE goaf_sensor_ip = '192.168.3.12'
  5152. 13:05:45.627 [nioEventLoopGroup-5-30] INFO p6spy - 2023-08-24 13:05:45 | Time Consuming: 7 ms | Connection: statement-20 | SQL: SELECT 1
  5153. 13:05:45.632 [nioEventLoopGroup-5-30] INFO p6spy - 2023-08-24 13:05:45 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5154. FROM goaf_sensor
  5155. WHERE goaf_sensor_ip = '192.168.3.12'
  5156. 13:07:01.091 [nioEventLoopGroup-5-31] INFO p6spy - 2023-08-24 13:07:01 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT 1
  5157. 13:07:01.097 [nioEventLoopGroup-5-31] INFO p6spy - 2023-08-24 13:07:01 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT *
  5158. FROM goaf_sensor
  5159. WHERE goaf_sensor_ip = '192.168.3.12'
  5160. 13:08:16.570 [nioEventLoopGroup-5-32] INFO p6spy - 2023-08-24 13:08:16 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT 1
  5161. 13:08:16.576 [nioEventLoopGroup-5-32] INFO p6spy - 2023-08-24 13:08:16 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5162. FROM goaf_sensor
  5163. WHERE goaf_sensor_ip = '192.168.3.12'
  5164. 13:09:37.035 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:09:37 | Time Consuming: 5009 ms | Connection: statement-24 | SQL: SELECT 1
  5165. 13:09:37.041 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:09:37 | Time Consuming: 5 ms | Connection: statement-25 | SQL: SELECT 1
  5166. 13:09:37.045 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:09:37 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  5167. FROM goaf_sensor
  5168. WHERE goaf_sensor_ip = '192.168.3.12'
  5169. 13:10:52.526 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 13:10:52 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5170. 13:10:52.531 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 13:10:52 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  5171. FROM goaf_sensor
  5172. WHERE goaf_sensor_ip = '192.168.3.12'
  5173. 13:12:07.991 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 13:12:07 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5174. 13:12:07.996 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 13:12:07 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  5175. FROM goaf_sensor
  5176. WHERE goaf_sensor_ip = '192.168.3.12'
  5177. 13:13:23.460 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 13:13:23 | Time Consuming: 6 ms | Connection: statement-25 | SQL: SELECT 1
  5178. 13:13:23.467 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 13:13:23 | Time Consuming: 5 ms | Connection: statement-25 | SQL: SELECT *
  5179. FROM goaf_sensor
  5180. WHERE goaf_sensor_ip = '192.168.3.12'
  5181. 13:14:38.935 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 13:14:38 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5182. 13:14:38.940 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 13:14:38 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  5183. FROM goaf_sensor
  5184. WHERE goaf_sensor_ip = '192.168.3.12'
  5185. 13:14:47.569 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5186. 13:14:47.571 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5187. 13:14:47.577 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5188. 13:14:47.579 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5189. 13:14:47.579 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5190. 13:14:47.579 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5191. 13:14:47.587 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5192. 13:14:47.588 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5193. 13:14:47.588 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5194. 13:14:47.588 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5195. 13:14:47.588 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5196. 13:14:47.601 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5197. 13:14:47.603 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5198. 13:37:41.315 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5199. 13:37:41.360 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14132 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5200. 13:37:41.361 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5201. 13:37:41.412 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5202. 13:37:41.412 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5203. 13:37:43.129 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5204. 13:37:43.132 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5205. 13:37:43.217 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 0 Redis repository interfaces.
  5206. 13:37:43.370 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5207. 13:37:43.386 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5208. 13:37:44.076 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5209. 13:37:44.076 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2664 ms
  5210. 13:37:46.303 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5211. 13:37:46.312 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5212. 13:37:46.312 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5213. 13:37:46.313 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5214. 13:37:46.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5215. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5216. NOT STARTED.
  5217. Currently in standby mode.
  5218. Number of jobs executed: 0
  5219. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5220. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5221. 13:37:46.313 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5222. 13:37:46.313 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5223. 13:37:46.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7e1881ba
  5224. 13:37:47.834 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5225. 13:37:47.839 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5226. 13:37:47.970 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5227. 13:37:47.995 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5228. 13:37:47.995 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5229. 13:37:47.996 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5230. 13:37:48.014 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5231. 13:37:48.022 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5232. 13:37:48.030 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5233. 13:37:48.056 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5234. 13:37:48.108 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5235. 13:37:48.109 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5236. 13:37:48.110 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5237. 13:37:48.136 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.269 seconds (process running for 7.927)
  5238. 13:37:48.139 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5239. 13:37:48.146 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5240. 13:37:48.463 [restartedMain] INFO p6spy - 2023-08-24 13:37:48 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  5241. 13:37:48.471 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@14c6ae22
  5242. 13:37:48.480 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5243. 13:37:48.544 [restartedMain] INFO p6spy - 2023-08-24 13:37:48 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  5244. A.job_id,
  5245. A.job_title,
  5246. A.job_desc,
  5247. A.status,
  5248. A.job_type,
  5249. A.job_code,
  5250. A.job_cron,
  5251. A.job_class_id,
  5252. B.job_class,
  5253. A.cycle_title,
  5254. A.cycle_period,
  5255. A.cycle_unit
  5256. FROM job AS A
  5257. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5258. WHERE A.deleted_flag = 0
  5259. AND A.status = 1
  5260. ORDER BY A.job_id ASC
  5261. 13:37:48.566 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5262. 13:37:48.567 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5263. 13:37:49.320 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5264. 13:37:49.321 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5265. 13:37:49.323 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 13:37:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5266. 13:37:49.325 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  5267. 13:37:49.335 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 13:37:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5268. 13:38:08.980 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5269. 13:38:08.981 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5270. 13:38:08.990 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5271. 13:38:08.992 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5272. 13:38:08.992 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5273. 13:38:08.992 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5274. 13:38:09.000 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5275. 13:38:09.002 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5276. 13:38:09.002 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5277. 13:38:09.003 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5278. 13:38:09.003 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5279. 13:38:09.077 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5280. 13:38:09.081 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5281. 13:38:13.861 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5282. 13:38:13.907 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3092 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5283. 13:38:13.907 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5284. 13:38:13.960 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5285. 13:38:13.960 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5286. 13:38:15.660 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5287. 13:38:15.664 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5288. 13:38:15.752 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  5289. 13:38:15.909 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5290. 13:38:15.924 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5291. 13:38:16.623 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5292. 13:38:16.624 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2662 ms
  5293. 13:38:18.819 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5294. 13:38:18.828 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5295. 13:38:18.828 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5296. 13:38:18.829 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5297. 13:38:18.829 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5298. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5299. NOT STARTED.
  5300. Currently in standby mode.
  5301. Number of jobs executed: 0
  5302. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5303. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5304. 13:38:18.829 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5305. 13:38:18.829 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5306. 13:38:18.829 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@ce678f8
  5307. 13:38:20.323 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5308. 13:38:20.328 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5309. 13:38:20.456 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5310. 13:38:20.481 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5311. 13:38:20.482 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5312. 13:38:20.482 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5313. 13:38:20.499 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5314. 13:38:20.508 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5315. 13:38:20.516 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5316. 13:38:20.543 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5317. 13:38:20.593 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5318. 13:38:20.595 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5319. 13:38:20.595 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5320. 13:38:20.620 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.207 seconds (process running for 7.757)
  5321. 13:38:20.623 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5322. 13:38:20.630 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5323. 13:38:20.919 [restartedMain] INFO p6spy - 2023-08-24 13:38:20 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT 1
  5324. 13:38:20.923 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@29f4aa81
  5325. 13:38:20.932 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5326. 13:38:20.997 [restartedMain] INFO p6spy - 2023-08-24 13:38:20 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  5327. A.job_id,
  5328. A.job_title,
  5329. A.job_desc,
  5330. A.status,
  5331. A.job_type,
  5332. A.job_code,
  5333. A.job_cron,
  5334. A.job_class_id,
  5335. B.job_class,
  5336. A.cycle_title,
  5337. A.cycle_period,
  5338. A.cycle_unit
  5339. FROM job AS A
  5340. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5341. WHERE A.deleted_flag = 0
  5342. AND A.status = 1
  5343. ORDER BY A.job_id ASC
  5344. 13:38:21.018 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5345. 13:38:21.019 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5346. 13:38:21.207 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:38:21 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5347. FROM goaf_sensor
  5348. WHERE goaf_sensor_ip = '192.168.3.12'
  5349. 13:38:21.675 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5350. 13:38:21.675 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5351. 13:38:21.678 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  5352. 13:38:21.687 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 13:38:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5353. 13:38:37.378 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5354. 13:38:37.380 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5355. 13:38:37.388 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5356. 13:38:37.390 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5357. 13:38:37.390 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5358. 13:38:37.390 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5359. 13:38:37.397 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5360. 13:38:37.399 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5361. 13:38:37.399 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5362. 13:38:37.399 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5363. 13:38:37.399 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5364. 13:38:37.434 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5365. 13:38:37.457 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5366. 13:39:52.750 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5367. 13:39:52.795 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18396 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5368. 13:39:52.796 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5369. 13:39:52.847 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5370. 13:39:52.847 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5371. 13:39:54.535 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5372. 13:39:54.538 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5373. 13:39:54.632 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  5374. 13:39:54.782 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5375. 13:39:54.798 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5376. 13:39:55.483 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5377. 13:39:55.483 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2635 ms
  5378. 13:39:57.692 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5379. 13:39:57.701 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5380. 13:39:57.701 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5381. 13:39:57.702 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5382. 13:39:57.703 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5383. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5384. NOT STARTED.
  5385. Currently in standby mode.
  5386. Number of jobs executed: 0
  5387. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5388. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5389. 13:39:57.703 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5390. 13:39:57.703 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5391. 13:39:57.703 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4adfc0fc
  5392. 13:39:59.212 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5393. 13:39:59.217 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5394. 13:39:59.348 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5395. 13:39:59.375 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5396. 13:39:59.375 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5397. 13:39:59.375 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5398. 13:39:59.394 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5399. 13:39:59.402 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5400. 13:39:59.411 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5401. 13:39:59.438 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5402. 13:39:59.488 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5403. 13:39:59.490 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5404. 13:39:59.490 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5405. 13:39:59.515 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.216 seconds (process running for 7.86)
  5406. 13:39:59.517 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5407. 13:39:59.524 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5408. 13:39:59.819 [restartedMain] INFO p6spy - 2023-08-24 13:39:59 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT 1
  5409. 13:39:59.823 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@40c84809
  5410. 13:39:59.833 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5411. 13:39:59.895 [restartedMain] INFO p6spy - 2023-08-24 13:39:59 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5412. A.job_id,
  5413. A.job_title,
  5414. A.job_desc,
  5415. A.status,
  5416. A.job_type,
  5417. A.job_code,
  5418. A.job_cron,
  5419. A.job_class_id,
  5420. B.job_class,
  5421. A.cycle_title,
  5422. A.cycle_period,
  5423. A.cycle_unit
  5424. FROM job AS A
  5425. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5426. WHERE A.deleted_flag = 0
  5427. AND A.status = 1
  5428. ORDER BY A.job_id ASC
  5429. 13:39:59.915 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5430. 13:39:59.917 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5431. 13:40:00.128 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:40:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5432. FROM goaf_sensor
  5433. WHERE goaf_sensor_ip = '192.168.3.12'
  5434. 13:40:00.527 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5435. 13:40:00.527 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5436. 13:40:00.533 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 6 ms
  5437. 13:40:00.575 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 13:40:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5438. 13:40:06.741 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5439. 13:40:06.751 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5440. client_id,
  5441. client_title,
  5442. client_app_id,
  5443. client_app_key,
  5444. client_app_secret,
  5445. client_desc,
  5446. status,
  5447. is_fixed
  5448. FROM client
  5449. WHERE deleted_flag = 0
  5450. AND client_app_id = '10001'
  5451. AND client_app_key = '82a8bf439373e305'
  5452. 13:40:06.768 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5453. A.oc_id,
  5454. B.oc_type_id,
  5455. B.oc_name,
  5456. A.account_id,
  5457. A.account_name,
  5458. A.account_real_name,
  5459. A.password,
  5460. A.account_type,
  5461. A.account_staff_no,
  5462. A.account_phone,
  5463. A.account_last_ip,
  5464. A.account_loc,
  5465. A.status,
  5466. A.account_avatar,
  5467. A.account_photo,
  5468. A.account_real_name,
  5469. A.account_intro,
  5470. A.wx_id,
  5471. A.is_fixed
  5472. FROM account AS A
  5473. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  5474. WHERE A.deleted_flag = 0
  5475. AND (A.account_name = 'system'
  5476. OR A.account_phone = 'system'
  5477. OR A.account_mail = 'system'
  5478. OR A.account_staff_no = 'system')
  5479. 13:40:06.774 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5480. A.oc_id,
  5481. A.oc_name,
  5482. A.oc_type_id,
  5483. A.root_id,
  5484. A.parent_id,
  5485. A.admin_id,
  5486. B.account_name AS admin_name,
  5487. A.group_id,
  5488. A.node_left,
  5489. A.node_right,
  5490. A.node_level,
  5491. A.is_leaf,
  5492. A.status,
  5493. A.if_lic
  5494. FROM oc AS A
  5495. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  5496. WHERE A.oc_id = 1
  5497. 13:40:06.779 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5498. A.rm_id,
  5499. A.role_id,
  5500. B.role_type_id,
  5501. B.role_code,
  5502. B.role_name,
  5503. A.account_id
  5504. FROM s_role_member AS A
  5505. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  5506. WHERE account_id = 1
  5507. LIMIT 1
  5508. 13:40:06.785 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5509. A.gm_id,
  5510. A.oc_id,
  5511. A.group_id,
  5512. B.group_name,
  5513. B.node_left ,
  5514. B.node_right,
  5515. A.account_id
  5516. FROM s_group_member AS A
  5517. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  5518. WHERE B.deleted_flag = 0
  5519. AND A.oc_id = 1
  5520. AND A.account_id = 1
  5521. LIMIT 1
  5522. 13:40:06.790 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5523. A.gmp_id,
  5524. A.oc_id,
  5525. A.group_id,
  5526. B.group_name,
  5527. A.account_id,
  5528. D.account_name,
  5529. D.account_real_name,
  5530. A.position_id,
  5531. C.position_name
  5532. FROM s_group_member_position A
  5533. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  5534. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  5535. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  5536. WHERE A.deleted_flag = 0
  5537. AND A.oc_id = 1
  5538. AND A.group_id = 1
  5539. AND A.account_id = 1
  5540. LIMIT 1
  5541. 13:40:06.795 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5542. A.gmpg_id,
  5543. A.oc_id,
  5544. A.group_id,
  5545. A.account_id,
  5546. A.position_id,
  5547. A.grant_group_id,
  5548. B.group_name AS grant_group_name
  5549. FROM s_group_member_position_grant A
  5550. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  5551. WHERE A.deleted_flag = 0
  5552. AND A.oc_id = 1
  5553. AND A.group_id = 1
  5554. AND A.account_id = 1
  5555. AND A.position_id = 1
  5556. LIMIT 1
  5557. 13:40:07.198 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5558. client_id,
  5559. client_title,
  5560. client_app_id,
  5561. client_app_key,
  5562. client_app_secret,
  5563. client_desc,
  5564. status,
  5565. is_fixed
  5566. FROM client
  5567. WHERE deleted_flag = 0
  5568. AND client_app_id = '10001'
  5569. AND client_app_key = '82a8bf439373e305'
  5570. 13:40:07.214 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5571. A.client_id,
  5572. A.role_id,
  5573. A.permit_id,
  5574. A.permit_title,
  5575. A.permit_code,
  5576. A.permit_entry,
  5577. A.permit_desc,
  5578. A.permit_type,
  5579. A.parent_id,
  5580. A.root_id,
  5581. A.sort_no,
  5582. A.is_home
  5583. FROM s_role_permit AS A
  5584. WHERE 1 = 1
  5585. AND A.client_id = 2
  5586. AND A.role_id = 1
  5587. ORDER BY A.parent_id ASC ,A.sort_no ASC
  5588. 13:40:07.385 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:07 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT count(*)
  5589. FROM msg AS M
  5590. WHERE M.oc_id = 1
  5591. AND (
  5592. EXISTS (
  5593. SELECT 1 FROM msg_to TT
  5594. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  5595. ) OR
  5596. EXISTS (
  5597. SELECT 1 FROM msg_cc CC
  5598. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  5599. )
  5600. )
  5601. 13:40:14.017 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5602. 13:40:14.109 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:14 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  5603. 13:40:14.117 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5604. A.job_id,
  5605. A.job_title,
  5606. A.job_desc,
  5607. A.status,
  5608. A.job_type,
  5609. A.job_code,
  5610. A.job_cron,
  5611. A.job_class_id,
  5612. B.job_class,
  5613. A.cycle_title,
  5614. A.cycle_period,
  5615. A.cycle_unit
  5616. FROM job AS A
  5617. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5618. WHERE A.deleted_flag = 0
  5619. ORDER BY A.job_id ASC
  5620. LIMIT 10
  5621. 13:40:21.470 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:40:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5622. 13:40:21.480 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:21 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  5623. 13:40:21.480 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:40:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5624. job_class_id,
  5625. job_class_title,
  5626. job_class_desc,
  5627. job_class
  5628. FROM job_class
  5629. WHERE deleted_flag = 0
  5630. ORDER BY job_class_id ASC
  5631. 13:40:21.491 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:21 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  5632. A.job_id,
  5633. A.job_title,
  5634. A.job_desc,
  5635. A.status,
  5636. A.job_type,
  5637. A.job_code,
  5638. A.job_cron,
  5639. A.job_class_id,
  5640. B.job_class,
  5641. A.cycle_title,
  5642. A.cycle_period,
  5643. A.cycle_unit
  5644. FROM job AS A
  5645. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5646. WHERE A.job_id = 439094
  5647. 13:40:39.285 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:39 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  5648. 13:40:39.304 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:39 | Time Consuming: 12 ms | Connection: statement-1 | SQL: UPDATE job
  5649. SET job_title = '巡检天任务',
  5650. job_desc = '天任务',
  5651. status = 1,
  5652. job_type = 1,
  5653. job_code = 'Cron任务',
  5654. job_cron = '0 42 13 * * ?',
  5655. job_class_id = 2,
  5656. cycle_title = '天',
  5657. cycle_period = 0,
  5658. cycle_unit = 0,
  5659. updated_by = 1,
  5660. updated_at = '2023-08-24T13:40:39.289285400'
  5661. WHERE job_id = 439094
  5662. 13:40:39.343 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:39 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  5663. 13:40:39.353 [XNIO-1 task-3] INFO p6spy - 2023-08-24 13:40:39 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT
  5664. A.job_id,
  5665. A.job_title,
  5666. A.job_desc,
  5667. A.status,
  5668. A.job_type,
  5669. A.job_code,
  5670. A.job_cron,
  5671. A.job_class_id,
  5672. B.job_class,
  5673. A.cycle_title,
  5674. A.cycle_period,
  5675. A.cycle_unit
  5676. FROM job AS A
  5677. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5678. WHERE A.deleted_flag = 0
  5679. ORDER BY A.job_id ASC
  5680. LIMIT 10
  5681. 13:41:02.899 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5682. 13:41:02.900 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5683. 13:41:02.902 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5684. 13:41:02.904 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5685. 13:41:02.904 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5686. 13:41:02.904 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5687. 13:41:02.913 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5688. 13:41:02.914 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5689. 13:41:02.914 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5690. 13:41:02.914 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5691. 13:41:02.914 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5692. 13:41:02.937 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5693. 13:41:02.988 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5694. 13:41:06.355 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5695. 13:41:06.402 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14144 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5696. 13:41:06.403 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5697. 13:41:06.455 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5698. 13:41:06.455 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5699. 13:41:08.238 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5700. 13:41:08.242 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5701. 13:41:08.330 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  5702. 13:41:08.526 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5703. 13:41:08.544 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5704. 13:41:09.306 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5705. 13:41:09.306 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2850 ms
  5706. 13:41:11.666 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5707. 13:41:11.677 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5708. 13:41:11.677 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5709. 13:41:11.677 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5710. 13:41:11.678 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5711. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5712. NOT STARTED.
  5713. Currently in standby mode.
  5714. Number of jobs executed: 0
  5715. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5716. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5717. 13:41:11.678 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5718. 13:41:11.678 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5719. 13:41:11.678 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2dcaea4a
  5720. 13:41:13.360 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5721. 13:41:13.365 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5722. 13:41:13.506 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5723. 13:41:13.536 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5724. 13:41:13.536 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5725. 13:41:13.536 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5726. 13:41:13.556 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5727. 13:41:13.565 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5728. 13:41:13.576 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5729. 13:41:13.606 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5730. 13:41:13.657 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5731. 13:41:13.658 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5732. 13:41:13.659 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5733. 13:41:13.683 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.817 seconds (process running for 8.652)
  5734. 13:41:13.685 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5735. 13:41:13.692 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5736. 13:41:14.017 [restartedMain] INFO p6spy - 2023-08-24 13:41:14 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  5737. 13:41:14.022 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3df31e69
  5738. 13:41:14.032 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5739. 13:41:14.106 [restartedMain] INFO p6spy - 2023-08-24 13:41:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  5740. A.job_id,
  5741. A.job_title,
  5742. A.job_desc,
  5743. A.status,
  5744. A.job_type,
  5745. A.job_code,
  5746. A.job_cron,
  5747. A.job_class_id,
  5748. B.job_class,
  5749. A.cycle_title,
  5750. A.cycle_period,
  5751. A.cycle_unit
  5752. FROM job AS A
  5753. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5754. WHERE A.deleted_flag = 0
  5755. AND A.status = 1
  5756. ORDER BY A.job_id ASC
  5757. 13:41:14.127 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5758. 13:41:14.128 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5759. 13:41:14.884 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5760. 13:41:14.884 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5761. 13:41:14.888 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  5762. 13:41:14.891 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 13:41:14 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  5763. 13:41:14.905 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 13:41:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5764. 13:41:15.598 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:41:15 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5765. 13:41:15.603 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:41:15 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5766. FROM goaf_sensor
  5767. WHERE goaf_sensor_ip = '192.168.3.12'
  5768. 13:42:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  5769. 13:42:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 13:42:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5770. 13:42:00.027 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  5771. 13:44:54.982 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:44:54 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5772. 13:44:54.988 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:44:54 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5773. FROM goaf_sensor
  5774. WHERE goaf_sensor_ip = '192.168.3.12'
  5775. 13:44:55.000 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:44:55 | Time Consuming: 9 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  5776. 13:44:55.006 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:44:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  5777. 13:44:55.043 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:44:55 | Time Consuming: 29 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  5778. ( goaf_data_id,
  5779. oc_id,
  5780. goaf_sensor_id,
  5781. goaf_sensor_name,
  5782. frequency_x,
  5783. frequency_y,
  5784. frequency_z,
  5785. acc_x,
  5786. acc_y,
  5787. acc_z,
  5788. vel_x,
  5789. vel_y,
  5790. vel_z,
  5791. dis_x,
  5792. dis_y,
  5793. dis_z,
  5794. sensor_temperature,
  5795. ang_x,
  5796. ang_y,
  5797. ang_z,
  5798. f_alarm_acc_x,
  5799. f_alarm_acc_y,
  5800. f_alarm_acc_z,
  5801. f_alarm_vel_x,
  5802. f_alarm_vel_y,
  5803. f_alarm_vel_z,
  5804. f_alarm_dis_x,
  5805. f_alarm_dis_y,
  5806. f_alarm_dis_z,
  5807. f_alarm_temperature,
  5808. td_wave_value_x,
  5809. td_wave_value_y,
  5810. td_wave_value_z,
  5811. goaf_datareport_time )
  5812. values ( 442165,
  5813. 406283,
  5814. 442139,
  5815. 'jacintoqqq',
  5816. 0,
  5817. 0,
  5818. 0,
  5819. 1,
  5820. 1,
  5821. 1,
  5822. 6,
  5823. 5,
  5824. 5,
  5825. 1,
  5826. 1,
  5827. 0,
  5828. 333,
  5829. -5944,
  5830. 3045,
  5831. -217,
  5832. 64703,
  5833. 64695,
  5834. 64686,
  5835. 64694,
  5836. 64696,
  5837. 64689,
  5838. 64692,
  5839. 64696,
  5840. 64700,
  5841. -844,
  5842. '-838,-835,-837,-837,-833,-835,-847,-841,-838,-838,-835,-836,-839,-838,-833,-836,-845,-842,-839,-837,-846,-846,-828,-834,-838,-845,-852,-841,-845,-843,-843,-844,-836,-837,-834,-847,-846,-837,-840,-838,-841,-840,-835,-835,-841,-850,-846,-842,-849,-846,-841,-839,-846,-838,-842,-847,-842,-843,-840,-842,-841,-844,-845,-842,-846,-844,-834,-837,-848,-841,-842,-845,-833,-837,-846,-842,-836,-840,-838,-846,-854,-837,-833,-838,-834,-842,-844,-840,-847,-842,-839,-837,-843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  5843. '494,483,486,496,500,498,500,496,497,500,498,497,498,489,485,495,503,502,487,493,497,489,500,496,495,489,495,499,497,498,492,489,498,501,494,491,495,506,501,494,491,495,499,495,499,499,499,499,499,500,492,498,499,494,495,487,490,499,494,495,501,494,497,497,480,490,502,497,491,494,498,493,500,499,494,497,493,493,494,492,497,498,501,499,497,494,490,493,493,489,494,501,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  5844. '-34,-41,-39,-30,-40,-38,-26,-38,-41,-35,-23,-25,-47,-43,-37,-33,-22,-32,-25,-32,-32,-28,-36,-39,-43,-35,-38,-33,-30,-39,-36,-30,-43,-38,-35,-45,-40,-31,-35,-38,-33,-33,-36,-33,-39,-40,-30,-38,-38,-38,-38,-36,-42,-42,-42,-37,-45,-40,-27,-38,-39,-29,-34,-38,-39,-34,-27,-35,-31,-43,-44,-28,-26,-31,-34,-34,-38,-28,-32,-37,-35,-41,-43,-34,-38,-39,-44,-46,-32,-33,-37,-38,-36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  5845. '2023-08-24T13:44:55.006543800' )
  5846. 13:46:10.506 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 13:46:10 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5847. 13:46:10.513 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 13:46:10 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  5848. FROM goaf_sensor
  5849. WHERE goaf_sensor_ip = '192.168.3.12'
  5850. 13:47:25.978 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 13:47:25 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5851. 13:47:25.986 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 13:47:25 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  5852. FROM goaf_sensor
  5853. WHERE goaf_sensor_ip = '192.168.3.12'
  5854. 13:48:41.653 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 13:48:41 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5855. 13:48:41.660 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 13:48:41 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  5856. FROM goaf_sensor
  5857. WHERE goaf_sensor_ip = '192.168.3.12'
  5858. 13:49:57.122 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 13:49:57 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5859. 13:49:57.128 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 13:49:57 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  5860. FROM goaf_sensor
  5861. WHERE goaf_sensor_ip = '192.168.3.12'
  5862. 13:51:12.592 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 13:51:12 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5863. 13:51:12.597 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 13:51:12 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  5864. FROM goaf_sensor
  5865. WHERE goaf_sensor_ip = '192.168.3.12'
  5866. 13:52:28.064 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 13:52:28 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5867. 13:52:28.070 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 13:52:28 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  5868. FROM goaf_sensor
  5869. WHERE goaf_sensor_ip = '192.168.3.12'
  5870. 13:53:43.533 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 13:53:43 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5871. 13:53:43.537 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 13:53:43 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  5872. FROM goaf_sensor
  5873. WHERE goaf_sensor_ip = '192.168.3.12'
  5874. 13:54:59.002 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-24 13:54:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5875. 13:54:59.007 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-24 13:54:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  5876. FROM goaf_sensor
  5877. WHERE goaf_sensor_ip = '192.168.3.12'
  5878. 13:56:14.485 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-24 13:56:14 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5879. 13:56:14.490 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-24 13:56:14 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  5880. FROM goaf_sensor
  5881. WHERE goaf_sensor_ip = '192.168.3.12'
  5882. 13:56:16.606 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:56:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5883. 13:56:16.621 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:56:16 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  5884. A.job_id,
  5885. A.job_title,
  5886. A.job_desc,
  5887. A.status,
  5888. A.job_type,
  5889. A.job_code,
  5890. A.job_cron,
  5891. A.job_class_id,
  5892. B.job_class,
  5893. A.cycle_title,
  5894. A.cycle_period,
  5895. A.cycle_unit
  5896. FROM job AS A
  5897. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5898. WHERE A.job_id = 439094
  5899. 13:56:24.384 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:56:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  5900. 13:56:24.399 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:56:24 | Time Consuming: 9 ms | Connection: statement-5 | SQL: UPDATE job
  5901. SET job_title = '巡检天任务',
  5902. job_desc = '天任务',
  5903. status = 1,
  5904. job_type = 1,
  5905. job_code = 'Cron任务',
  5906. job_cron = '0 57 13 * * ?',
  5907. job_class_id = 2,
  5908. cycle_title = '天',
  5909. cycle_period = 0,
  5910. cycle_unit = 0,
  5911. updated_by = 1,
  5912. updated_at = '2023-08-24T13:56:24.388499100'
  5913. WHERE job_id = 439094
  5914. 13:56:24.510 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:56:24 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  5915. 13:56:24.518 [XNIO-1 task-2] INFO p6spy - 2023-08-24 13:56:24 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  5916. A.job_id,
  5917. A.job_title,
  5918. A.job_desc,
  5919. A.status,
  5920. A.job_type,
  5921. A.job_code,
  5922. A.job_cron,
  5923. A.job_class_id,
  5924. B.job_class,
  5925. A.cycle_title,
  5926. A.cycle_period,
  5927. A.cycle_unit
  5928. FROM job AS A
  5929. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5930. WHERE A.deleted_flag = 0
  5931. ORDER BY A.job_id ASC
  5932. LIMIT 10
  5933. 13:56:27.962 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5934. 13:56:27.963 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5935. 13:56:27.966 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5936. 13:56:27.969 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5937. 13:56:27.969 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5938. 13:56:27.971 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5939. 13:56:27.978 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5940. 13:56:27.980 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5941. 13:56:27.980 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5942. 13:56:27.980 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5943. 13:56:27.981 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5944. 13:56:28.071 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5945. 13:56:28.075 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5946. 13:56:34.516 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5947. 13:56:34.565 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 7776 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5948. 13:56:34.565 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5949. 13:56:34.618 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5950. 13:56:34.618 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5951. 13:56:36.449 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5952. 13:56:36.453 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5953. 13:56:36.547 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  5954. 13:56:36.735 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5955. 13:56:36.752 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5956. 13:56:37.587 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5957. 13:56:37.588 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2969 ms
  5958. 13:56:40.207 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5959. 13:56:40.218 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5960. 13:56:40.219 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5961. 13:56:40.219 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5962. 13:56:40.220 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5963. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5964. NOT STARTED.
  5965. Currently in standby mode.
  5966. Number of jobs executed: 0
  5967. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5968. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5969. 13:56:40.220 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5970. 13:56:40.220 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5971. 13:56:40.220 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@564ad6ff
  5972. 13:56:42.248 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5973. 13:56:42.253 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5974. 13:56:42.435 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5975. 13:56:42.473 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5976. 13:56:42.474 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5977. 13:56:42.474 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5978. 13:56:42.499 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5979. 13:56:42.509 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5980. 13:56:42.519 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5981. 13:56:42.556 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5982. 13:56:42.624 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5983. 13:56:42.625 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5984. 13:56:42.626 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5985. 13:56:42.656 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.639 seconds (process running for 9.48)
  5986. 13:56:42.658 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5987. 13:56:42.665 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5988. 13:56:43.152 [restartedMain] INFO p6spy - 2023-08-24 13:56:43 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT 1
  5989. 13:56:43.157 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@703a3be
  5990. 13:56:43.172 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5991. 13:56:43.268 [restartedMain] INFO p6spy - 2023-08-24 13:56:43 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  5992. A.job_id,
  5993. A.job_title,
  5994. A.job_desc,
  5995. A.status,
  5996. A.job_type,
  5997. A.job_code,
  5998. A.job_cron,
  5999. A.job_class_id,
  6000. B.job_class,
  6001. A.cycle_title,
  6002. A.cycle_period,
  6003. A.cycle_unit
  6004. FROM job AS A
  6005. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6006. WHERE A.deleted_flag = 0
  6007. AND A.status = 1
  6008. ORDER BY A.job_id ASC
  6009. 13:56:43.290 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6010. 13:56:43.292 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6011. 13:56:43.576 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 13:56:43 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6012. FROM goaf_sensor
  6013. WHERE goaf_sensor_ip = '192.168.3.12'
  6014. 13:56:43.681 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6015. 13:56:43.681 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6016. 13:56:43.685 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  6017. 13:56:43.692 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 13:56:43 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6018. 13:57:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  6019. 13:57:00.010 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 13:57:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6020. 13:57:00.025 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  6021. 13:59:30.637 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6022. 13:59:30.638 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6023. 13:59:30.646 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6024. 13:59:30.650 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6025. 13:59:30.650 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6026. 13:59:30.650 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6027. 13:59:30.658 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6028. 13:59:30.660 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6029. 13:59:30.660 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6030. 13:59:30.660 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6031. 13:59:30.660 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6032. 13:59:30.732 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6033. 13:59:30.736 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6034. 14:05:32.560 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6035. 14:05:32.606 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16472 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6036. 14:05:32.606 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6037. 14:05:32.657 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6038. 14:05:32.657 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6039. 14:05:34.317 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6040. 14:05:34.320 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6041. 14:05:34.404 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  6042. 14:05:34.557 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6043. 14:05:34.575 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6044. 14:05:35.258 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6045. 14:05:35.258 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2601 ms
  6046. 14:05:37.464 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6047. 14:05:37.473 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6048. 14:05:37.473 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6049. 14:05:37.474 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6050. 14:05:37.474 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6051. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6052. NOT STARTED.
  6053. Currently in standby mode.
  6054. Number of jobs executed: 0
  6055. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6056. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6057. 14:05:37.475 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6058. 14:05:37.475 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6059. 14:05:37.475 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@219ab2a4
  6060. 14:05:38.993 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6061. 14:05:38.997 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6062. 14:05:39.128 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6063. 14:05:39.152 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6064. 14:05:39.153 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6065. 14:05:39.153 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6066. 14:05:39.171 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6067. 14:05:39.179 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6068. 14:05:39.187 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6069. 14:05:39.213 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6070. 14:05:39.264 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6071. 14:05:39.266 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6072. 14:05:39.266 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6073. 14:05:39.292 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.187 seconds (process running for 7.821)
  6074. 14:05:39.295 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6075. 14:05:39.302 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6076. 14:05:39.653 [restartedMain] INFO p6spy - 2023-08-24 14:05:39 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6077. 14:05:39.658 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@61e9923c
  6078. 14:05:39.667 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6079. 14:05:39.730 [restartedMain] INFO p6spy - 2023-08-24 14:05:39 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  6080. A.job_id,
  6081. A.job_title,
  6082. A.job_desc,
  6083. A.status,
  6084. A.job_type,
  6085. A.job_code,
  6086. A.job_cron,
  6087. A.job_class_id,
  6088. B.job_class,
  6089. A.cycle_title,
  6090. A.cycle_period,
  6091. A.cycle_unit
  6092. FROM job AS A
  6093. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6094. WHERE A.deleted_flag = 0
  6095. AND A.status = 1
  6096. ORDER BY A.job_id ASC
  6097. 14:05:39.748 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6098. 14:05:39.750 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6099. 14:05:40.286 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 14:05:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6100. 14:05:40.302 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6101. 14:05:40.302 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6102. 14:05:40.307 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6103. 14:05:40.309 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 14:05:40 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  6104. 14:05:48.117 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:05:48 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6105. 14:05:48.126 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:05:48 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  6106. A.job_id,
  6107. A.job_title,
  6108. A.job_desc,
  6109. A.status,
  6110. A.job_type,
  6111. A.job_code,
  6112. A.job_cron,
  6113. A.job_class_id,
  6114. B.job_class,
  6115. A.cycle_title,
  6116. A.cycle_period,
  6117. A.cycle_unit
  6118. FROM job AS A
  6119. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6120. WHERE A.job_id = 439094
  6121. 14:06:04.412 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:06:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6122. 14:06:04.429 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:06:04 | Time Consuming: 10 ms | Connection: statement-0 | SQL: UPDATE job
  6123. SET job_title = '巡检天任务',
  6124. job_desc = '天任务',
  6125. status = 1,
  6126. job_type = 1,
  6127. job_code = 'Cron任务',
  6128. job_cron = '0 7 14 * * ?',
  6129. job_class_id = 2,
  6130. cycle_title = '天',
  6131. cycle_period = 0,
  6132. cycle_unit = 0,
  6133. updated_by = 1,
  6134. updated_at = '2023-08-24T14:06:04.416267300'
  6135. WHERE job_id = 439094
  6136. 14:06:04.531 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:06:04 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  6137. 14:06:04.541 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:06:04 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  6138. A.job_id,
  6139. A.job_title,
  6140. A.job_desc,
  6141. A.status,
  6142. A.job_type,
  6143. A.job_code,
  6144. A.job_cron,
  6145. A.job_class_id,
  6146. B.job_class,
  6147. A.cycle_title,
  6148. A.cycle_period,
  6149. A.cycle_unit
  6150. FROM job AS A
  6151. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6152. WHERE A.deleted_flag = 0
  6153. ORDER BY A.job_id ASC
  6154. LIMIT 10
  6155. 14:06:13.308 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6156. 14:06:13.310 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6157. 14:06:13.312 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6158. 14:06:13.314 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6159. 14:06:13.314 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6160. 14:06:13.314 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6161. 14:06:13.321 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6162. 14:06:13.322 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6163. 14:06:13.322 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6164. 14:06:13.323 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6165. 14:06:13.323 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6166. 14:06:13.343 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6167. 14:06:13.347 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6168. 14:06:16.699 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6169. 14:06:16.747 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13904 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6170. 14:06:16.747 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6171. 14:06:16.802 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6172. 14:06:16.802 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6173. 14:06:18.579 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6174. 14:06:18.582 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6175. 14:06:18.668 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  6176. 14:06:18.833 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6177. 14:06:18.849 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6178. 14:06:19.585 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6179. 14:06:19.585 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2783 ms
  6180. 14:06:21.918 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6181. 14:06:21.929 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6182. 14:06:21.930 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6183. 14:06:21.930 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6184. 14:06:21.931 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6185. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6186. NOT STARTED.
  6187. Currently in standby mode.
  6188. Number of jobs executed: 0
  6189. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6190. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6191. 14:06:21.931 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6192. 14:06:21.931 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6193. 14:06:21.931 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2dcaea4a
  6194. 14:06:23.591 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6195. 14:06:23.596 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6196. 14:06:23.737 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6197. 14:06:23.768 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6198. 14:06:23.768 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6199. 14:06:23.769 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6200. 14:06:23.788 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6201. 14:06:23.797 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6202. 14:06:23.807 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6203. 14:06:23.836 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6204. 14:06:23.888 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6205. 14:06:23.889 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6206. 14:06:23.889 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6207. 14:06:23.913 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.718 seconds (process running for 8.572)
  6208. 14:06:23.916 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6209. 14:06:23.923 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6210. 14:06:24.245 [restartedMain] INFO p6spy - 2023-08-24 14:06:24 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6211. 14:06:24.250 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3df31e69
  6212. 14:06:24.253 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6213. 14:06:24.318 [restartedMain] INFO p6spy - 2023-08-24 14:06:24 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6214. A.job_id,
  6215. A.job_title,
  6216. A.job_desc,
  6217. A.status,
  6218. A.job_type,
  6219. A.job_code,
  6220. A.job_cron,
  6221. A.job_class_id,
  6222. B.job_class,
  6223. A.cycle_title,
  6224. A.cycle_period,
  6225. A.cycle_unit
  6226. FROM job AS A
  6227. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6228. WHERE A.deleted_flag = 0
  6229. AND A.status = 1
  6230. ORDER BY A.job_id ASC
  6231. 14:06:24.338 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6232. 14:06:24.340 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6233. 14:06:24.636 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:06:24 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6234. FROM goaf_sensor
  6235. WHERE goaf_sensor_ip = '192.168.3.12'
  6236. 14:06:24.700 [RMI TCP Connection(1)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6237. 14:06:24.700 [RMI TCP Connection(1)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6238. 14:06:24.708 [RMI TCP Connection(1)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 8 ms
  6239. 14:06:24.711 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 14:06:24 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6240. 14:07:00.005 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  6241. 14:07:00.010 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 14:07:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6242. 14:07:00.026 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  6243. 14:09:06.084 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6244. 14:09:06.086 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6245. 14:09:06.094 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6246. 14:09:06.098 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6247. 14:09:06.098 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6248. 14:09:06.098 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6249. 14:09:06.105 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6250. 14:09:06.106 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6251. 14:09:06.106 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6252. 14:09:06.106 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6253. 14:09:06.106 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6254. 14:09:06.122 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6255. 14:09:06.126 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6256. 14:13:26.565 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6257. 14:13:26.619 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4716 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6258. 14:13:26.620 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6259. 14:13:26.682 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6260. 14:13:26.682 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6261. 14:13:28.412 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6262. 14:13:28.417 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6263. 14:13:28.512 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  6264. 14:13:28.698 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6265. 14:13:28.714 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6266. 14:13:29.429 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6267. 14:13:29.429 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2746 ms
  6268. 14:13:31.618 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6269. 14:13:31.627 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6270. 14:13:31.628 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6271. 14:13:31.628 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6272. 14:13:31.628 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6273. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6274. NOT STARTED.
  6275. Currently in standby mode.
  6276. Number of jobs executed: 0
  6277. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6278. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6279. 14:13:31.628 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6280. 14:13:31.628 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6281. 14:13:31.628 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@47f63f67
  6282. 14:13:33.144 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6283. 14:13:33.149 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6284. 14:13:33.281 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6285. 14:13:33.305 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6286. 14:13:33.305 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6287. 14:13:33.306 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6288. 14:13:33.323 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6289. 14:13:33.331 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6290. 14:13:33.340 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6291. 14:13:33.366 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6292. 14:13:33.419 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6293. 14:13:33.420 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6294. 14:13:33.421 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6295. 14:13:33.445 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.366 seconds (process running for 8.145)
  6296. 14:13:33.448 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6297. 14:13:33.455 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6298. 14:13:33.751 [restartedMain] INFO p6spy - 2023-08-24 14:13:33 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  6299. 14:13:33.755 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@610e4454
  6300. 14:13:33.764 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6301. 14:13:33.824 [restartedMain] INFO p6spy - 2023-08-24 14:13:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  6302. A.job_id,
  6303. A.job_title,
  6304. A.job_desc,
  6305. A.status,
  6306. A.job_type,
  6307. A.job_code,
  6308. A.job_cron,
  6309. A.job_class_id,
  6310. B.job_class,
  6311. A.cycle_title,
  6312. A.cycle_period,
  6313. A.cycle_unit
  6314. FROM job AS A
  6315. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6316. WHERE A.deleted_flag = 0
  6317. AND A.status = 1
  6318. ORDER BY A.job_id ASC
  6319. 14:13:33.843 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6320. 14:13:33.844 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6321. 14:13:34.152 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:13:34 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6322. FROM goaf_sensor
  6323. WHERE goaf_sensor_ip = '192.168.3.12'
  6324. 14:13:34.192 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6325. 14:13:34.193 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6326. 14:13:34.198 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  6327. 14:13:34.232 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 14:13:34 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  6328. 14:13:55.567 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:13:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6329. 14:13:55.576 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:13:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  6330. A.job_id,
  6331. A.job_title,
  6332. A.job_desc,
  6333. A.status,
  6334. A.job_type,
  6335. A.job_code,
  6336. A.job_cron,
  6337. A.job_class_id,
  6338. B.job_class,
  6339. A.cycle_title,
  6340. A.cycle_period,
  6341. A.cycle_unit
  6342. FROM job AS A
  6343. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6344. WHERE A.job_id = 439094
  6345. 14:14:07.658 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:14:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6346. 14:14:07.677 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:14:07 | Time Consuming: 11 ms | Connection: statement-0 | SQL: UPDATE job
  6347. SET job_title = '巡检天任务',
  6348. job_desc = '天任务',
  6349. status = 1,
  6350. job_type = 1,
  6351. job_code = 'Cron任务',
  6352. job_cron = '0 15 14 * * ?',
  6353. job_class_id = 2,
  6354. cycle_title = '天',
  6355. cycle_period = 0,
  6356. cycle_unit = 0,
  6357. updated_by = 1,
  6358. updated_at = '2023-08-24T14:14:07.661996300'
  6359. WHERE job_id = 439094
  6360. 14:14:07.788 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:14:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  6361. 14:14:07.796 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:14:07 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6362. A.job_id,
  6363. A.job_title,
  6364. A.job_desc,
  6365. A.status,
  6366. A.job_type,
  6367. A.job_code,
  6368. A.job_cron,
  6369. A.job_class_id,
  6370. B.job_class,
  6371. A.cycle_title,
  6372. A.cycle_period,
  6373. A.cycle_unit
  6374. FROM job AS A
  6375. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6376. WHERE A.deleted_flag = 0
  6377. ORDER BY A.job_id ASC
  6378. LIMIT 10
  6379. 14:14:14.493 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6380. 14:14:14.494 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6381. 14:14:14.496 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6382. 14:14:14.498 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6383. 14:14:14.498 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6384. 14:14:14.499 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6385. 14:14:14.507 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6386. 14:14:14.508 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6387. 14:14:14.508 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6388. 14:14:14.508 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6389. 14:14:14.508 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6390. 14:14:14.582 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6391. 14:14:14.586 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6392. 14:14:18.179 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6393. 14:14:18.233 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10320 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6394. 14:14:18.233 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6395. 14:14:18.290 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6396. 14:14:18.290 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6397. 14:14:20.063 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6398. 14:14:20.067 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6399. 14:14:20.160 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  6400. 14:14:20.325 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6401. 14:14:20.342 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6402. 14:14:21.090 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6403. 14:14:21.091 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2800 ms
  6404. 14:14:23.547 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6405. 14:14:23.557 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6406. 14:14:23.557 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6407. 14:14:23.558 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6408. 14:14:23.558 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6409. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6410. NOT STARTED.
  6411. Currently in standby mode.
  6412. Number of jobs executed: 0
  6413. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6414. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6415. 14:14:23.559 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6416. 14:14:23.559 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6417. 14:14:23.559 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@110efbbf
  6418. 14:14:25.215 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6419. 14:14:25.221 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6420. 14:14:25.359 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6421. 14:14:25.390 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6422. 14:14:25.390 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6423. 14:14:25.391 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6424. 14:14:25.411 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6425. 14:14:25.420 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6426. 14:14:25.430 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6427. 14:14:25.458 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6428. 14:14:25.508 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6429. 14:14:25.509 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6430. 14:14:25.510 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6431. 14:14:25.534 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.898 seconds (process running for 8.851)
  6432. 14:14:25.536 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6433. 14:14:25.543 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6434. 14:14:25.870 [restartedMain] INFO p6spy - 2023-08-24 14:14:25 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  6435. 14:14:25.875 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6465d552
  6436. 14:14:25.885 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6437. 14:14:25.961 [restartedMain] INFO p6spy - 2023-08-24 14:14:25 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6438. A.job_id,
  6439. A.job_title,
  6440. A.job_desc,
  6441. A.status,
  6442. A.job_type,
  6443. A.job_code,
  6444. A.job_cron,
  6445. A.job_class_id,
  6446. B.job_class,
  6447. A.cycle_title,
  6448. A.cycle_period,
  6449. A.cycle_unit
  6450. FROM job AS A
  6451. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6452. WHERE A.deleted_flag = 0
  6453. AND A.status = 1
  6454. ORDER BY A.job_id ASC
  6455. 14:14:25.981 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6456. 14:14:25.983 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6457. 14:14:26.197 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:14:26 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  6458. FROM goaf_sensor
  6459. WHERE goaf_sensor_ip = '192.168.3.12'
  6460. 14:14:26.575 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6461. 14:14:26.575 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6462. 14:14:26.581 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  6463. 14:14:26.616 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 14:14:26 | Time Consuming: 32 ms | Connection: statement-0 | SQL: SELECT 1
  6464. 14:15:00.008 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  6465. 14:15:00.014 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 14:15:00 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  6466. 14:15:00.029 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  6467. 14:15:25.905 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6468. 14:15:25.907 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6469. 14:15:25.917 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6470. 14:15:25.919 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6471. 14:15:25.919 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6472. 14:15:25.920 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6473. 14:15:25.928 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6474. 14:15:25.930 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6475. 14:15:25.930 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6476. 14:15:25.930 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6477. 14:15:25.930 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6478. 14:15:25.943 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6479. 14:15:25.947 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6480. 14:20:42.176 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6481. 14:20:42.224 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 2184 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6482. 14:20:42.224 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6483. 14:20:42.274 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6484. 14:20:42.274 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6485. 14:20:43.955 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6486. 14:20:43.958 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6487. 14:20:44.047 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  6488. 14:20:44.205 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6489. 14:20:44.221 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6490. 14:20:44.918 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6491. 14:20:44.918 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2643 ms
  6492. 14:20:47.130 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6493. 14:20:47.140 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6494. 14:20:47.140 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6495. 14:20:47.140 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6496. 14:20:47.141 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6497. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6498. NOT STARTED.
  6499. Currently in standby mode.
  6500. Number of jobs executed: 0
  6501. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6502. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6503. 14:20:47.141 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6504. 14:20:47.141 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6505. 14:20:47.141 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1539065e
  6506. 14:20:48.907 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6507. 14:20:48.919 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6508. 14:20:49.191 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6509. 14:20:49.256 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6510. 14:20:49.257 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6511. 14:20:49.257 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6512. 14:20:49.295 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6513. 14:20:49.310 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6514. 14:20:49.329 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6515. 14:20:49.369 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6516. 14:20:49.437 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6517. 14:20:49.439 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6518. 14:20:49.439 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6519. 14:20:49.480 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.755 seconds (process running for 8.41)
  6520. 14:20:49.484 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6521. 14:20:49.496 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6522. 14:20:49.942 [restartedMain] INFO p6spy - 2023-08-24 14:20:49 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  6523. 14:20:49.947 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@780efec8
  6524. 14:20:49.962 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6525. 14:20:50.057 [restartedMain] INFO p6spy - 2023-08-24 14:20:50 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  6526. A.job_id,
  6527. A.job_title,
  6528. A.job_desc,
  6529. A.status,
  6530. A.job_type,
  6531. A.job_code,
  6532. A.job_cron,
  6533. A.job_class_id,
  6534. B.job_class,
  6535. A.cycle_title,
  6536. A.cycle_period,
  6537. A.cycle_unit
  6538. FROM job AS A
  6539. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6540. WHERE A.deleted_flag = 0
  6541. AND A.status = 1
  6542. ORDER BY A.job_id ASC
  6543. 14:20:50.085 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6544. 14:20:50.087 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6545. 14:20:50.407 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:20:50 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  6546. FROM goaf_sensor
  6547. WHERE goaf_sensor_ip = '192.168.3.12'
  6548. 14:20:50.938 [RMI TCP Connection(13)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6549. 14:20:50.939 [RMI TCP Connection(13)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6550. 14:20:50.939 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-24 14:20:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6551. 14:20:50.942 [RMI TCP Connection(13)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  6552. 14:20:50.953 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-24 14:20:50 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  6553. 14:21:06.197 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:21:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6554. 14:21:06.206 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:21:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  6555. A.job_id,
  6556. A.job_title,
  6557. A.job_desc,
  6558. A.status,
  6559. A.job_type,
  6560. A.job_code,
  6561. A.job_cron,
  6562. A.job_class_id,
  6563. B.job_class,
  6564. A.cycle_title,
  6565. A.cycle_period,
  6566. A.cycle_unit
  6567. FROM job AS A
  6568. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6569. WHERE A.job_id = 439094
  6570. 14:21:13.675 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:21:13 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6571. 14:21:13.689 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:21:13 | Time Consuming: 9 ms | Connection: statement-0 | SQL: UPDATE job
  6572. SET job_title = '巡检天任务',
  6573. job_desc = '天任务',
  6574. status = 1,
  6575. job_type = 1,
  6576. job_code = 'Cron任务',
  6577. job_cron = '0 22 14 * * ?',
  6578. job_class_id = 2,
  6579. cycle_title = '天',
  6580. cycle_period = 0,
  6581. cycle_unit = 0,
  6582. updated_by = 1,
  6583. updated_at = '2023-08-24T14:21:13.678159900'
  6584. WHERE job_id = 439094
  6585. 14:21:13.803 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:21:13 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  6586. 14:21:13.810 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:21:13 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  6587. A.job_id,
  6588. A.job_title,
  6589. A.job_desc,
  6590. A.status,
  6591. A.job_type,
  6592. A.job_code,
  6593. A.job_cron,
  6594. A.job_class_id,
  6595. B.job_class,
  6596. A.cycle_title,
  6597. A.cycle_period,
  6598. A.cycle_unit
  6599. FROM job AS A
  6600. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6601. WHERE A.deleted_flag = 0
  6602. ORDER BY A.job_id ASC
  6603. LIMIT 10
  6604. 14:21:19.979 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6605. 14:21:19.981 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6606. 14:21:19.983 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6607. 14:21:19.984 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6608. 14:21:19.984 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6609. 14:21:19.985 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6610. 14:21:19.991 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6611. 14:21:19.992 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6612. 14:21:19.992 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6613. 14:21:19.993 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6614. 14:21:19.993 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6615. 14:21:20.012 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6616. 14:21:20.031 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6617. 14:21:23.462 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6618. 14:21:23.509 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16100 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6619. 14:21:23.510 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6620. 14:21:23.565 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6621. 14:21:23.566 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6622. 14:21:25.344 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6623. 14:21:25.348 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6624. 14:21:25.438 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  6625. 14:21:25.607 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6626. 14:21:25.623 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6627. 14:21:26.381 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6628. 14:21:26.381 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2815 ms
  6629. 14:21:28.748 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6630. 14:21:28.758 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6631. 14:21:28.758 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6632. 14:21:28.759 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6633. 14:21:28.759 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6634. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6635. NOT STARTED.
  6636. Currently in standby mode.
  6637. Number of jobs executed: 0
  6638. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6639. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6640. 14:21:28.760 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6641. 14:21:28.760 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6642. 14:21:28.760 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@75cf37a4
  6643. 14:21:30.410 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6644. 14:21:30.415 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6645. 14:21:30.556 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6646. 14:21:30.585 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6647. 14:21:30.586 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6648. 14:21:30.586 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6649. 14:21:30.605 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6650. 14:21:30.614 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6651. 14:21:30.625 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6652. 14:21:30.655 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6653. 14:21:30.709 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6654. 14:21:30.710 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6655. 14:21:30.711 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6656. 14:21:30.735 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.757 seconds (process running for 8.668)
  6657. 14:21:30.737 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6658. 14:21:30.745 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6659. 14:21:31.126 [restartedMain] INFO p6spy - 2023-08-24 14:21:31 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  6660. 14:21:31.131 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@4e4c9046
  6661. 14:21:31.140 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6662. 14:21:31.206 [restartedMain] INFO p6spy - 2023-08-24 14:21:31 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6663. A.job_id,
  6664. A.job_title,
  6665. A.job_desc,
  6666. A.status,
  6667. A.job_type,
  6668. A.job_code,
  6669. A.job_cron,
  6670. A.job_class_id,
  6671. B.job_class,
  6672. A.cycle_title,
  6673. A.cycle_period,
  6674. A.cycle_unit
  6675. FROM job AS A
  6676. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6677. WHERE A.deleted_flag = 0
  6678. AND A.status = 1
  6679. ORDER BY A.job_id ASC
  6680. 14:21:31.226 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6681. 14:21:31.228 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6682. 14:21:31.472 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:21:31 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6683. FROM goaf_sensor
  6684. WHERE goaf_sensor_ip = '192.168.3.12'
  6685. 14:21:31.896 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6686. 14:21:31.896 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6687. 14:21:31.900 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6688. 14:21:31.910 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 14:21:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6689. 14:22:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  6690. 14:22:00.012 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 14:22:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  6691. 14:22:00.032 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  6692. 14:22:56.755 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6693. 14:22:56.757 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6694. 14:22:56.764 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6695. 14:22:56.768 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6696. 14:22:56.769 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6697. 14:22:56.769 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6698. 14:22:56.776 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6699. 14:22:56.777 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6700. 14:22:56.778 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6701. 14:22:56.778 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6702. 14:22:56.778 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6703. 14:22:56.792 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6704. 14:22:56.800 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6705. 14:32:05.430 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6706. 14:32:05.478 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14976 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6707. 14:32:05.478 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6708. 14:32:05.531 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6709. 14:32:05.531 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6710. 14:32:07.295 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6711. 14:32:07.298 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6712. 14:32:07.383 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  6713. 14:32:07.549 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6714. 14:32:07.565 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6715. 14:32:08.302 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6716. 14:32:08.302 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2770 ms
  6717. 14:32:10.655 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6718. 14:32:10.665 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6719. 14:32:10.665 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6720. 14:32:10.666 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6721. 14:32:10.666 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6722. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6723. NOT STARTED.
  6724. Currently in standby mode.
  6725. Number of jobs executed: 0
  6726. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6727. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6728. 14:32:10.666 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6729. 14:32:10.667 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6730. 14:32:10.667 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@110efbbf
  6731. 14:32:12.332 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6732. 14:32:12.337 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6733. 14:32:12.479 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6734. 14:32:12.509 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6735. 14:32:12.509 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6736. 14:32:12.509 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6737. 14:32:12.529 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6738. 14:32:12.538 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6739. 14:32:12.548 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6740. 14:32:12.577 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6741. 14:32:12.628 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6742. 14:32:12.630 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6743. 14:32:12.630 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6744. 14:32:12.656 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.718 seconds (process running for 8.6)
  6745. 14:32:12.659 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6746. 14:32:12.666 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6747. 14:32:13.001 [restartedMain] INFO p6spy - 2023-08-24 14:32:13 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6748. 14:32:13.005 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6465d552
  6749. 14:32:13.015 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6750. 14:32:13.081 [restartedMain] INFO p6spy - 2023-08-24 14:32:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6751. A.job_id,
  6752. A.job_title,
  6753. A.job_desc,
  6754. A.status,
  6755. A.job_type,
  6756. A.job_code,
  6757. A.job_cron,
  6758. A.job_class_id,
  6759. B.job_class,
  6760. A.cycle_title,
  6761. A.cycle_period,
  6762. A.cycle_unit
  6763. FROM job AS A
  6764. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6765. WHERE A.deleted_flag = 0
  6766. AND A.status = 1
  6767. ORDER BY A.job_id ASC
  6768. 14:32:13.101 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6769. 14:32:13.103 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6770. 14:32:13.916 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6771. 14:32:13.916 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6772. 14:32:13.918 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 14:32:13 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6773. 14:32:13.920 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6774. 14:32:13.978 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 14:32:13 | Time Consuming: 51 ms | Connection: statement-0 | SQL: SELECT 1
  6775. 14:32:23.700 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6776. 14:32:23.702 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6777. 14:32:23.710 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6778. 14:32:23.713 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6779. 14:32:23.714 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6780. 14:32:23.714 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6781. 14:32:23.720 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6782. 14:32:23.721 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6783. 14:32:23.721 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6784. 14:32:23.721 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6785. 14:32:23.721 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6786. 14:32:23.743 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6787. 14:32:23.759 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6788. 14:32:29.021 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6789. 14:32:29.070 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13720 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6790. 14:32:29.070 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6791. 14:32:29.122 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6792. 14:32:29.122 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6793. 14:32:30.887 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6794. 14:32:30.890 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6795. 14:32:30.979 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  6796. 14:32:31.144 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6797. 14:32:31.160 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6798. 14:32:31.897 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6799. 14:32:31.897 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2774 ms
  6800. 14:32:34.231 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6801. 14:32:34.242 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6802. 14:32:34.242 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6803. 14:32:34.243 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6804. 14:32:34.243 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6805. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6806. NOT STARTED.
  6807. Currently in standby mode.
  6808. Number of jobs executed: 0
  6809. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6810. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6811. 14:32:34.243 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6812. 14:32:34.243 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6813. 14:32:34.244 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  6814. 14:32:35.904 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6815. 14:32:35.909 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6816. 14:32:36.049 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6817. 14:32:36.079 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6818. 14:32:36.079 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6819. 14:32:36.080 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6820. 14:32:36.100 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6821. 14:32:36.109 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6822. 14:32:36.119 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6823. 14:32:36.149 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6824. 14:32:36.202 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6825. 14:32:36.203 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6826. 14:32:36.203 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6827. 14:32:36.229 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.7 seconds (process running for 8.609)
  6828. 14:32:36.231 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6829. 14:32:36.239 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6830. 14:32:36.559 [restartedMain] INFO p6spy - 2023-08-24 14:32:36 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6831. 14:32:36.564 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@37873594
  6832. 14:32:36.574 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6833. 14:32:36.649 [restartedMain] INFO p6spy - 2023-08-24 14:32:36 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6834. A.job_id,
  6835. A.job_title,
  6836. A.job_desc,
  6837. A.status,
  6838. A.job_type,
  6839. A.job_code,
  6840. A.job_cron,
  6841. A.job_class_id,
  6842. B.job_class,
  6843. A.cycle_title,
  6844. A.cycle_period,
  6845. A.cycle_unit
  6846. FROM job AS A
  6847. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6848. WHERE A.deleted_flag = 0
  6849. AND A.status = 1
  6850. ORDER BY A.job_id ASC
  6851. 14:32:36.670 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6852. 14:32:36.672 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6853. 14:32:37.524 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6854. 14:32:37.525 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6855. 14:32:37.525 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 14:32:37 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  6856. 14:32:37.529 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6857. 14:32:37.563 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-24 14:32:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6858. 14:32:54.081 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:32:54 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  6859. 14:32:54.096 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:32:54 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  6860. A.job_id,
  6861. A.job_title,
  6862. A.job_desc,
  6863. A.status,
  6864. A.job_type,
  6865. A.job_code,
  6866. A.job_cron,
  6867. A.job_class_id,
  6868. B.job_class,
  6869. A.cycle_title,
  6870. A.cycle_period,
  6871. A.cycle_unit
  6872. FROM job AS A
  6873. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6874. WHERE A.job_id = 439094
  6875. 14:33:02.075 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:33:02 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  6876. 14:33:02.107 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:33:02 | Time Consuming: 20 ms | Connection: statement-0 | SQL: UPDATE job
  6877. SET job_title = '巡检天任务',
  6878. job_desc = '天任务',
  6879. status = 1,
  6880. job_type = 1,
  6881. job_code = 'Cron任务',
  6882. job_cron = '0 34 14 * * ?',
  6883. job_class_id = 2,
  6884. cycle_title = '天',
  6885. cycle_period = 0,
  6886. cycle_unit = 0,
  6887. updated_by = 1,
  6888. updated_at = '2023-08-24T14:33:02.083849100'
  6889. WHERE job_id = 439094
  6890. 14:33:02.248 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:33:02 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  6891. 14:33:02.262 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:33:02 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  6892. A.job_id,
  6893. A.job_title,
  6894. A.job_desc,
  6895. A.status,
  6896. A.job_type,
  6897. A.job_code,
  6898. A.job_cron,
  6899. A.job_class_id,
  6900. B.job_class,
  6901. A.cycle_title,
  6902. A.cycle_period,
  6903. A.cycle_unit
  6904. FROM job AS A
  6905. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6906. WHERE A.deleted_flag = 0
  6907. ORDER BY A.job_id ASC
  6908. LIMIT 10
  6909. 14:33:07.073 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6910. 14:33:07.075 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6911. 14:33:07.077 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6912. 14:33:07.079 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6913. 14:33:07.081 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6914. 14:33:07.081 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6915. 14:33:07.091 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6916. 14:33:07.092 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6917. 14:33:07.092 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6918. 14:33:07.092 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6919. 14:33:07.092 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6920. 14:33:07.140 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6921. 14:33:07.170 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6922. 14:33:10.477 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6923. 14:33:10.525 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19320 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6924. 14:33:10.526 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6925. 14:33:10.580 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6926. 14:33:10.580 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6927. 14:33:12.366 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6928. 14:33:12.369 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6929. 14:33:12.453 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 70 ms. Found 0 Redis repository interfaces.
  6930. 14:33:12.620 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6931. 14:33:12.636 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6932. 14:33:13.370 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6933. 14:33:13.370 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2790 ms
  6934. 14:33:15.702 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6935. 14:33:15.712 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6936. 14:33:15.713 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6937. 14:33:15.713 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6938. 14:33:15.714 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6939. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6940. NOT STARTED.
  6941. Currently in standby mode.
  6942. Number of jobs executed: 0
  6943. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6944. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6945. 14:33:15.714 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6946. 14:33:15.714 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6947. 14:33:15.714 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@110efbbf
  6948. 14:33:17.395 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6949. 14:33:17.400 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6950. 14:33:17.543 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6951. 14:33:17.573 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6952. 14:33:17.573 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6953. 14:33:17.573 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6954. 14:33:17.593 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6955. 14:33:17.602 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6956. 14:33:17.612 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6957. 14:33:17.642 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6958. 14:33:17.693 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6959. 14:33:17.694 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6960. 14:33:17.694 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6961. 14:33:17.719 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.727 seconds (process running for 8.59)
  6962. 14:33:17.722 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6963. 14:33:17.730 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6964. 14:33:18.059 [restartedMain] INFO p6spy - 2023-08-24 14:33:18 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6965. 14:33:18.064 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6465d552
  6966. 14:33:18.074 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6967. 14:33:18.149 [restartedMain] INFO p6spy - 2023-08-24 14:33:18 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  6968. A.job_id,
  6969. A.job_title,
  6970. A.job_desc,
  6971. A.status,
  6972. A.job_type,
  6973. A.job_code,
  6974. A.job_cron,
  6975. A.job_class_id,
  6976. B.job_class,
  6977. A.cycle_title,
  6978. A.cycle_period,
  6979. A.cycle_unit
  6980. FROM job AS A
  6981. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6982. WHERE A.deleted_flag = 0
  6983. AND A.status = 1
  6984. ORDER BY A.job_id ASC
  6985. 14:33:18.170 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6986. 14:33:18.172 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6987. 14:33:18.357 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:33:18 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6988. FROM goaf_sensor
  6989. WHERE goaf_sensor_ip = '192.168.3.12'
  6990. 14:33:18.556 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6991. 14:33:18.556 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6992. 14:33:18.561 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  6993. 14:33:18.575 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 14:33:18 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6994. 14:34:00.025 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  6995. 14:34:00.030 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 14:34:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6996. 14:34:00.046 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  6997. 14:35:03.307 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6998. 14:35:03.308 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6999. 14:35:03.317 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  7000. 14:35:03.320 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  7001. 14:35:03.320 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  7002. 14:35:03.320 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  7003. 14:35:03.328 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  7004. 14:35:03.330 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  7005. 14:35:03.330 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  7006. 14:35:03.330 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  7007. 14:35:03.330 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  7008. 14:35:03.402 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  7009. 14:35:03.407 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  7010. 14:57:11.072 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  7011. 14:57:11.116 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 6288 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  7012. 14:57:11.116 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  7013. 14:57:11.166 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  7014. 14:57:11.166 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  7015. 14:57:12.874 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  7016. 14:57:12.878 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  7017. 14:57:12.971 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  7018. 14:57:13.131 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  7019. 14:57:13.147 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  7020. 14:57:13.848 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  7021. 14:57:13.849 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2682 ms
  7022. 14:57:16.045 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  7023. 14:57:16.055 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  7024. 14:57:16.055 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  7025. 14:57:16.056 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  7026. 14:57:16.056 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  7027. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  7028. NOT STARTED.
  7029. Currently in standby mode.
  7030. Number of jobs executed: 0
  7031. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  7032. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  7033. 14:57:16.056 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  7034. 14:57:16.056 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  7035. 14:57:16.056 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@13eda5b
  7036. 14:57:17.831 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  7037. 14:57:17.837 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  7038. 14:57:17.981 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  7039. 14:57:18.007 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  7040. 14:57:18.007 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  7041. 14:57:18.007 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  7042. 14:57:18.026 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  7043. 14:57:18.034 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  7044. 14:57:18.042 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  7045. 14:57:18.071 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  7046. 14:57:18.131 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  7047. 14:57:18.133 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  7048. 14:57:18.133 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  7049. 14:57:18.161 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.497 seconds (process running for 14.679)
  7050. 14:57:18.164 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  7051. 14:57:18.172 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  7052. 14:57:18.551 [restartedMain] INFO p6spy - 2023-08-24 14:57:18 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  7053. 14:57:18.556 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1adeb31b
  7054. 14:57:18.566 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  7055. 14:57:18.636 [restartedMain] INFO p6spy - 2023-08-24 14:57:18 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  7056. A.job_id,
  7057. A.job_title,
  7058. A.job_desc,
  7059. A.status,
  7060. A.job_type,
  7061. A.job_code,
  7062. A.job_cron,
  7063. A.job_class_id,
  7064. B.job_class,
  7065. A.cycle_title,
  7066. A.cycle_period,
  7067. A.cycle_unit
  7068. FROM job AS A
  7069. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  7070. WHERE A.deleted_flag = 0
  7071. AND A.status = 1
  7072. ORDER BY A.job_id ASC
  7073. 14:57:18.657 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  7074. 14:57:18.659 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  7075. 14:57:18.853 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 14:57:18 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  7076. FROM goaf_sensor
  7077. WHERE goaf_sensor_ip = '192.168.3.12'
  7078. 14:57:36.262 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  7079. 14:57:36.262 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  7080. 14:57:36.266 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  7081. 14:57:38.151 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:38 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  7082. 14:57:38.173 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:38 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  7083. client_id,
  7084. client_title,
  7085. client_app_id,
  7086. client_app_key,
  7087. client_app_secret,
  7088. client_desc,
  7089. status,
  7090. is_fixed
  7091. FROM client
  7092. WHERE deleted_flag = 0
  7093. AND client_app_id = '10001'
  7094. AND client_app_key = '82a8bf439373e305'
  7095. 14:57:38.215 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:38 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  7096. A.client_id,
  7097. A.role_id,
  7098. A.permit_id,
  7099. A.permit_title,
  7100. A.permit_code,
  7101. A.permit_entry,
  7102. A.permit_desc,
  7103. A.permit_type,
  7104. A.parent_id,
  7105. A.root_id,
  7106. A.sort_no,
  7107. A.is_home
  7108. FROM s_role_permit AS A
  7109. WHERE 1 = 1
  7110. AND A.client_id = 2
  7111. AND A.role_id = 1
  7112. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7113. 14:57:38.387 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:38 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT count(*)
  7114. FROM msg AS M
  7115. WHERE M.oc_id = 1
  7116. AND (
  7117. EXISTS (
  7118. SELECT 1 FROM msg_to TT
  7119. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  7120. ) OR
  7121. EXISTS (
  7122. SELECT 1 FROM msg_cc CC
  7123. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  7124. )
  7125. )
  7126. 14:57:42.547 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:42 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  7127. 14:57:45.805 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  7128. 14:57:45.813 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  7129. client_id,
  7130. client_title,
  7131. client_app_id,
  7132. client_app_key,
  7133. client_app_secret,
  7134. client_desc,
  7135. status,
  7136. is_fixed
  7137. FROM client
  7138. WHERE deleted_flag = 0
  7139. AND client_app_id = '10001'
  7140. AND client_app_key = '82a8bf439373e305'
  7141. 14:57:45.832 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  7142. A.oc_id,
  7143. B.oc_type_id,
  7144. B.oc_name,
  7145. A.account_id,
  7146. A.account_name,
  7147. A.account_real_name,
  7148. A.password,
  7149. A.account_type,
  7150. A.account_staff_no,
  7151. A.account_phone,
  7152. A.account_last_ip,
  7153. A.account_loc,
  7154. A.status,
  7155. A.account_avatar,
  7156. A.account_photo,
  7157. A.account_real_name,
  7158. A.account_intro,
  7159. A.wx_id,
  7160. A.is_fixed
  7161. FROM account AS A
  7162. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  7163. WHERE A.deleted_flag = 0
  7164. AND (A.account_name = 'sxky'
  7165. OR A.account_phone = 'sxky'
  7166. OR A.account_mail = 'sxky'
  7167. OR A.account_staff_no = 'sxky')
  7168. 14:57:45.840 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  7169. A.oc_id,
  7170. A.oc_name,
  7171. A.oc_type_id,
  7172. A.root_id,
  7173. A.parent_id,
  7174. A.admin_id,
  7175. B.account_name AS admin_name,
  7176. A.group_id,
  7177. A.node_left,
  7178. A.node_right,
  7179. A.node_level,
  7180. A.is_leaf,
  7181. A.status,
  7182. A.if_lic
  7183. FROM oc AS A
  7184. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  7185. WHERE A.oc_id = 406283
  7186. 14:57:45.850 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  7187. A.rm_id,
  7188. A.role_id,
  7189. B.role_type_id,
  7190. B.role_code,
  7191. B.role_name,
  7192. A.account_id
  7193. FROM s_role_member AS A
  7194. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  7195. WHERE account_id = 406283
  7196. LIMIT 1
  7197. 14:57:45.858 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  7198. A.gm_id,
  7199. A.oc_id,
  7200. A.group_id,
  7201. B.group_name,
  7202. B.node_left ,
  7203. B.node_right,
  7204. A.account_id
  7205. FROM s_group_member AS A
  7206. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  7207. WHERE B.deleted_flag = 0
  7208. AND A.oc_id = 406283
  7209. AND A.account_id = 406283
  7210. LIMIT 1
  7211. 14:57:45.869 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  7212. A.gmp_id,
  7213. A.oc_id,
  7214. A.group_id,
  7215. B.group_name,
  7216. A.account_id,
  7217. D.account_name,
  7218. D.account_real_name,
  7219. A.position_id,
  7220. C.position_name
  7221. FROM s_group_member_position A
  7222. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  7223. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  7224. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  7225. WHERE A.deleted_flag = 0
  7226. AND A.oc_id = 406283
  7227. AND A.group_id = 406283
  7228. AND A.account_id = 406283
  7229. LIMIT 1
  7230. 14:57:45.877 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  7231. A.gmpg_id,
  7232. A.oc_id,
  7233. A.group_id,
  7234. A.account_id,
  7235. A.position_id,
  7236. A.grant_group_id,
  7237. B.group_name AS grant_group_name
  7238. FROM s_group_member_position_grant A
  7239. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  7240. WHERE A.deleted_flag = 0
  7241. AND A.oc_id = 406283
  7242. AND A.group_id = 406283
  7243. AND A.account_id = 406283
  7244. AND A.position_id = 406283
  7245. LIMIT 1
  7246. 14:57:46.003 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:46 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  7247. client_id,
  7248. client_title,
  7249. client_app_id,
  7250. client_app_key,
  7251. client_app_secret,
  7252. client_desc,
  7253. status,
  7254. is_fixed
  7255. FROM client
  7256. WHERE deleted_flag = 0
  7257. AND client_app_id = '10001'
  7258. AND client_app_key = '82a8bf439373e305'
  7259. 14:57:46.027 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:46 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  7260. A.client_id,
  7261. A.role_id,
  7262. A.permit_id,
  7263. A.permit_title,
  7264. A.permit_code,
  7265. A.permit_entry,
  7266. A.permit_desc,
  7267. A.permit_type,
  7268. A.parent_id,
  7269. A.root_id,
  7270. A.sort_no,
  7271. A.is_home
  7272. FROM s_role_permit AS A
  7273. WHERE 1 = 1
  7274. AND A.client_id = 2
  7275. AND A.role_id = 6
  7276. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7277. 14:57:46.596 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:46 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  7278. 14:57:46.630 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:46 | Time Consuming: 28 ms | Connection: statement-0 | SQL: SELECT count(*)
  7279. FROM msg AS M
  7280. WHERE M.oc_id = 406283
  7281. AND (
  7282. EXISTS (
  7283. SELECT 1 FROM msg_to TT
  7284. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7285. ) OR
  7286. EXISTS (
  7287. SELECT 1 FROM msg_cc CC
  7288. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7289. )
  7290. )
  7291. 14:57:47.291 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  7292. 14:57:47.296 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7293. 14:57:47.306 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:47 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  7294. FROM goaf_sensor
  7295. where oc_id = 406283
  7296. LIMIT 10
  7297. 14:57:57.708 [XNIO-1 task-5] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 6 ms | Connection: statement-2 | SQL: SELECT 1
  7298. 14:57:57.708 [XNIO-1 task-4] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 6 ms | Connection: statement-3 | SQL: SELECT 1
  7299. 14:57:57.708 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  7300. 14:57:57.708 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT 1
  7301. 14:57:57.720 [XNIO-1 task-2] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  7302. oc_id,
  7303. map_id,
  7304. map_title,
  7305. map_desc,
  7306. map_cat_id,
  7307. map_raster_layer,
  7308. map_type_id
  7309. FROM ent_map
  7310. WHERE 1 = 1 AND deleted_flag = 0
  7311. AND oc_id = 406283
  7312. 14:57:57.723 [XNIO-1 task-4] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 7 ms | Connection: statement-3 | SQL: SELECT
  7313. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  7314. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  7315. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  7316. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  7317. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  7318. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  7319. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  7320. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  7321. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  7322. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  7323. FROM goaf_hdanger AS A
  7324. WHERE A.oc_id = 406283 AND A.status != -1
  7325. AND A.hdanger_type = '0'
  7326. ORDER BY A.submit_time DESC
  7327. 14:57:57.723 [XNIO-1 task-5] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT
  7328. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  7329. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  7330. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  7331. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  7332. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  7333. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  7334. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  7335. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  7336. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  7337. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  7338. FROM goaf_hdanger AS A
  7339. WHERE A.oc_id = 406283 AND A.status != -1
  7340. AND A.hdanger_type = '1'
  7341. ORDER BY A.submit_time DESC
  7342. 14:57:57.724 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT
  7343. A.hdanger_id,
  7344. A.oc_id,
  7345. A.goaf_id,
  7346. A.hdanger_title,
  7347. A.hdanger_level,
  7348. A.hdanger_type,
  7349. A.checklist_id,
  7350. A.hdanger_desc,
  7351. A.submit_group_id,
  7352. A.submit_group_name,
  7353. A.submit_position_id,
  7354. A.submit_position_name,
  7355. A.submit_account_id,
  7356. A.submit_account_name,
  7357. A.submit_time,
  7358. A.review_group_id,
  7359. A.review_group_name,
  7360. A.review_position_id,
  7361. A.review_position_name,
  7362. A.review_account_id,
  7363. A.review_account_name,
  7364. A.danger_deadline,
  7365. A.review_time,
  7366. A.review_remark,
  7367. A.rectify_group_id,
  7368. A.rectify_group_name,
  7369. A.rectify_position_id,
  7370. A.rectify_position_name,
  7371. A.rectify_account_id,
  7372. A.rectify_account_name,
  7373. A.rectify_time,
  7374. A.danger_reason,
  7375. A.rectify_measure,
  7376. A.rectify_remark,
  7377. A.accept_group_id,
  7378. A.accept_group_name,
  7379. A.accept_position_id,
  7380. A.accept_position_name,
  7381. A.accept_account_id,
  7382. A.accept_account_name,
  7383. A.accept_time,
  7384. A.accept_remark,
  7385. A.finish_time,
  7386. A.status,
  7387. B.wf_def_id,
  7388. B.wf_ins_id,
  7389. B.wf_ins_title,
  7390. B.cur_group_id,
  7391. B.cur_group_name,
  7392. B.cur_position_id,
  7393. B.cur_position_name,
  7394. B.cur_account_id,
  7395. B.cur_account_name,
  7396. B.cur_activity_ins_id,
  7397. B.cur_activity_code,
  7398. B.cur_activity_title,
  7399. B.cur_form_code,
  7400. B.cur_activity_begin_time
  7401. FROM goaf_hdanger AS A
  7402. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  7403. WHERE A.oc_id = 406283
  7404. AND A.hdanger_type = '1'
  7405. ORDER BY A.submit_time DESC
  7406. 14:57:57.770 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:57:57 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT A.goaflayer_id,
  7407. A.oc_id,
  7408. A.goaf_id,
  7409. A.goaf_name,
  7410. A.map_id,
  7411. A.layer_id,
  7412. B.layer_cat_id,
  7413. B.layer_title,
  7414. B.layer_marker,
  7415. B.layer_vector,
  7416. B.layer_vector_type
  7417. FROM goaf_map_layer AS A
  7418. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  7419. WHERE A.oc_id = 406283
  7420. AND A.map_id = '406283'
  7421. 14:58:34.310 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 14:58:34 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  7422. 14:58:34.318 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 14:58:34 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  7423. FROM goaf_sensor
  7424. WHERE goaf_sensor_ip = '192.168.3.12'
  7425. 14:59:08.559 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:59:08 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  7426. 14:59:08.600 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:59:08 | Time Consuming: 33 ms | Connection: statement-1 | SQL: SELECT count(*)
  7427. FROM msg AS M
  7428. WHERE M.oc_id = 406283
  7429. AND (
  7430. EXISTS (
  7431. SELECT 1 FROM msg_to TT
  7432. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7433. ) OR
  7434. EXISTS (
  7435. SELECT 1 FROM msg_cc CC
  7436. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7437. )
  7438. )
  7439. 14:59:09.109 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:59:09 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7440. 14:59:09.115 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:59:09 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7441. FROM goaf_sensor
  7442. where oc_id = 406283
  7443. LIMIT 10
  7444. 14:59:11.435 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:59:11 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  7445. 14:59:11.464 [XNIO-1 task-3] INFO p6spy - 2023-08-24 14:59:11 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT *
  7446. FROM goaf_sensordata
  7447. WHERE oc_id = 406283
  7448. ORDER BY goaf_datareport_time DESC
  7449. LIMIT 1
  7450. 14:59:49.777 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 14:59:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  7451. 14:59:49.781 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 14:59:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  7452. FROM goaf_sensor
  7453. WHERE goaf_sensor_ip = '192.168.3.12'
  7454. 15:01:05.249 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 15:01:05 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  7455. 15:01:05.259 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 15:01:05 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT *
  7456. FROM goaf_sensor
  7457. WHERE goaf_sensor_ip = '192.168.3.12'
  7458. 15:01:18.382 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT 1
  7459. 15:01:18.384 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  7460. 15:01:18.384 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT 1
  7461. 15:01:18.391 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 4 ms | Connection: statement-3 | SQL: SELECT *
  7462. FROM goaf_syscfg
  7463. WHERE oc_id = 406283
  7464. 15:01:18.393 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7465. 15:01:18.394 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  7466. FROM goaf_baseinfo
  7467. WHERE oc_id = 406283
  7468. 15:01:18.398 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:18 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7469. FROM goaf_devinfo
  7470. where oc_id = 406283
  7471. LIMIT 10
  7472. 15:01:24.984 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:24 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  7473. 15:01:24.993 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:24 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  7474. client_id,
  7475. client_title,
  7476. client_app_id,
  7477. client_app_key,
  7478. client_app_secret,
  7479. client_desc,
  7480. status,
  7481. is_fixed
  7482. FROM client
  7483. WHERE deleted_flag = 0
  7484. AND client_app_id = '10001'
  7485. AND client_app_key = '82a8bf439373e305'
  7486. 15:01:25.012 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  7487. A.oc_id,
  7488. B.oc_type_id,
  7489. B.oc_name,
  7490. A.account_id,
  7491. A.account_name,
  7492. A.account_real_name,
  7493. A.password,
  7494. A.account_type,
  7495. A.account_staff_no,
  7496. A.account_phone,
  7497. A.account_last_ip,
  7498. A.account_loc,
  7499. A.status,
  7500. A.account_avatar,
  7501. A.account_photo,
  7502. A.account_real_name,
  7503. A.account_intro,
  7504. A.wx_id,
  7505. A.is_fixed
  7506. FROM account AS A
  7507. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  7508. WHERE A.deleted_flag = 0
  7509. AND (A.account_name = 'sxky'
  7510. OR A.account_phone = 'sxky'
  7511. OR A.account_mail = 'sxky'
  7512. OR A.account_staff_no = 'sxky')
  7513. 15:01:25.016 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  7514. A.oc_id,
  7515. A.oc_name,
  7516. A.oc_type_id,
  7517. A.root_id,
  7518. A.parent_id,
  7519. A.admin_id,
  7520. B.account_name AS admin_name,
  7521. A.group_id,
  7522. A.node_left,
  7523. A.node_right,
  7524. A.node_level,
  7525. A.is_leaf,
  7526. A.status,
  7527. A.if_lic
  7528. FROM oc AS A
  7529. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  7530. WHERE A.oc_id = 406283
  7531. 15:01:25.020 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  7532. A.rm_id,
  7533. A.role_id,
  7534. B.role_type_id,
  7535. B.role_code,
  7536. B.role_name,
  7537. A.account_id
  7538. FROM s_role_member AS A
  7539. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  7540. WHERE account_id = 406283
  7541. LIMIT 1
  7542. 15:01:25.025 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  7543. A.gm_id,
  7544. A.oc_id,
  7545. A.group_id,
  7546. B.group_name,
  7547. B.node_left ,
  7548. B.node_right,
  7549. A.account_id
  7550. FROM s_group_member AS A
  7551. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  7552. WHERE B.deleted_flag = 0
  7553. AND A.oc_id = 406283
  7554. AND A.account_id = 406283
  7555. LIMIT 1
  7556. 15:01:25.031 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  7557. A.gmp_id,
  7558. A.oc_id,
  7559. A.group_id,
  7560. B.group_name,
  7561. A.account_id,
  7562. D.account_name,
  7563. D.account_real_name,
  7564. A.position_id,
  7565. C.position_name
  7566. FROM s_group_member_position A
  7567. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  7568. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  7569. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  7570. WHERE A.deleted_flag = 0
  7571. AND A.oc_id = 406283
  7572. AND A.group_id = 406283
  7573. AND A.account_id = 406283
  7574. LIMIT 1
  7575. 15:01:25.037 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  7576. A.gmpg_id,
  7577. A.oc_id,
  7578. A.group_id,
  7579. A.account_id,
  7580. A.position_id,
  7581. A.grant_group_id,
  7582. B.group_name AS grant_group_name
  7583. FROM s_group_member_position_grant A
  7584. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  7585. WHERE A.deleted_flag = 0
  7586. AND A.oc_id = 406283
  7587. AND A.group_id = 406283
  7588. AND A.account_id = 406283
  7589. AND A.position_id = 406283
  7590. LIMIT 1
  7591. 15:01:25.087 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  7592. client_id,
  7593. client_title,
  7594. client_app_id,
  7595. client_app_key,
  7596. client_app_secret,
  7597. client_desc,
  7598. status,
  7599. is_fixed
  7600. FROM client
  7601. WHERE deleted_flag = 0
  7602. AND client_app_id = '10001'
  7603. AND client_app_key = '82a8bf439373e305'
  7604. 15:01:25.107 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  7605. A.client_id,
  7606. A.role_id,
  7607. A.permit_id,
  7608. A.permit_title,
  7609. A.permit_code,
  7610. A.permit_entry,
  7611. A.permit_desc,
  7612. A.permit_type,
  7613. A.parent_id,
  7614. A.root_id,
  7615. A.sort_no,
  7616. A.is_home
  7617. FROM s_role_permit AS A
  7618. WHERE 1 = 1
  7619. AND A.client_id = 2
  7620. AND A.role_id = 6
  7621. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7622. 15:01:25.555 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:25 | Time Consuming: 26 ms | Connection: statement-1 | SQL: SELECT count(*)
  7623. FROM msg AS M
  7624. WHERE M.oc_id = 406283
  7625. AND (
  7626. EXISTS (
  7627. SELECT 1 FROM msg_to TT
  7628. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7629. ) OR
  7630. EXISTS (
  7631. SELECT 1 FROM msg_cc CC
  7632. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7633. )
  7634. )
  7635. 15:01:26.028 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:26 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7636. 15:01:26.033 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:26 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  7637. FROM goaf_sensor
  7638. where oc_id = 406283
  7639. LIMIT 10
  7640. 15:01:35.493 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:35 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  7641. 15:01:35.502 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:35 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7642. FROM goaf_sensordata
  7643. WHERE oc_id = 406283
  7644. ORDER BY goaf_datareport_time DESC
  7645. LIMIT 1
  7646. 15:01:37.637 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:37 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  7647. 15:01:37.638 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:37 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  7648. 15:01:37.642 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  7649. COUNT(*) AS 'goafSensorTotalNum',
  7650. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  7651. FROM goaf_sensor
  7652. WHERE oc_id = 406283
  7653. 15:01:37.643 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:37 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7654. 15:01:37.647 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:37 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  7655. FROM goaf_sensor
  7656. where oc_id = 406283
  7657. LIMIT 10
  7658. 15:01:54.456 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:54 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT 1
  7659. 15:01:54.456 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:54 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT 1
  7660. 15:01:54.461 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:54 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7661. 15:01:54.466 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:01:54 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  7662. FROM goaf_sensor
  7663. where oc_id = 406283
  7664. LIMIT 10
  7665. 15:01:54.466 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:01:54 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7666. FROM goaf_syscfg
  7667. WHERE oc_id = 406283
  7668. 15:02:20.720 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 15:02:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  7669. 15:02:20.726 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 15:02:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  7670. FROM goaf_sensor
  7671. WHERE goaf_sensor_ip = '192.168.3.12'
  7672. 15:03:05.603 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:05 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT 1
  7673. 15:03:05.608 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:05 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7674. 15:03:05.616 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:05 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT *
  7675. FROM goaf_sensor
  7676. where oc_id = 406283
  7677. LIMIT 10
  7678. 15:03:07.145 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  7679. 15:03:07.145 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  7680. 15:03:07.146 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 4 ms | Connection: statement-3 | SQL: SELECT 1
  7681. 15:03:07.153 [XNIO-1 task-5] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  7682. FROM goaf_syscfg
  7683. WHERE oc_id = 406283
  7684. 15:03:07.154 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7685. 15:03:07.156 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 5 ms | Connection: statement-3 | SQL: SELECT *
  7686. FROM goaf_baseinfo
  7687. WHERE oc_id = 406283
  7688. 15:03:07.159 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:07 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7689. FROM goaf_devinfo
  7690. where oc_id = 406283
  7691. LIMIT 10
  7692. 15:03:08.025 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:08 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  7693. 15:03:08.034 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:03:08 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7694. FROM goaf_sensordata
  7695. WHERE oc_id = 406283
  7696. ORDER BY goaf_datareport_time DESC
  7697. LIMIT 1
  7698. 15:03:36.187 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 15:03:36 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  7699. 15:03:36.191 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 15:03:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  7700. FROM goaf_sensor
  7701. WHERE goaf_sensor_ip = '192.168.3.12'
  7702. 15:04:51.611 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 15:04:51 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  7703. 15:04:51.619 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 15:04:51 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  7704. FROM goaf_sensor
  7705. WHERE goaf_sensor_ip = '192.168.3.12'
  7706. 15:06:07.136 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 15:06:07 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7707. 15:06:07.142 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 15:06:07 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  7708. FROM goaf_sensor
  7709. WHERE goaf_sensor_ip = '192.168.3.12'
  7710. 15:06:28.630 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:06:28 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7711. 15:06:28.644 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:06:28 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT *
  7712. FROM goaf_sensordata
  7713. WHERE oc_id = 406283
  7714. ORDER BY goaf_datareport_time DESC
  7715. LIMIT 1
  7716. 15:07:22.574 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-24 15:07:22 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT 1
  7717. 15:07:22.581 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-24 15:07:22 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  7718. FROM goaf_sensor
  7719. WHERE goaf_sensor_ip = '192.168.3.12'
  7720. 15:07:29.415 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:07:29 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT 1
  7721. 15:07:29.439 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:07:29 | Time Consuming: 23 ms | Connection: statement-5 | SQL: SELECT *
  7722. FROM goaf_sensor
  7723. oc_id = 442139
  7724. WHERE goaf_sensor_id = 442139
  7725. 15:08:38.070 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-24 15:08:38 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7726. 15:08:38.075 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-24 15:08:38 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7727. FROM goaf_sensor
  7728. WHERE goaf_sensor_ip = '192.168.3.12'
  7729. 15:09:35.604 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:09:35 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  7730. 15:09:35.609 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:09:35 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7731. FROM goaf_sensor
  7732. oc_id = 442139
  7733. WHERE goaf_sensor_id = 442139
  7734. 15:09:51.851 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:09:51 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7735. 15:09:51.857 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:09:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7736. FROM goaf_sensor
  7737. oc_id = 442139
  7738. WHERE goaf_sensor_id = 442139
  7739. 15:09:53.499 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-24 15:09:53 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7740. 15:09:53.507 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-24 15:09:53 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  7741. FROM goaf_sensor
  7742. WHERE goaf_sensor_ip = '192.168.3.12'
  7743. 15:10:01.531 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:10:01 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT 1
  7744. 15:10:01.536 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:10:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7745. FROM goaf_sensor
  7746. oc_id = 442135
  7747. WHERE goaf_sensor_id = 442135
  7748. 15:11:09.013 [nioEventLoopGroup-5-12] INFO p6spy - 2023-08-24 15:11:09 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT 1
  7749. 15:11:09.025 [nioEventLoopGroup-5-12] INFO p6spy - 2023-08-24 15:11:09 | Time Consuming: 11 ms | Connection: statement-5 | SQL: SELECT *
  7750. FROM goaf_sensor
  7751. WHERE goaf_sensor_ip = '192.168.3.12'
  7752. 15:12:24.446 [nioEventLoopGroup-5-13] INFO p6spy - 2023-08-24 15:12:24 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7753. 15:12:24.452 [nioEventLoopGroup-5-13] INFO p6spy - 2023-08-24 15:12:24 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  7754. FROM goaf_sensor
  7755. WHERE goaf_sensor_ip = '192.168.3.12'
  7756. 15:13:44.957 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 15:13:44 | Time Consuming: 5007 ms | Connection: statement-6 | SQL: SELECT 1
  7757. 15:13:44.965 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 15:13:44 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT 1
  7758. 15:13:49.968 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 15:13:49 | Time Consuming: 5001 ms | Connection: statement-8 | SQL: SELECT 1
  7759. 15:13:54.971 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 15:13:54 | Time Consuming: 5002 ms | Connection: statement-9 | SQL: SELECT 1
  7760. 15:13:54.977 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 15:13:54 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  7761. 15:13:54.983 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-24 15:13:54 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  7762. FROM goaf_sensor
  7763. WHERE goaf_sensor_ip = '192.168.3.12'
  7764. 15:15:10.403 [nioEventLoopGroup-5-15] INFO p6spy - 2023-08-24 15:15:10 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  7765. 15:15:10.408 [nioEventLoopGroup-5-15] INFO p6spy - 2023-08-24 15:15:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  7766. FROM goaf_sensor
  7767. WHERE goaf_sensor_ip = '192.168.3.12'
  7768. 15:16:25.851 [nioEventLoopGroup-5-16] INFO p6spy - 2023-08-24 15:16:25 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT 1
  7769. 15:16:25.858 [nioEventLoopGroup-5-16] INFO p6spy - 2023-08-24 15:16:25 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  7770. FROM goaf_sensor
  7771. WHERE goaf_sensor_ip = '192.168.3.12'
  7772. 15:17:41.319 [nioEventLoopGroup-5-17] INFO p6spy - 2023-08-24 15:17:41 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  7773. 15:17:41.326 [nioEventLoopGroup-5-17] INFO p6spy - 2023-08-24 15:17:41 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  7774. FROM goaf_sensor
  7775. WHERE goaf_sensor_ip = '192.168.3.12'
  7776. 15:18:56.787 [nioEventLoopGroup-5-18] INFO p6spy - 2023-08-24 15:18:56 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  7777. 15:18:56.795 [nioEventLoopGroup-5-18] INFO p6spy - 2023-08-24 15:18:56 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  7778. FROM goaf_sensor
  7779. WHERE goaf_sensor_ip = '192.168.3.12'
  7780. 15:20:12.257 [nioEventLoopGroup-5-19] INFO p6spy - 2023-08-24 15:20:12 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  7781. 15:20:12.263 [nioEventLoopGroup-5-19] INFO p6spy - 2023-08-24 15:20:12 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  7782. FROM goaf_sensor
  7783. WHERE goaf_sensor_ip = '192.168.3.12'
  7784. 15:21:27.727 [nioEventLoopGroup-5-20] INFO p6spy - 2023-08-24 15:21:27 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  7785. 15:21:27.732 [nioEventLoopGroup-5-20] INFO p6spy - 2023-08-24 15:21:27 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  7786. FROM goaf_sensor
  7787. WHERE goaf_sensor_ip = '192.168.3.12'
  7788. 15:22:43.195 [nioEventLoopGroup-5-21] INFO p6spy - 2023-08-24 15:22:43 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  7789. 15:22:43.200 [nioEventLoopGroup-5-21] INFO p6spy - 2023-08-24 15:22:43 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  7790. FROM goaf_sensor
  7791. WHERE goaf_sensor_ip = '192.168.3.12'
  7792. 15:22:47.112 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:22:47 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT 1
  7793. 15:22:47.122 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:22:47 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT
  7794. client_id,
  7795. client_title,
  7796. client_app_id,
  7797. client_app_key,
  7798. client_app_secret,
  7799. client_desc,
  7800. status,
  7801. is_fixed
  7802. FROM client
  7803. WHERE deleted_flag = 0
  7804. AND client_app_id = '10001'
  7805. AND client_app_key = '82a8bf439373e305'
  7806. 15:22:47.138 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:22:47 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT
  7807. A.client_id,
  7808. A.role_id,
  7809. A.permit_id,
  7810. A.permit_title,
  7811. A.permit_code,
  7812. A.permit_entry,
  7813. A.permit_desc,
  7814. A.permit_type,
  7815. A.parent_id,
  7816. A.root_id,
  7817. A.sort_no,
  7818. A.is_home
  7819. FROM s_role_permit AS A
  7820. WHERE 1 = 1
  7821. AND A.client_id = 2
  7822. AND A.role_id = 6
  7823. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7824. 15:22:47.314 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:22:47 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT 1
  7825. 15:22:47.322 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:22:47 | Time Consuming: 8 ms | Connection: statement-16 | SQL: SELECT *
  7826. FROM goaf_sensordata
  7827. WHERE oc_id = 406283
  7828. ORDER BY goaf_datareport_time DESC
  7829. LIMIT 1
  7830. 15:22:47.349 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:22:47 | Time Consuming: 27 ms | Connection: statement-17 | SQL: SELECT count(*)
  7831. FROM msg AS M
  7832. WHERE M.oc_id = 406283
  7833. AND (
  7834. EXISTS (
  7835. SELECT 1 FROM msg_to TT
  7836. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7837. ) OR
  7838. EXISTS (
  7839. SELECT 1 FROM msg_cc CC
  7840. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7841. )
  7842. )
  7843. 15:22:58.968 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:22:58 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT 1
  7844. 15:22:58.978 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:22:58 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT
  7845. client_id,
  7846. client_title,
  7847. client_app_id,
  7848. client_app_key,
  7849. client_app_secret,
  7850. client_desc,
  7851. status,
  7852. is_fixed
  7853. FROM client
  7854. WHERE deleted_flag = 0
  7855. AND client_app_id = '10001'
  7856. AND client_app_key = '82a8bf439373e305'
  7857. 15:22:58.994 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:22:58 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT
  7858. A.client_id,
  7859. A.role_id,
  7860. A.permit_id,
  7861. A.permit_title,
  7862. A.permit_code,
  7863. A.permit_entry,
  7864. A.permit_desc,
  7865. A.permit_type,
  7866. A.parent_id,
  7867. A.root_id,
  7868. A.sort_no,
  7869. A.is_home
  7870. FROM s_role_permit AS A
  7871. WHERE 1 = 1
  7872. AND A.client_id = 2
  7873. AND A.role_id = 6
  7874. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7875. 15:22:59.257 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:22:59 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  7876. 15:22:59.266 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:22:59 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT *
  7877. FROM goaf_sensordata
  7878. WHERE oc_id = 406283
  7879. ORDER BY goaf_datareport_time DESC
  7880. LIMIT 1
  7881. 15:22:59.283 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:22:59 | Time Consuming: 26 ms | Connection: statement-17 | SQL: SELECT count(*)
  7882. FROM msg AS M
  7883. WHERE M.oc_id = 406283
  7884. AND (
  7885. EXISTS (
  7886. SELECT 1 FROM msg_to TT
  7887. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7888. ) OR
  7889. EXISTS (
  7890. SELECT 1 FROM msg_cc CC
  7891. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7892. )
  7893. )
  7894. 15:23:37.263 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:37 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  7895. 15:23:37.275 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:37 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT
  7896. client_id,
  7897. client_title,
  7898. client_app_id,
  7899. client_app_key,
  7900. client_app_secret,
  7901. client_desc,
  7902. status,
  7903. is_fixed
  7904. FROM client
  7905. WHERE deleted_flag = 0
  7906. AND client_app_id = '10001'
  7907. AND client_app_key = '82a8bf439373e305'
  7908. 15:23:37.296 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:37 | Time Consuming: 6 ms | Connection: statement-17 | SQL: SELECT
  7909. A.client_id,
  7910. A.role_id,
  7911. A.permit_id,
  7912. A.permit_title,
  7913. A.permit_code,
  7914. A.permit_entry,
  7915. A.permit_desc,
  7916. A.permit_type,
  7917. A.parent_id,
  7918. A.root_id,
  7919. A.sort_no,
  7920. A.is_home
  7921. FROM s_role_permit AS A
  7922. WHERE 1 = 1
  7923. AND A.client_id = 2
  7924. AND A.role_id = 6
  7925. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7926. 15:23:37.562 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:23:37 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  7927. 15:23:37.572 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:23:37 | Time Consuming: 6 ms | Connection: statement-16 | SQL: SELECT *
  7928. FROM goaf_sensordata
  7929. WHERE oc_id = 406283
  7930. ORDER BY goaf_datareport_time DESC
  7931. LIMIT 1
  7932. 15:23:37.589 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:37 | Time Consuming: 27 ms | Connection: statement-17 | SQL: SELECT count(*)
  7933. FROM msg AS M
  7934. WHERE M.oc_id = 406283
  7935. AND (
  7936. EXISTS (
  7937. SELECT 1 FROM msg_to TT
  7938. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7939. ) OR
  7940. EXISTS (
  7941. SELECT 1 FROM msg_cc CC
  7942. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7943. )
  7944. )
  7945. 15:23:50.801 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:50 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  7946. 15:23:50.810 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:50 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT *
  7947. FROM goaf_sensordata
  7948. WHERE oc_id = 406283
  7949. ORDER BY goaf_datareport_time DESC
  7950. LIMIT 1
  7951. 15:23:54.235 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:54 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT 1
  7952. 15:23:54.244 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:23:54 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT *
  7953. FROM goaf_sensordata
  7954. WHERE oc_id = 406283
  7955. ORDER BY goaf_datareport_time DESC
  7956. LIMIT 1
  7957. 15:23:58.668 [nioEventLoopGroup-5-22] INFO p6spy - 2023-08-24 15:23:58 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT 1
  7958. 15:23:58.673 [nioEventLoopGroup-5-22] INFO p6spy - 2023-08-24 15:23:58 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  7959. FROM goaf_sensor
  7960. WHERE goaf_sensor_ip = '192.168.3.12'
  7961. 15:24:02.818 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:02 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  7962. 15:24:02.829 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:02 | Time Consuming: 6 ms | Connection: statement-17 | SQL: SELECT *
  7963. FROM goaf_sensordata
  7964. WHERE oc_id = 406283
  7965. ORDER BY goaf_datareport_time DESC
  7966. LIMIT 1
  7967. 15:24:03.150 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:03 | Time Consuming: 7 ms | Connection: statement-17 | SQL: SELECT *
  7968. FROM goaf_sensordata
  7969. WHERE oc_id = 406283
  7970. ORDER BY goaf_datareport_time DESC
  7971. LIMIT 1
  7972. 15:24:43.650 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:43 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT 1
  7973. 15:24:43.660 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:43 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT
  7974. client_id,
  7975. client_title,
  7976. client_app_id,
  7977. client_app_key,
  7978. client_app_secret,
  7979. client_desc,
  7980. status,
  7981. is_fixed
  7982. FROM client
  7983. WHERE deleted_flag = 0
  7984. AND client_app_id = '10001'
  7985. AND client_app_key = '82a8bf439373e305'
  7986. 15:24:43.678 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:43 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT
  7987. A.client_id,
  7988. A.role_id,
  7989. A.permit_id,
  7990. A.permit_title,
  7991. A.permit_code,
  7992. A.permit_entry,
  7993. A.permit_desc,
  7994. A.permit_type,
  7995. A.parent_id,
  7996. A.root_id,
  7997. A.sort_no,
  7998. A.is_home
  7999. FROM s_role_permit AS A
  8000. WHERE 1 = 1
  8001. AND A.client_id = 2
  8002. AND A.role_id = 6
  8003. ORDER BY A.parent_id ASC ,A.sort_no ASC
  8004. 15:24:43.957 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:24:43 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  8005. 15:24:43.962 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:24:43 | Time Consuming: 7 ms | Connection: statement-17 | SQL: SELECT *
  8006. FROM goaf_sensordata
  8007. WHERE oc_id = 406283
  8008. ORDER BY goaf_datareport_time DESC
  8009. LIMIT 1
  8010. 15:24:43.989 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:24:43 | Time Consuming: 26 ms | Connection: statement-16 | SQL: SELECT count(*)
  8011. FROM msg AS M
  8012. WHERE M.oc_id = 406283
  8013. AND (
  8014. EXISTS (
  8015. SELECT 1 FROM msg_to TT
  8016. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  8017. ) OR
  8018. EXISTS (
  8019. SELECT 1 FROM msg_cc CC
  8020. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  8021. )
  8022. )
  8023. 15:25:14.135 [nioEventLoopGroup-5-23] INFO p6spy - 2023-08-24 15:25:14 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  8024. 15:25:14.141 [nioEventLoopGroup-5-23] INFO p6spy - 2023-08-24 15:25:14 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  8025. FROM goaf_sensor
  8026. WHERE goaf_sensor_ip = '192.168.3.12'
  8027. 15:26:29.606 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-24 15:26:29 | Time Consuming: 6 ms | Connection: statement-16 | SQL: SELECT 1
  8028. 15:26:29.611 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-24 15:26:29 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  8029. FROM goaf_sensor
  8030. WHERE goaf_sensor_ip = '192.168.3.12'
  8031. 15:26:32.614 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:26:32 | Time Consuming: 7 ms | Connection: statement-16 | SQL: SELECT 1
  8032. 15:26:32.627 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:26:32 | Time Consuming: 8 ms | Connection: statement-16 | SQL: SELECT
  8033. client_id,
  8034. client_title,
  8035. client_app_id,
  8036. client_app_key,
  8037. client_app_secret,
  8038. client_desc,
  8039. status,
  8040. is_fixed
  8041. FROM client
  8042. WHERE deleted_flag = 0
  8043. AND client_app_id = '10001'
  8044. AND client_app_key = '82a8bf439373e305'
  8045. 15:26:32.661 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:26:32 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT
  8046. A.client_id,
  8047. A.role_id,
  8048. A.permit_id,
  8049. A.permit_title,
  8050. A.permit_code,
  8051. A.permit_entry,
  8052. A.permit_desc,
  8053. A.permit_type,
  8054. A.parent_id,
  8055. A.root_id,
  8056. A.sort_no,
  8057. A.is_home
  8058. FROM s_role_permit AS A
  8059. WHERE 1 = 1
  8060. AND A.client_id = 2
  8061. AND A.role_id = 6
  8062. ORDER BY A.parent_id ASC ,A.sort_no ASC
  8063. 15:26:32.937 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:26:32 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT 1
  8064. 15:26:32.940 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:26:32 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT *
  8065. FROM goaf_sensordata
  8066. WHERE oc_id = 406283
  8067. ORDER BY goaf_datareport_time DESC
  8068. LIMIT 1
  8069. 15:26:32.976 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:26:32 | Time Consuming: 30 ms | Connection: statement-17 | SQL: SELECT count(*)
  8070. FROM msg AS M
  8071. WHERE M.oc_id = 406283
  8072. AND (
  8073. EXISTS (
  8074. SELECT 1 FROM msg_to TT
  8075. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  8076. ) OR
  8077. EXISTS (
  8078. SELECT 1 FROM msg_cc CC
  8079. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  8080. )
  8081. )
  8082. 15:27:45.077 [nioEventLoopGroup-5-25] INFO p6spy - 2023-08-24 15:27:45 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  8083. 15:27:45.082 [nioEventLoopGroup-5-25] INFO p6spy - 2023-08-24 15:27:45 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  8084. FROM goaf_sensor
  8085. WHERE goaf_sensor_ip = '192.168.3.12'
  8086. 15:29:00.553 [nioEventLoopGroup-5-26] INFO p6spy - 2023-08-24 15:29:00 | Time Consuming: 10 ms | Connection: statement-16 | SQL: SELECT 1
  8087. 15:29:00.559 [nioEventLoopGroup-5-26] INFO p6spy - 2023-08-24 15:29:00 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT *
  8088. FROM goaf_sensor
  8089. WHERE goaf_sensor_ip = '192.168.3.12'
  8090. 15:30:21.016 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-24 15:30:21 | Time Consuming: 5001 ms | Connection: statement-18 | SQL: SELECT 1
  8091. 15:30:21.022 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-24 15:30:21 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8092. 15:30:21.027 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-24 15:30:21 | Time Consuming: 5 ms | Connection: statement-21 | SQL: SELECT *
  8093. FROM goaf_sensor
  8094. WHERE goaf_sensor_ip = '192.168.3.12'
  8095. 15:31:36.506 [nioEventLoopGroup-5-28] INFO p6spy - 2023-08-24 15:31:36 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8096. 15:31:36.511 [nioEventLoopGroup-5-28] INFO p6spy - 2023-08-24 15:31:36 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT *
  8097. FROM goaf_sensor
  8098. WHERE goaf_sensor_ip = '192.168.3.12'
  8099. 15:32:51.978 [nioEventLoopGroup-5-29] INFO p6spy - 2023-08-24 15:32:51 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8100. 15:32:51.985 [nioEventLoopGroup-5-29] INFO p6spy - 2023-08-24 15:32:51 | Time Consuming: 7 ms | Connection: statement-21 | SQL: SELECT *
  8101. FROM goaf_sensor
  8102. WHERE goaf_sensor_ip = '192.168.3.12'
  8103. 15:34:07.447 [nioEventLoopGroup-5-30] INFO p6spy - 2023-08-24 15:34:07 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8104. 15:34:07.452 [nioEventLoopGroup-5-30] INFO p6spy - 2023-08-24 15:34:07 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT *
  8105. FROM goaf_sensor
  8106. WHERE goaf_sensor_ip = '192.168.3.12'
  8107. 15:35:22.919 [nioEventLoopGroup-5-31] INFO p6spy - 2023-08-24 15:35:22 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8108. 15:35:22.924 [nioEventLoopGroup-5-31] INFO p6spy - 2023-08-24 15:35:22 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT *
  8109. FROM goaf_sensor
  8110. WHERE goaf_sensor_ip = '192.168.3.12'
  8111. 15:36:38.384 [nioEventLoopGroup-5-32] INFO p6spy - 2023-08-24 15:36:38 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8112. 15:36:38.389 [nioEventLoopGroup-5-32] INFO p6spy - 2023-08-24 15:36:38 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT *
  8113. FROM goaf_sensor
  8114. WHERE goaf_sensor_ip = '192.168.3.12'
  8115. 15:37:53.859 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:37:53 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  8116. 15:37:53.863 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:37:53 | Time Consuming: 3 ms | Connection: statement-21 | SQL: SELECT *
  8117. FROM goaf_sensor
  8118. WHERE goaf_sensor_ip = '192.168.3.12'
  8119. 15:39:09.332 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 15:39:09 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT 1
  8120. 15:39:09.338 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 15:39:09 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT *
  8121. FROM goaf_sensor
  8122. WHERE goaf_sensor_ip = '192.168.3.12'
  8123. 15:40:24.811 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 15:40:24 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT 1
  8124. 15:40:24.817 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 15:40:24 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT *
  8125. FROM goaf_sensor
  8126. WHERE goaf_sensor_ip = '192.168.3.12'
  8127. 15:41:40.276 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 15:41:40 | Time Consuming: 7 ms | Connection: statement-27 | SQL: SELECT 1
  8128. 15:41:40.284 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 15:41:40 | Time Consuming: 6 ms | Connection: statement-27 | SQL: SELECT *
  8129. FROM goaf_sensor
  8130. WHERE goaf_sensor_ip = '192.168.3.12'
  8131. 15:42:55.749 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 15:42:55 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT 1
  8132. 15:42:55.754 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-24 15:42:55 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT *
  8133. FROM goaf_sensor
  8134. WHERE goaf_sensor_ip = '192.168.3.12'
  8135. 15:43:26.139 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:43:26 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT 1
  8136. 15:43:26.144 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:43:26 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT *
  8137. FROM goaf_sensor
  8138. oc_id = 442135
  8139. WHERE goaf_sensor_id = 442135
  8140. 15:43:40.644 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:43:40 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT 1
  8141. 15:43:40.654 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:43:40 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT *
  8142. FROM goaf_sensordata
  8143. WHERE oc_id = 406283
  8144. ORDER BY goaf_datareport_time DESC
  8145. LIMIT 1
  8146. 15:44:07.445 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:44:07 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT 1
  8147. 15:44:07.459 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:44:07 | Time Consuming: 3 ms | Connection: statement-27 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  8148. 15:44:07.498 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:44:07 | Time Consuming: 37 ms | Connection: statement-27 | SQL: SELECT *
  8149. FROM goaf_sensordata
  8150. WHERE oc_id = 406283
  8151. ORDER BY goaf_datareport_time DESC
  8152. LIMIT 10
  8153. 15:44:11.209 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 15:44:11 | Time Consuming: 3 ms | Connection: statement-27 | SQL: SELECT 1
  8154. 15:44:11.213 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-24 15:44:11 | Time Consuming: 3 ms | Connection: statement-27 | SQL: SELECT *
  8155. FROM goaf_sensor
  8156. WHERE goaf_sensor_ip = '192.168.3.12'
  8157. 15:44:45.529 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:44:45 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT 1
  8158. 15:44:45.541 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:44:45 | Time Consuming: 6 ms | Connection: statement-27 | SQL: SELECT *
  8159. FROM goaf_sensordata
  8160. WHERE oc_id = 406283
  8161. ORDER BY goaf_datareport_time DESC
  8162. LIMIT 1
  8163. 15:45:26.635 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 15:45:26 | Time Consuming: 6 ms | Connection: statement-27 | SQL: SELECT 1
  8164. 15:45:26.641 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-24 15:45:26 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT *
  8165. FROM goaf_sensor
  8166. WHERE goaf_sensor_ip = '192.168.3.12'
  8167. 15:45:34.553 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:45:34 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT 1
  8168. 15:45:34.566 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:45:34 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  8169. 15:45:34.594 [XNIO-1 task-4] INFO p6spy - 2023-08-24 15:45:34 | Time Consuming: 27 ms | Connection: statement-27 | SQL: SELECT *
  8170. FROM goaf_sensordata
  8171. WHERE oc_id = 406283
  8172. ORDER BY goaf_datareport_time DESC
  8173. LIMIT 10
  8174. 15:46:47.149 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 15:46:47 | Time Consuming: 5002 ms | Connection: statement-29 | SQL: SELECT 1
  8175. 15:46:47.154 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 15:46:47 | Time Consuming: 4 ms | Connection: statement-32 | SQL: SELECT 1
  8176. 15:46:47.159 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-24 15:46:47 | Time Consuming: 4 ms | Connection: statement-32 | SQL: SELECT *
  8177. FROM goaf_sensor
  8178. WHERE goaf_sensor_ip = '192.168.3.12'
  8179. 15:47:52.321 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8180. 15:47:52.322 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8181. 15:47:52.324 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8182. 15:47:52.326 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8183. 15:47:52.326 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8184. 15:47:52.326 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8185. 15:47:52.332 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8186. 15:47:52.333 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8187. 15:47:52.333 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8188. 15:47:52.333 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8189. 15:47:52.333 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8190. 15:47:52.345 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8191. 15:47:52.348 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  8192. 15:50:19.766 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  8193. 15:50:19.815 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10396 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  8194. 15:50:19.815 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  8195. 15:50:19.871 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  8196. 15:50:19.872 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  8197. 15:50:21.646 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  8198. 15:50:21.650 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8199. 15:50:21.746 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 83 ms. Found 0 Redis repository interfaces.
  8200. 15:50:21.912 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  8201. 15:50:21.929 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  8202. 15:50:22.637 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  8203. 15:50:22.638 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2766 ms
  8204. 15:50:24.962 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  8205. 15:50:24.971 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  8206. 15:50:24.971 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  8207. 15:50:24.972 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  8208. 15:50:24.972 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  8209. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  8210. NOT STARTED.
  8211. Currently in standby mode.
  8212. Number of jobs executed: 0
  8213. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  8214. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  8215. 15:50:24.973 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  8216. 15:50:24.973 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  8217. 15:50:24.973 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2282d2a3
  8218. 15:50:26.493 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  8219. 15:50:26.498 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  8220. 15:50:26.646 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  8221. 15:50:26.679 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8222. 15:50:26.679 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  8223. 15:50:26.680 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  8224. 15:50:26.700 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  8225. 15:50:26.709 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  8226. 15:50:26.718 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  8227. 15:50:26.747 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  8228. 15:50:26.799 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  8229. 15:50:26.802 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  8230. 15:50:26.802 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8231. 15:50:26.828 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.524 seconds (process running for 8.844)
  8232. 15:50:26.830 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  8233. 15:50:26.838 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  8234. 15:50:27.173 [restartedMain] INFO p6spy - 2023-08-24 15:50:27 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  8235. 15:50:27.177 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@4cf99d59
  8236. 15:50:27.180 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  8237. 15:50:27.243 [restartedMain] INFO p6spy - 2023-08-24 15:50:27 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8238. A.job_id,
  8239. A.job_title,
  8240. A.job_desc,
  8241. A.status,
  8242. A.job_type,
  8243. A.job_code,
  8244. A.job_cron,
  8245. A.job_class_id,
  8246. B.job_class,
  8247. A.cycle_title,
  8248. A.cycle_period,
  8249. A.cycle_unit
  8250. FROM job AS A
  8251. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8252. WHERE A.deleted_flag = 0
  8253. AND A.status = 1
  8254. ORDER BY A.job_id ASC
  8255. 15:50:27.261 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8256. 15:50:27.263 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8257. 15:50:27.450 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:50:27 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  8258. FROM goaf_sensor
  8259. WHERE goaf_sensor_ip = '192.168.3.12'
  8260. 15:50:27.832 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  8261. 15:50:27.834 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  8262. 15:50:27.837 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  8263. 15:50:27.843 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-24 15:50:27 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8264. 15:50:51.052 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:51 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  8265. 15:50:51.075 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:51 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  8266. client_id,
  8267. client_title,
  8268. client_app_id,
  8269. client_app_key,
  8270. client_app_secret,
  8271. client_desc,
  8272. status,
  8273. is_fixed
  8274. FROM client
  8275. WHERE deleted_flag = 0
  8276. AND client_app_id = '10001'
  8277. AND client_app_key = '82a8bf439373e305'
  8278. 15:50:51.122 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:51 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT
  8279. A.client_id,
  8280. A.role_id,
  8281. A.permit_id,
  8282. A.permit_title,
  8283. A.permit_code,
  8284. A.permit_entry,
  8285. A.permit_desc,
  8286. A.permit_type,
  8287. A.parent_id,
  8288. A.root_id,
  8289. A.sort_no,
  8290. A.is_home
  8291. FROM s_role_permit AS A
  8292. WHERE 1 = 1
  8293. AND A.client_id = 2
  8294. AND A.role_id = 6
  8295. ORDER BY A.parent_id ASC ,A.sort_no ASC
  8296. 15:50:51.405 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:51 | Time Consuming: 49 ms | Connection: statement-0 | SQL: SELECT count(*)
  8297. FROM msg AS M
  8298. WHERE M.oc_id = 406283
  8299. AND (
  8300. EXISTS (
  8301. SELECT 1 FROM msg_to TT
  8302. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  8303. ) OR
  8304. EXISTS (
  8305. SELECT 1 FROM msg_cc CC
  8306. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  8307. )
  8308. )
  8309. 15:50:52.115 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:52 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT 1
  8310. 15:50:52.127 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:52 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  8311. 15:50:52.138 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:50:52 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  8312. FROM goaf_sensor
  8313. where oc_id = 406283
  8314. LIMIT 10
  8315. 15:51:01.147 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:01 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8316. 15:51:04.337 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8317. 15:51:04.348 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  8318. client_id,
  8319. client_title,
  8320. client_app_id,
  8321. client_app_key,
  8322. client_app_secret,
  8323. client_desc,
  8324. status,
  8325. is_fixed
  8326. FROM client
  8327. WHERE deleted_flag = 0
  8328. AND client_app_id = '10001'
  8329. AND client_app_key = '82a8bf439373e305'
  8330. 15:51:04.366 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  8331. A.oc_id,
  8332. B.oc_type_id,
  8333. B.oc_name,
  8334. A.account_id,
  8335. A.account_name,
  8336. A.account_real_name,
  8337. A.password,
  8338. A.account_type,
  8339. A.account_staff_no,
  8340. A.account_phone,
  8341. A.account_last_ip,
  8342. A.account_loc,
  8343. A.status,
  8344. A.account_avatar,
  8345. A.account_photo,
  8346. A.account_real_name,
  8347. A.account_intro,
  8348. A.wx_id,
  8349. A.is_fixed
  8350. FROM account AS A
  8351. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  8352. WHERE A.deleted_flag = 0
  8353. AND (A.account_name = 'system'
  8354. OR A.account_phone = 'system'
  8355. OR A.account_mail = 'system'
  8356. OR A.account_staff_no = 'system')
  8357. 15:51:04.372 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  8358. A.oc_id,
  8359. A.oc_name,
  8360. A.oc_type_id,
  8361. A.root_id,
  8362. A.parent_id,
  8363. A.admin_id,
  8364. B.account_name AS admin_name,
  8365. A.group_id,
  8366. A.node_left,
  8367. A.node_right,
  8368. A.node_level,
  8369. A.is_leaf,
  8370. A.status,
  8371. A.if_lic
  8372. FROM oc AS A
  8373. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  8374. WHERE A.oc_id = 1
  8375. 15:51:04.378 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  8376. A.rm_id,
  8377. A.role_id,
  8378. B.role_type_id,
  8379. B.role_code,
  8380. B.role_name,
  8381. A.account_id
  8382. FROM s_role_member AS A
  8383. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  8384. WHERE account_id = 1
  8385. LIMIT 1
  8386. 15:51:04.387 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8387. A.gm_id,
  8388. A.oc_id,
  8389. A.group_id,
  8390. B.group_name,
  8391. B.node_left ,
  8392. B.node_right,
  8393. A.account_id
  8394. FROM s_group_member AS A
  8395. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  8396. WHERE B.deleted_flag = 0
  8397. AND A.oc_id = 1
  8398. AND A.account_id = 1
  8399. LIMIT 1
  8400. 15:51:04.397 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8401. A.gmp_id,
  8402. A.oc_id,
  8403. A.group_id,
  8404. B.group_name,
  8405. A.account_id,
  8406. D.account_name,
  8407. D.account_real_name,
  8408. A.position_id,
  8409. C.position_name
  8410. FROM s_group_member_position A
  8411. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  8412. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  8413. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  8414. WHERE A.deleted_flag = 0
  8415. AND A.oc_id = 1
  8416. AND A.group_id = 1
  8417. AND A.account_id = 1
  8418. LIMIT 1
  8419. 15:51:04.405 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  8420. A.gmpg_id,
  8421. A.oc_id,
  8422. A.group_id,
  8423. A.account_id,
  8424. A.position_id,
  8425. A.grant_group_id,
  8426. B.group_name AS grant_group_name
  8427. FROM s_group_member_position_grant A
  8428. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  8429. WHERE A.deleted_flag = 0
  8430. AND A.oc_id = 1
  8431. AND A.group_id = 1
  8432. AND A.account_id = 1
  8433. AND A.position_id = 1
  8434. LIMIT 1
  8435. 15:51:04.461 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  8436. client_id,
  8437. client_title,
  8438. client_app_id,
  8439. client_app_key,
  8440. client_app_secret,
  8441. client_desc,
  8442. status,
  8443. is_fixed
  8444. FROM client
  8445. WHERE deleted_flag = 0
  8446. AND client_app_id = '10001'
  8447. AND client_app_key = '82a8bf439373e305'
  8448. 15:51:04.476 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  8449. A.client_id,
  8450. A.role_id,
  8451. A.permit_id,
  8452. A.permit_title,
  8453. A.permit_code,
  8454. A.permit_entry,
  8455. A.permit_desc,
  8456. A.permit_type,
  8457. A.parent_id,
  8458. A.root_id,
  8459. A.sort_no,
  8460. A.is_home
  8461. FROM s_role_permit AS A
  8462. WHERE 1 = 1
  8463. AND A.client_id = 2
  8464. AND A.role_id = 1
  8465. ORDER BY A.parent_id ASC ,A.sort_no ASC
  8466. 15:51:04.614 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:04 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT count(*)
  8467. FROM msg AS M
  8468. WHERE M.oc_id = 1
  8469. AND (
  8470. EXISTS (
  8471. SELECT 1 FROM msg_to TT
  8472. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  8473. ) OR
  8474. EXISTS (
  8475. SELECT 1 FROM msg_cc CC
  8476. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  8477. )
  8478. )
  8479. 15:51:07.569 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8480. 15:51:07.590 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  8481. 15:51:07.595 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  8482. A.job_id,
  8483. A.job_title,
  8484. A.job_desc,
  8485. A.status,
  8486. A.job_type,
  8487. A.job_code,
  8488. A.job_cron,
  8489. A.job_class_id,
  8490. B.job_class,
  8491. A.cycle_title,
  8492. A.cycle_period,
  8493. A.cycle_unit
  8494. FROM job AS A
  8495. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8496. WHERE A.deleted_flag = 0
  8497. ORDER BY A.job_id ASC
  8498. LIMIT 10
  8499. 15:51:09.067 [XNIO-1 task-2] INFO p6spy - 2023-08-24 15:51:09 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8500. 15:51:09.077 [XNIO-1 task-2] INFO p6spy - 2023-08-24 15:51:09 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8501. job_class_id,
  8502. job_class_title,
  8503. job_class_desc,
  8504. job_class
  8505. FROM job_class
  8506. WHERE deleted_flag = 0
  8507. ORDER BY job_class_id ASC
  8508. 15:51:09.077 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:09 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT 1
  8509. 15:51:09.086 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:09 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  8510. A.job_id,
  8511. A.job_title,
  8512. A.job_desc,
  8513. A.status,
  8514. A.job_type,
  8515. A.job_code,
  8516. A.job_cron,
  8517. A.job_class_id,
  8518. B.job_class,
  8519. A.cycle_title,
  8520. A.cycle_period,
  8521. A.cycle_unit
  8522. FROM job AS A
  8523. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8524. WHERE A.job_id = 439094
  8525. 15:51:18.963 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:18 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  8526. 15:51:18.982 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:18 | Time Consuming: 11 ms | Connection: statement-1 | SQL: UPDATE job
  8527. SET job_title = '巡检天任务',
  8528. job_desc = '天任务',
  8529. status = 1,
  8530. job_type = 1,
  8531. job_code = 'Cron任务',
  8532. job_cron = '0 52 15 * * ?',
  8533. job_class_id = 2,
  8534. cycle_title = '天',
  8535. cycle_period = 0,
  8536. cycle_unit = 0,
  8537. updated_by = 1,
  8538. updated_at = '2023-08-24T15:51:18.967619800'
  8539. WHERE job_id = 439094
  8540. 15:51:19.028 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:19 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  8541. 15:51:19.033 [XNIO-1 task-3] INFO p6spy - 2023-08-24 15:51:19 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  8542. A.job_id,
  8543. A.job_title,
  8544. A.job_desc,
  8545. A.status,
  8546. A.job_type,
  8547. A.job_code,
  8548. A.job_cron,
  8549. A.job_class_id,
  8550. B.job_class,
  8551. A.cycle_title,
  8552. A.cycle_period,
  8553. A.cycle_unit
  8554. FROM job AS A
  8555. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8556. WHERE A.deleted_flag = 0
  8557. ORDER BY A.job_id ASC
  8558. LIMIT 10
  8559. 15:51:24.197 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8560. 15:51:24.198 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8561. 15:51:24.202 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8562. 15:51:24.205 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8563. 15:51:24.205 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8564. 15:51:24.205 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8565. 15:51:24.211 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8566. 15:51:24.213 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8567. 15:51:24.213 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8568. 15:51:24.213 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8569. 15:51:24.213 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8570. 15:51:24.248 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8571. 15:51:24.261 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  8572. 15:51:28.365 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  8573. 15:51:28.429 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4184 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  8574. 15:51:28.430 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  8575. 15:51:28.551 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  8576. 15:51:28.551 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  8577. 15:51:30.781 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  8578. 15:51:30.787 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8579. 15:51:30.885 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 84 ms. Found 0 Redis repository interfaces.
  8580. 15:51:31.083 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  8581. 15:51:31.099 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  8582. 15:51:31.913 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  8583. 15:51:31.913 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3361 ms
  8584. 15:51:34.281 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  8585. 15:51:34.291 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  8586. 15:51:34.291 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  8587. 15:51:34.292 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  8588. 15:51:34.292 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  8589. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  8590. NOT STARTED.
  8591. Currently in standby mode.
  8592. Number of jobs executed: 0
  8593. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  8594. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  8595. 15:51:34.292 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  8596. 15:51:34.292 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  8597. 15:51:34.293 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@445040f3
  8598. 15:51:36.013 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  8599. 15:51:36.019 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  8600. 15:51:36.164 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  8601. 15:51:36.195 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8602. 15:51:36.195 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  8603. 15:51:36.196 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  8604. 15:51:36.215 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  8605. 15:51:36.225 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  8606. 15:51:36.236 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  8607. 15:51:36.265 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  8608. 15:51:36.324 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  8609. 15:51:36.325 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  8610. 15:51:36.325 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8611. 15:51:36.350 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.783 seconds (process running for 9.943)
  8612. 15:51:36.352 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  8613. 15:51:36.358 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  8614. 15:51:36.680 [restartedMain] INFO p6spy - 2023-08-24 15:51:36 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  8615. 15:51:36.686 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@151e4bcd
  8616. 15:51:36.689 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  8617. 15:51:36.755 [restartedMain] INFO p6spy - 2023-08-24 15:51:36 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8618. A.job_id,
  8619. A.job_title,
  8620. A.job_desc,
  8621. A.status,
  8622. A.job_type,
  8623. A.job_code,
  8624. A.job_cron,
  8625. A.job_class_id,
  8626. B.job_class,
  8627. A.cycle_title,
  8628. A.cycle_period,
  8629. A.cycle_unit
  8630. FROM job AS A
  8631. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8632. WHERE A.deleted_flag = 0
  8633. AND A.status = 1
  8634. ORDER BY A.job_id ASC
  8635. 15:51:36.776 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8636. 15:51:36.778 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8637. 15:51:36.981 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:51:36 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  8638. FROM goaf_sensor
  8639. WHERE goaf_sensor_ip = '192.168.3.12'
  8640. 15:51:37.489 [RMI TCP Connection(8)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  8641. 15:51:37.489 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  8642. 15:51:37.493 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  8643. 15:51:37.503 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-08-24 15:51:37 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  8644. 15:51:37.519 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-08-24 15:51:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  8645. 15:52:00.014 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  8646. 15:52:00.018 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 15:52:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  8647. 15:52:00.034 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  8648. 15:52:40.439 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:52:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  8649. 15:52:40.444 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:52:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  8650. FROM goaf_sensor
  8651. WHERE goaf_sensor_ip = '192.168.3.12'
  8652. 15:52:40.455 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:52:40 | Time Consuming: 8 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  8653. 15:52:40.460 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:52:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  8654. 15:52:40.485 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 15:52:40 | Time Consuming: 17 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  8655. ( goaf_data_id,
  8656. oc_id,
  8657. goaf_sensor_id,
  8658. goaf_sensor_name,
  8659. frequency_x,
  8660. frequency_y,
  8661. frequency_z,
  8662. acc_x,
  8663. acc_y,
  8664. acc_z,
  8665. vel_x,
  8666. vel_y,
  8667. vel_z,
  8668. dis_x,
  8669. dis_y,
  8670. dis_z,
  8671. sensor_temperature,
  8672. ang_x,
  8673. ang_y,
  8674. ang_z,
  8675. f_alarm_acc_x,
  8676. f_alarm_acc_y,
  8677. f_alarm_acc_z,
  8678. f_alarm_vel_x,
  8679. f_alarm_vel_y,
  8680. f_alarm_vel_z,
  8681. f_alarm_dis_x,
  8682. f_alarm_dis_y,
  8683. f_alarm_dis_z,
  8684. f_alarm_temperature,
  8685. td_wave_value_x,
  8686. td_wave_value_y,
  8687. td_wave_value_z,
  8688. goaf_datareport_time )
  8689. values ( 442166,
  8690. 406283,
  8691. 442139,
  8692. 'jacintoqqq',
  8693. 0,
  8694. 0,
  8695. 0,
  8696. 1,
  8697. 1,
  8698. 1,
  8699. 6,
  8700. 9,
  8701. 5,
  8702. 2,
  8703. 2,
  8704. 1,
  8705. 326,
  8706. -5919,
  8707. 3076,
  8708. -152,
  8709. 64698,
  8710. 64698,
  8711. 64701,
  8712. 64702,
  8713. 64696,
  8714. 64692,
  8715. 64692,
  8716. 64701,
  8717. 64702,
  8718. -845,
  8719. '-836,-835,-836,-838,-835,-839,-848,-837,-835,-851,-845,-843,-840,-834,-844,-844,-844,-838,-834,-830,-842,-845,-833,-837,-835,-834,-833,-845,-846,-840,-834,-837,-840,-840,-846,-840,-840,-843,-837,-843,-846,-838,-844,-832,-835,-841,-831,-842,-847,-847,-839,-842,-850,-849,-843,-840,-846,-844,-841,-831,-840,-840,-825,-837,-846,-844,-835,-832,-836,-839,-839,-829,-837,-834,-835,-839,-832,-828,-824,-833,-835,-840,-843,-840,-835,-844,-848,-838,-842,-843,-844,-848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  8720. '500,495,495,496,497,503,505,497,501,494,486,499,503,494,501,500,494,498,500,499,494,494,490,494,502,500,498,494,505,505,500,500,494,500,508,511,503,497,497,495,496,492,498,496,497,504,500,504,505,507,509,505,501,500,506,502,493,499,502,497,508,507,503,512,502,504,510,500,496,495,484,492,502,498,499,499,493,493,500,499,500,505,491,488,497,500,497,498,492,488,504,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  8721. '-22,-25,-37,-25,-22,-18,-16,-27,-32,-31,-31,-15,-16,-26,-20,-27,-25,-27,-27,-26,-28,-31,-27,-23,-26,-28,-30,-23,-24,-31,-33,-26,-25,-26,-21,-23,-25,-24,-22,-27,-32,-27,-23,-28,-33,-29,-22,-21,-21,-24,-21,-21,-31,-24,-24,-27,-23,-28,-31,-38,-33,-27,-39,-32,-30,-29,-21,-33,-29,-21,-22,-23,-31,-31,-32,-29,-28,-20,-11,-21,-31,-30,-33,-23,-24,-26,-18,-23,-35,-25,-20,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  8722. '2023-08-24T15:52:40.460400500' )
  8723. 15:52:49.572 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8724. 15:52:49.573 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8725. 15:52:49.582 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8726. 15:52:49.585 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8727. 15:52:49.585 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8728. 15:52:49.585 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8729. 15:52:49.592 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8730. 15:52:49.593 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8731. 15:52:49.593 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8732. 15:52:49.593 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8733. 15:52:49.593 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8734. 15:52:49.606 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8735. 15:52:49.610 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  8736. 16:23:22.239 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  8737. 16:23:22.289 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14208 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  8738. 16:23:22.289 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  8739. 16:23:22.355 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  8740. 16:23:22.355 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  8741. 16:23:24.173 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  8742. 16:23:24.176 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8743. 16:23:24.265 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  8744. 16:23:24.422 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  8745. 16:23:24.436 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  8746. 16:23:25.133 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  8747. 16:23:25.133 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2777 ms
  8748. 16:23:27.319 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  8749. 16:23:27.329 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  8750. 16:23:27.329 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  8751. 16:23:27.329 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  8752. 16:23:27.330 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  8753. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  8754. NOT STARTED.
  8755. Currently in standby mode.
  8756. Number of jobs executed: 0
  8757. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  8758. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  8759. 16:23:27.330 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  8760. 16:23:27.330 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  8761. 16:23:27.330 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1539065e
  8762. 16:23:28.859 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  8763. 16:23:28.865 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  8764. 16:23:28.999 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  8765. 16:23:29.024 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8766. 16:23:29.025 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  8767. 16:23:29.025 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  8768. 16:23:29.043 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  8769. 16:23:29.050 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  8770. 16:23:29.058 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  8771. 16:23:29.086 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  8772. 16:23:29.137 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  8773. 16:23:29.138 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  8774. 16:23:29.139 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8775. 16:23:29.164 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.431 seconds (process running for 8.173)
  8776. 16:23:29.166 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  8777. 16:23:29.173 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  8778. 16:23:29.478 [restartedMain] INFO p6spy - 2023-08-24 16:23:29 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  8779. 16:23:29.482 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@780efec8
  8780. 16:23:29.491 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  8781. 16:23:29.553 [restartedMain] INFO p6spy - 2023-08-24 16:23:29 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8782. A.job_id,
  8783. A.job_title,
  8784. A.job_desc,
  8785. A.status,
  8786. A.job_type,
  8787. A.job_code,
  8788. A.job_cron,
  8789. A.job_class_id,
  8790. B.job_class,
  8791. A.cycle_title,
  8792. A.cycle_period,
  8793. A.cycle_unit
  8794. FROM job AS A
  8795. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8796. WHERE A.deleted_flag = 0
  8797. AND A.status = 1
  8798. ORDER BY A.job_id ASC
  8799. 16:23:29.573 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8800. 16:23:29.574 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8801. 16:23:30.175 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  8802. 16:23:30.175 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  8803. 16:23:30.176 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 16:23:30 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8804. 16:23:30.179 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  8805. 16:23:30.189 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 16:23:30 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  8806. 16:25:47.441 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8807. 16:25:47.442 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8808. 16:25:47.449 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8809. 16:25:47.451 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8810. 16:25:47.451 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8811. 16:25:47.452 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8812. 16:25:47.463 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8813. 16:25:47.465 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8814. 16:25:47.465 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8815. 16:25:47.465 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8816. 16:25:47.466 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8817. 16:25:47.483 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8818. 16:25:47.489 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  8819. 16:27:52.561 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  8820. 16:27:52.619 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4988 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  8821. 16:27:52.619 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  8822. 16:27:52.684 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  8823. 16:27:52.684 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  8824. 16:27:54.487 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  8825. 16:27:54.490 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8826. 16:27:54.593 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 88 ms. Found 0 Redis repository interfaces.
  8827. 16:27:54.788 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  8828. 16:27:54.804 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  8829. 16:27:55.553 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  8830. 16:27:55.554 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2869 ms
  8831. 16:27:57.897 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  8832. 16:27:57.907 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  8833. 16:27:57.907 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  8834. 16:27:57.908 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  8835. 16:27:57.908 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  8836. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  8837. NOT STARTED.
  8838. Currently in standby mode.
  8839. Number of jobs executed: 0
  8840. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  8841. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  8842. 16:27:57.909 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  8843. 16:27:57.909 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  8844. 16:27:57.909 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1b7332a4
  8845. 16:27:59.597 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  8846. 16:27:59.602 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  8847. 16:27:59.744 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  8848. 16:27:59.775 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8849. 16:27:59.775 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  8850. 16:27:59.775 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  8851. 16:27:59.795 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  8852. 16:27:59.805 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  8853. 16:27:59.815 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  8854. 16:27:59.845 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  8855. 16:27:59.898 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  8856. 16:27:59.899 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  8857. 16:27:59.899 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8858. 16:27:59.924 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.929 seconds (process running for 8.828)
  8859. 16:27:59.926 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  8860. 16:27:59.934 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  8861. 16:28:00.390 [restartedMain] INFO p6spy - 2023-08-24 16:28:00 | Time Consuming: 39 ms | Connection: statement-0 | SQL: SELECT 1
  8862. 16:28:00.395 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@464c5020
  8863. 16:28:00.405 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  8864. 16:28:00.494 [restartedMain] INFO p6spy - 2023-08-24 16:28:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  8865. A.job_id,
  8866. A.job_title,
  8867. A.job_desc,
  8868. A.status,
  8869. A.job_type,
  8870. A.job_code,
  8871. A.job_cron,
  8872. A.job_class_id,
  8873. B.job_class,
  8874. A.cycle_title,
  8875. A.cycle_period,
  8876. A.cycle_unit
  8877. FROM job AS A
  8878. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8879. WHERE A.deleted_flag = 0
  8880. AND A.status = 1
  8881. ORDER BY A.job_id ASC
  8882. 16:28:00.515 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8883. 16:28:00.516 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8884. 16:28:00.876 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  8885. 16:28:00.876 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  8886. 16:28:00.880 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  8887. 16:28:00.932 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 16:28:00 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  8888. 16:35:54.054 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8889. 16:35:54.056 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8890. 16:35:54.065 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8891. 16:35:54.069 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8892. 16:35:54.069 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8893. 16:35:54.069 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8894. 16:35:54.084 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8895. 16:35:54.087 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8896. 16:35:54.087 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8897. 16:35:54.087 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8898. 16:35:54.087 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8899. 16:35:54.128 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8900. 16:35:54.133 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  8901. 16:37:13.984 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  8902. 16:37:14.028 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 7760 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  8903. 16:37:14.028 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  8904. 16:37:14.080 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  8905. 16:37:14.080 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  8906. 16:37:15.747 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  8907. 16:37:15.750 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8908. 16:37:15.846 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 84 ms. Found 0 Redis repository interfaces.
  8909. 16:37:15.999 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  8910. 16:37:16.015 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  8911. 16:37:16.704 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  8912. 16:37:16.705 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2624 ms
  8913. 16:37:18.927 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  8914. 16:37:18.936 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  8915. 16:37:18.936 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  8916. 16:37:18.937 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  8917. 16:37:18.937 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  8918. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  8919. NOT STARTED.
  8920. Currently in standby mode.
  8921. Number of jobs executed: 0
  8922. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  8923. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  8924. 16:37:18.938 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  8925. 16:37:18.938 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  8926. 16:37:18.938 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2439f6af
  8927. 16:37:20.425 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  8928. 16:37:20.429 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  8929. 16:37:20.556 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  8930. 16:37:20.582 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8931. 16:37:20.593 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  8932. 16:37:20.593 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  8933. 16:37:20.611 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  8934. 16:37:20.619 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  8935. 16:37:20.627 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  8936. 16:37:20.653 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  8937. 16:37:20.704 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  8938. 16:37:20.704 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  8939. 16:37:20.704 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8940. 16:37:20.728 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.188 seconds (process running for 7.81)
  8941. 16:37:20.732 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  8942. 16:37:20.738 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  8943. 16:37:21.076 [restartedMain] INFO p6spy - 2023-08-24 16:37:21 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  8944. 16:37:21.080 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@48166873
  8945. 16:37:21.090 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  8946. 16:37:21.156 [restartedMain] INFO p6spy - 2023-08-24 16:37:21 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  8947. A.job_id,
  8948. A.job_title,
  8949. A.job_desc,
  8950. A.status,
  8951. A.job_type,
  8952. A.job_code,
  8953. A.job_cron,
  8954. A.job_class_id,
  8955. B.job_class,
  8956. A.cycle_title,
  8957. A.cycle_period,
  8958. A.cycle_unit
  8959. FROM job AS A
  8960. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  8961. WHERE A.deleted_flag = 0
  8962. AND A.status = 1
  8963. ORDER BY A.job_id ASC
  8964. 16:37:21.175 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8965. 16:37:21.176 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  8966. 16:37:21.510 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  8967. 16:37:21.510 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  8968. 16:37:21.514 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  8969. 16:37:21.529 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-24 16:37:21 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  8970. 16:37:28.877 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8971. 16:37:28.878 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8972. 16:37:28.886 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8973. 16:37:28.888 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8974. 16:37:28.888 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8975. 16:37:28.889 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8976. 16:37:28.895 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8977. 16:37:28.899 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8978. 16:37:28.900 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8979. 16:37:28.900 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8980. 16:37:28.900 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8981. 16:37:28.936 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8982. 16:37:28.940 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  8983. 16:37:34.310 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  8984. 16:37:34.355 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10884 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  8985. 16:37:34.355 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  8986. 16:37:34.405 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  8987. 16:37:34.405 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  8988. 16:37:36.065 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  8989. 16:37:36.068 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8990. 16:37:36.155 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  8991. 16:37:36.303 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  8992. 16:37:36.319 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  8993. 16:37:36.993 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  8994. 16:37:36.994 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2588 ms
  8995. 16:37:39.182 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  8996. 16:37:39.192 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  8997. 16:37:39.192 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  8998. 16:37:39.192 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  8999. 16:37:39.193 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9000. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9001. NOT STARTED.
  9002. Currently in standby mode.
  9003. Number of jobs executed: 0
  9004. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9005. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9006. 16:37:39.193 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9007. 16:37:39.193 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9008. 16:37:39.193 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7e1881ba
  9009. 16:37:40.712 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  9010. 16:37:40.717 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  9011. 16:37:40.846 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  9012. 16:37:40.873 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9013. 16:37:40.873 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  9014. 16:37:40.873 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  9015. 16:37:40.890 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  9016. 16:37:40.898 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  9017. 16:37:40.906 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  9018. 16:37:40.931 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  9019. 16:37:40.983 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  9020. 16:37:40.985 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  9021. 16:37:40.985 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9022. 16:37:41.010 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.145 seconds (process running for 7.815)
  9023. 16:37:41.012 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  9024. 16:37:41.020 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  9025. 16:37:41.316 [restartedMain] INFO p6spy - 2023-08-24 16:37:41 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  9026. 16:37:41.321 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@14c6ae22
  9027. 16:37:41.330 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  9028. 16:37:41.392 [restartedMain] INFO p6spy - 2023-08-24 16:37:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9029. A.job_id,
  9030. A.job_title,
  9031. A.job_desc,
  9032. A.status,
  9033. A.job_type,
  9034. A.job_code,
  9035. A.job_cron,
  9036. A.job_class_id,
  9037. B.job_class,
  9038. A.cycle_title,
  9039. A.cycle_period,
  9040. A.cycle_unit
  9041. FROM job AS A
  9042. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9043. WHERE A.deleted_flag = 0
  9044. AND A.status = 1
  9045. ORDER BY A.job_id ASC
  9046. 16:37:41.411 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9047. 16:37:41.412 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9048. 16:37:42.000 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 16:37:42 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9049. 16:37:42.026 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  9050. 16:37:42.026 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  9051. 16:37:42.030 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  9052. 16:37:42.036 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-24 16:37:42 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9053. 16:50:20.424 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9054. 16:50:20.426 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  9055. 16:50:20.436 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  9056. 16:50:20.449 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9057. 16:50:20.449 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  9058. 16:50:20.449 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  9059. 16:50:20.628 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  9060. 16:50:20.629 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  9061. 16:50:20.629 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  9062. 16:50:20.629 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9063. 16:50:20.629 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  9064. 16:50:20.642 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  9065. 16:50:20.645 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  9066. 16:50:27.531 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  9067. 16:50:27.580 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 1192 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  9068. 16:50:27.580 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  9069. 16:50:27.632 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  9070. 16:50:27.632 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  9071. 16:50:29.464 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  9072. 16:50:29.467 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  9073. 16:50:29.559 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  9074. 16:50:29.721 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  9075. 16:50:29.737 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  9076. 16:50:30.449 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  9077. 16:50:30.449 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2816 ms
  9078. 16:50:32.669 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  9079. 16:50:32.678 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  9080. 16:50:32.678 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  9081. 16:50:32.679 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  9082. 16:50:32.680 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9083. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9084. NOT STARTED.
  9085. Currently in standby mode.
  9086. Number of jobs executed: 0
  9087. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9088. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9089. 16:50:32.680 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9090. 16:50:32.680 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9091. 16:50:32.680 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@17b341c8
  9092. 16:50:34.407 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  9093. 16:50:34.412 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  9094. 16:50:34.559 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  9095. 16:50:34.587 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9096. 16:50:34.588 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  9097. 16:50:34.588 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  9098. 16:50:34.609 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  9099. 16:50:34.622 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  9100. 16:50:34.631 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  9101. 16:50:34.667 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  9102. 16:50:34.719 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  9103. 16:50:34.721 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  9104. 16:50:34.721 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9105. 16:50:34.747 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.696 seconds (process running for 8.335)
  9106. 16:50:34.749 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9107. 16:50:34.750 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  9108. 16:50:34.750 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  9109. 16:50:34.757 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  9110. 16:50:34.757 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9111. 16:50:34.758 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  9112. 16:50:34.758 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  9113. 16:50:34.763 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  9114. 16:50:34.764 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  9115. 16:50:34.764 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  9116. 16:50:34.764 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9117. 16:50:34.764 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  9118. 16:51:16.647 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  9119. 16:51:16.699 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 9300 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  9120. 16:51:16.700 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  9121. 16:51:16.753 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  9122. 16:51:16.753 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  9123. 16:51:18.556 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  9124. 16:51:18.559 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  9125. 16:51:18.659 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 87 ms. Found 0 Redis repository interfaces.
  9126. 16:51:18.839 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  9127. 16:51:18.853 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  9128. 16:51:19.627 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  9129. 16:51:19.627 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2873 ms
  9130. 16:51:22.096 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  9131. 16:51:22.106 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  9132. 16:51:22.106 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  9133. 16:51:22.106 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  9134. 16:51:22.107 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9135. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9136. NOT STARTED.
  9137. Currently in standby mode.
  9138. Number of jobs executed: 0
  9139. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9140. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9141. 16:51:22.107 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9142. 16:51:22.107 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9143. 16:51:22.107 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@36303866
  9144. 16:51:23.657 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  9145. 16:51:23.661 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  9146. 16:51:23.793 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  9147. 16:51:23.818 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9148. 16:51:23.819 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  9149. 16:51:23.819 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  9150. 16:51:23.837 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  9151. 16:51:23.845 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  9152. 16:51:23.852 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  9153. 16:51:23.880 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  9154. 16:51:23.943 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  9155. 16:51:23.944 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  9156. 16:51:23.945 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9157. 16:51:23.969 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.912 seconds (process running for 8.586)
  9158. 16:51:23.971 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  9159. 16:51:23.977 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  9160. 16:51:24.285 [restartedMain] INFO p6spy - 2023-08-24 16:51:24 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  9161. 16:51:24.289 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1da487b4
  9162. 16:51:24.299 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  9163. 16:51:24.364 [restartedMain] INFO p6spy - 2023-08-24 16:51:24 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  9164. A.job_id,
  9165. A.job_title,
  9166. A.job_desc,
  9167. A.status,
  9168. A.job_type,
  9169. A.job_code,
  9170. A.job_cron,
  9171. A.job_class_id,
  9172. B.job_class,
  9173. A.cycle_title,
  9174. A.cycle_period,
  9175. A.cycle_unit
  9176. FROM job AS A
  9177. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9178. WHERE A.deleted_flag = 0
  9179. AND A.status = 1
  9180. ORDER BY A.job_id ASC
  9181. 16:51:24.385 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9182. 16:51:24.386 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9183. 16:51:25.030 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-24 16:51:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9184. 16:51:25.031 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  9185. 16:51:25.031 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  9186. 16:51:25.035 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  9187. 16:51:25.043 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-24 16:51:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9188. 16:51:26.169 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9189. 16:51:26.179 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  9190. client_id,
  9191. client_title,
  9192. client_app_id,
  9193. client_app_key,
  9194. client_app_secret,
  9195. client_desc,
  9196. status,
  9197. is_fixed
  9198. FROM client
  9199. WHERE deleted_flag = 0
  9200. AND client_app_id = '10001'
  9201. AND client_app_key = '82a8bf439373e305'
  9202. 16:51:26.196 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  9203. A.client_id,
  9204. A.role_id,
  9205. A.permit_id,
  9206. A.permit_title,
  9207. A.permit_code,
  9208. A.permit_entry,
  9209. A.permit_desc,
  9210. A.permit_type,
  9211. A.parent_id,
  9212. A.root_id,
  9213. A.sort_no,
  9214. A.is_home
  9215. FROM s_role_permit AS A
  9216. WHERE 1 = 1
  9217. AND A.client_id = 2
  9218. AND A.role_id = 1
  9219. ORDER BY A.parent_id ASC ,A.sort_no ASC
  9220. 16:51:26.333 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  9221. 16:51:26.342 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT count(*)
  9222. FROM msg AS M
  9223. WHERE M.oc_id = 1
  9224. AND (
  9225. EXISTS (
  9226. SELECT 1 FROM msg_to TT
  9227. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  9228. ) OR
  9229. EXISTS (
  9230. SELECT 1 FROM msg_cc CC
  9231. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  9232. )
  9233. )
  9234. 16:51:26.412 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  9235. 16:51:26.419 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:26 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  9236. A.job_id,
  9237. A.job_title,
  9238. A.job_desc,
  9239. A.status,
  9240. A.job_type,
  9241. A.job_code,
  9242. A.job_cron,
  9243. A.job_class_id,
  9244. B.job_class,
  9245. A.cycle_title,
  9246. A.cycle_period,
  9247. A.cycle_unit
  9248. FROM job AS A
  9249. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9250. WHERE A.deleted_flag = 0
  9251. ORDER BY A.job_id ASC
  9252. LIMIT 10
  9253. 16:51:38.147 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:51:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9254. 16:51:38.172 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:38 | Time Consuming: 19 ms | Connection: statement-1 | SQL: SELECT 1
  9255. 16:51:38.172 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:51:38 | Time Consuming: 19 ms | Connection: statement-0 | SQL: SELECT
  9256. job_class_id,
  9257. job_class_title,
  9258. job_class_desc,
  9259. job_class
  9260. FROM job_class
  9261. WHERE deleted_flag = 0
  9262. ORDER BY job_class_id ASC
  9263. 16:51:38.185 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:38 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT
  9264. A.job_id,
  9265. A.job_title,
  9266. A.job_desc,
  9267. A.status,
  9268. A.job_type,
  9269. A.job_code,
  9270. A.job_cron,
  9271. A.job_class_id,
  9272. B.job_class,
  9273. A.cycle_title,
  9274. A.cycle_period,
  9275. A.cycle_unit
  9276. FROM job AS A
  9277. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9278. WHERE A.job_id = 439094
  9279. 16:51:46.361 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:46 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  9280. 16:51:46.393 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:46 | Time Consuming: 22 ms | Connection: statement-1 | SQL: UPDATE job
  9281. SET job_title = '巡检天任务',
  9282. job_desc = '天任务',
  9283. status = 1,
  9284. job_type = 1,
  9285. job_code = 'Cron任务',
  9286. job_cron = '0 53 16 * * ?',
  9287. job_class_id = 2,
  9288. cycle_title = '天',
  9289. cycle_period = 0,
  9290. cycle_unit = 0,
  9291. updated_by = 1,
  9292. updated_at = '2023-08-24T16:51:46.367438200'
  9293. WHERE job_id = 439094
  9294. 16:51:46.443 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:46 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  9295. 16:51:46.456 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:51:46 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT
  9296. A.job_id,
  9297. A.job_title,
  9298. A.job_desc,
  9299. A.status,
  9300. A.job_type,
  9301. A.job_code,
  9302. A.job_cron,
  9303. A.job_class_id,
  9304. B.job_class,
  9305. A.cycle_title,
  9306. A.cycle_period,
  9307. A.cycle_unit
  9308. FROM job AS A
  9309. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9310. WHERE A.deleted_flag = 0
  9311. ORDER BY A.job_id ASC
  9312. LIMIT 10
  9313. 16:51:58.449 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9314. 16:51:58.450 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  9315. 16:51:58.453 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  9316. 16:51:58.455 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9317. 16:51:58.455 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  9318. 16:51:58.456 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  9319. 16:51:58.461 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  9320. 16:51:58.462 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  9321. 16:51:58.463 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  9322. 16:51:58.463 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9323. 16:51:58.463 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  9324. 16:51:58.499 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  9325. 16:51:58.503 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  9326. 16:52:05.240 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  9327. 16:52:05.287 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18368 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  9328. 16:52:05.288 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  9329. 16:52:05.342 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  9330. 16:52:05.342 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  9331. 16:52:07.174 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  9332. 16:52:07.177 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  9333. 16:52:07.263 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  9334. 16:52:07.435 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  9335. 16:52:07.451 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  9336. 16:52:08.198 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  9337. 16:52:08.198 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2855 ms
  9338. 16:52:10.553 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  9339. 16:52:10.564 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  9340. 16:52:10.564 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  9341. 16:52:10.564 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  9342. 16:52:10.565 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9343. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9344. NOT STARTED.
  9345. Currently in standby mode.
  9346. Number of jobs executed: 0
  9347. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9348. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9349. 16:52:10.565 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9350. 16:52:10.565 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9351. 16:52:10.565 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7c504c66
  9352. 16:52:12.227 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  9353. 16:52:12.233 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  9354. 16:52:12.375 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  9355. 16:52:12.405 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9356. 16:52:12.405 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  9357. 16:52:12.406 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  9358. 16:52:12.426 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  9359. 16:52:12.435 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  9360. 16:52:12.445 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  9361. 16:52:12.475 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  9362. 16:52:12.529 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  9363. 16:52:12.531 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  9364. 16:52:12.531 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9365. 16:52:12.556 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.804 seconds (process running for 8.491)
  9366. 16:52:12.558 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  9367. 16:52:12.565 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  9368. 16:52:12.901 [restartedMain] INFO p6spy - 2023-08-24 16:52:12 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  9369. 16:52:12.905 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@505ca7a7
  9370. 16:52:12.916 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  9371. 16:52:12.990 [restartedMain] INFO p6spy - 2023-08-24 16:52:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9372. A.job_id,
  9373. A.job_title,
  9374. A.job_desc,
  9375. A.status,
  9376. A.job_type,
  9377. A.job_code,
  9378. A.job_cron,
  9379. A.job_class_id,
  9380. B.job_class,
  9381. A.cycle_title,
  9382. A.cycle_period,
  9383. A.cycle_unit
  9384. FROM job AS A
  9385. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9386. WHERE A.deleted_flag = 0
  9387. AND A.status = 1
  9388. ORDER BY A.job_id ASC
  9389. 16:52:13.010 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9390. 16:52:13.012 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9391. 16:52:13.362 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  9392. 16:52:13.363 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  9393. 16:52:13.368 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  9394. 16:52:13.396 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-24 16:52:13 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9395. 16:53:00.014 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  9396. 16:53:00.019 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 16:53:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9397. 16:53:00.037 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  9398. 16:53:35.181 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 16:53:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  9399. 16:53:35.188 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 16:53:35 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  9400. FROM goaf_sensor
  9401. WHERE goaf_sensor_ip = '192.168.3.12'
  9402. 16:53:35.207 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 16:53:35 | Time Consuming: 12 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  9403. 16:53:35.213 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 16:53:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  9404. 16:53:35.248 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 16:53:35 | Time Consuming: 25 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  9405. ( goaf_data_id,
  9406. oc_id,
  9407. goaf_sensor_id,
  9408. goaf_sensor_name,
  9409. frequency_x,
  9410. frequency_y,
  9411. frequency_z,
  9412. acc_x,
  9413. acc_y,
  9414. acc_z,
  9415. vel_x,
  9416. vel_y,
  9417. vel_z,
  9418. dis_x,
  9419. dis_y,
  9420. dis_z,
  9421. sensor_temperature,
  9422. ang_x,
  9423. ang_y,
  9424. ang_z,
  9425. f_alarm_acc_x,
  9426. f_alarm_acc_y,
  9427. f_alarm_acc_z,
  9428. f_alarm_vel_x,
  9429. f_alarm_vel_y,
  9430. f_alarm_vel_z,
  9431. f_alarm_dis_x,
  9432. f_alarm_dis_y,
  9433. f_alarm_dis_z,
  9434. f_alarm_temperature,
  9435. td_wave_value_x,
  9436. td_wave_value_y,
  9437. td_wave_value_z,
  9438. goaf_datareport_time )
  9439. values ( 442167,
  9440. 406283,
  9441. 442139,
  9442. 'jacintoqqq',
  9443. 0,
  9444. 0,
  9445. 0,
  9446. 1,
  9447. 1,
  9448. 1,
  9449. 9,
  9450. 5,
  9451. 6,
  9452. 2,
  9453. 1,
  9454. 2,
  9455. 323,
  9456. -5927,
  9457. 3067,
  9458. -158,
  9459. 64695,
  9460. 64697,
  9461. 64703,
  9462. 64696,
  9463. 64704,
  9464. 64697,
  9465. 64693,
  9466. 64698,
  9467. 64700,
  9468. -843,
  9469. '-841,-835,-841,-839,-833,-840,-832,-839,-843,-838,-836,-843,-838,-834,-845,-836,-842,-845,-835,-841,-844,-834,-832,-835,-836,-839,-843,-844,-834,-829,-833,-835,-835,-838,-844,-846,-839,-842,-843,-834,-841,-849,-845,-837,-841,-841,-834,-838,-840,-841,-846,-849,-844,-841,-841,-842,-835,-837,-840,-837,-841,-838,-829,-824,-835,-844,-842,-842,-836,-833,-837,-833,-836,-840,-834,-831,-841,-841,-831,-840,-848,-837,-828,-834,-844,-844,-834,-837,-834,-843,-858,-848,-833,-836,-839,-839,-840,-837,-835,-842,-837,-830,-838,-836,-836,-847,-845,-839,-847,-843,-841,-845,-843,-837,-837,-841,-834,-843,-843,-840,-848,-854,-850,-842,-840,-838,-846,-841,-849,-849,-838,-841,-839,-840,-840,-834,-833,-834,-835,-834,-828,-837,-843,-840,-847,-842,-836,-837,-835,-841,-836,-836,-847,-850,-836,-839,-840,-838,-839,-833,-836,-835,-837,-833,-833,-840,-843,-843,-840,-843,-835,-836,-849,-851,-846,-851,-848,-833,-836,-829,-833,-841,-838,-839,-843,-838,-834,-833,-835,-838,-836,-843,-844,-841,-844,-844,-846,-832,-824,-848,-849,-846,-843,-840,-843,-843,-837,-830,-841,-848,-834,-833,-838,-835,-836,-839,-843,-846,-845,-839,-830,-833,-840,-840,-848,-844,-829,-838,-845,-840,-840,-840,-838,-842,-843,-833,-836,-835,-838,-846,-842,-835,-837,-839,-828,-837,-844,-835,-841,-846,-829,-832,-842,-839,-840,-835,-834,-845,-836,-833,-842,-836,-839,-842,-845,-840,-834,-848,-848,-837,-833,-834,-837,-831,-837,-850,-842,-833,-835,-841,-841,-841,-838,-841,-838,-836,-839,-830,-833,-829,-844,-844,-834,-836,-839,-836,-829,-834,-843,-850,-845,-846,-837,-831,-833,-845,-840,-825,-830,-835,-841,-832,-828,-833,-833,-840,-843,-838,-837,-839,-843,-846,-838,-834,-836,-836,-842,-842,-842,-836,-832,-848,-844,-835,-834,-834,-837,-844,-839,-830,-842,-846,-834,-840,-846,-835,-841,-852,-845,-836,-840,-841,-849,-841,-832,-839,-837,-834,-833,-831,-835,-834,-835,-839,-840,-838,-838,-841,-841,-846,-842,-850,-852,-841,-842,-836,-840,-835,-835,-842,-842,-837,-836,-837,-831,-840,-838,-835,-838,-835,-831,-830,-842,-849,-833,-828,-837,-837,-834,-837,-840,-835,-838,-832,-832,-839,-846,-844,-838,-848,-848,-837,-831,-833,-835,-835,-844,-845,-835,-844,-845,-839,-839,-835,-838,-834,-835,-844,-839,-836,-839,-835,-831,-837,-835,-838,-844,-851,-842,-829,-836,-838,-842,-836,-836,-837,-840,-844,-830,-833,-839,-842,-842,-837,-844,-845,-839,-835,-842,-850,-845,-835,-831,-834,-835,-836,-836,-842,-839,-842,-843,-837,-848,-847,-846,-845,-841,-852,-844,-836,-845,-837,-836,-846,-846,-838,-834,-842,-845,-843,-833,-834,-843,-841,-841,-842,-840,-837,-835,-841,-841,-832,-842,-829,-828,-841,-838,-838,-835,-842,-845,-839,-835,-843,-844,-839,-847,-835,-833,-838,-834,-830,-829,-841,-845,-845,-845,-849,-846,-834,-833,-839,-839,-840,-843,-834,-840,-843,-830,-839,-839,-832,-841,-836,-836,-836,-835,-840,-837,-827,-836,-837,-835,-846,-844,-838,-838,-841,-836,-837,-841,-835,-836,-844,-839,-842,-842,-833,-842,-839,-839,-843,-837,-833,-827,-832,-838,-839,-846,-848,-834,-830,-836,-842,-849,-847,-842,-837,-835,-839,-845,-843,-834,-837,-847,-839,-832,-834,-840,-843,-837,-837,-840,-838,-839,-839,-840,-843,-838,-843,-844,-836,-842,-847,-839,-836,-833,-832,-837,-846,-844,-838,-842,-840,-840,-843,-834,-837,-841,-842,-842,-833,-833,-833,-829,-833,-838,-835,-842,-840,-833,-836,-837,-834,-835,-833,-835,-838,-842,-832,-828,-838,-842,-846,-835,-849,-855,-841,-842,-847,-843,-839,-837,-834,-835,-841,-836,-837,-851,-850,-844,-839,-844,-846,-844,-849,-845,-850,-846,-838,-839,-835,-831,-830,-844,-844,-838,-838,-831,-839,-843,-834,-833,-840,-844,-842,-835,-840,-841,-828,-835,-841,-842,-842,-845,-846,-846,-840,-837,-848,-840,-837,-846,-837,-840,-837,-838,-842,-842,-839,-842,-833,-835,-840,-834,-835,-839,-846,-843,-840,-844,-854,-842,-836,-833,-839,-837,-841,-844,-836,-837,-835,-835,-839,-844,-837,-836,-838,-832,-836,-848,-841,-839,-839,-843,-844,-835,-835,-834,-840,-837,-838,-844,-842,-838,-836,-835,-840,-841,-833,-830,-836,-845,-837,-838,-839,-837,-834,-835,-842,-836,-839,-846,-835,-836,-850,-837,-841,-844,-832,-832,-832,-842,-843,-834,-833,-836,-836,-835,-838,-842,-843,-831,-835,-845,-836,-842,-847,-845,-843,-838,-841,-844,-839,-849,-841,-835,-836,-840,-850,-842,-829,-837,-838,-842,-840,-825,-834,-828,-824,-839,-843,-838,-831,-833,-840,-839,-834,-835,-846,-845,-838,-832,-836,-843,-841,-845,-846,-841,-838,-845,-846,-846,-840,-831,-835,-832,-829,-834,-832,-835,-845,-843,-847,-851,-839,-833,-845,-850,-847,-846,-838,-836,-833,-830,-846,-844,-835,-836,-839,-842,-832,-835,-838,-828,-832,-838,-838,-844,-844,-841,-845,-847,-837,-832,-835,-832,-835,-829,-831,-836,-840,-838,-832,-838,-842,-836,-837,-841,-839,-846,-841,-836,-837,-844,-838,-834,-837,-840,-838,-828,-829,-834,-834,-835,-835,-836,-837,-828,-835,-834,-840,-841,-832,-836,-835,-834,-834,-837,-835,-839,-842,-836,-839,-843,-835,-834,-837,-838,-848,-839,-845,-845,-836,-849,-848,-847,-842,-837,-838,-842,-846,-841,-839,-842,-846,-841,-834,-835,-838,-842,-840,-841,-838,-832,-838,-841,-844,-849,-842,-843,-841,-854,-846,-838,-841,-835,-838,-836,-847,-833,-836,-837,-843,-840,-831,-834,-825,-835,-829,-831,-840,-835,-831,-836,-845,-846,-843,-840,-846,-841,-845,-849,-850,-839,-839,-837,-824,-838,-849,-844,-838,-836,-839,-839,-839,-845,-840,-840,-847,-845,-842,-849,-847,-839,-843,-838,-836,-842,-843,-833,-829,-836,-842,-845,-839,-843,-844,-834,-835,-837,-844,-848,-840,-837,-844,-836,-829,-834,-837,-841,-842,-840,-838,-839,-836,-843,-846,-841,-841,-834,-833,-836,-842,-840,-835,-835,-842,-839,-829,-846,-846,-849,-845,-837,-838,-831,-845,-850,-839,-845,-855,-847,-845,-843,-835,-836,-833,-843,-841,-838,-844,-845,-837,-834,-840,-833,-826,-825,-841,-837,-832,-841,-835,-836,-837,-830,-838,-839,-833,-833,-840,-850,-844,-845,-849,-838,-839,-846,-837,-833,-835,-841,-842,-835,-838,-845,-837,-835,-838,-844,-845,-842,-840,-838,-838,-836,-840,-837,-835,-839,-832,-830,-842,-843,-844,-839,-830,-835,-840,-841,-843,-836,-834,-841,-835,-836,-847,-835,-831,-838,-836,-832,-838,-842,-842,-839,-840,-844,-836,-840,-837,-833,-846,-836,-835,-842,-839,-839,-836,-840,-840,-835,-846,-845,-837,-848,-848,-846,-844,-839,-836,-836,-836,-837,-840,-833,-839,-852,-846,-838,-839,-837,-835,-842,-845,-837,-836,-843,-844,-838,-839,-843,-846,-844,-834,-835,-840,-838,-840,-839,-844,-843,-838,-849,-839,-830,-837,-838,-841,-838,-835,-841,-842,-843,-835,-831,-837,-837,-840,-837,-838,-842,-843,-840,-840,-841,-842,-840,-840,-851,-840,-840,-843,-848,-850,-845,-850,-842,-839,-842,-840,-837,-838,-845,-836,-835,-841,-836,-830,-836,-830,-839,-847,-840,-843,-841,-839,-839,-845,-837,-831,-834,-841,-848,-845,-837,-835,-845,-850,-842,-843,-838,-842,-842,-840,-844,-831,-839,-842,-836,-835,-838,-841,-838,-835,-834,-835,-835,-838,-836,-838,-837,-838,-834,-842,-835,-835,-844,-835,-838,-835,-842,-843,-840,-841,-835,-842,-841,-840,-838,-839,-839,-833,-837,-838,-838,-832,-841,-846,-842,-842,-832,-832,-844,-832,-834,-840,-841,-841,-835,-829,-832,-844,-838,-839,-840,-841,-845,-840,-847,-849,-841,-851,-856,-850,-846,-843,-840,-847,-845,-833,-835,-841,-844,-842,-849,-843,-840,-840,-833,-839,-837,-834,-835,-836,-842,-843,-844,-845,-840,-835,-842,-853,-836,-827,-839,-839,-843,-840,-827,-835,-845,-834,-840,-843,-843,-846,-846,-840,-831,-835,-842,-840,-838,-831,-830,-842,-843,-841,-844,-845,-837,-834,-844,-845,-836,-835,-841,-844,-841,-838,-839,-840,-840,-847,-844,-845,-854,-847,-838,-832,-839,-839,-837,-842,-830,-842,-843,-840,-847,-840,-839,-846,-847,-842,-850,-845,-836,-837,-847,-854,-843,-838,-839,-835,-838,-832,-842,-837,-830,-838,-832,-845,-843,-851,-851,-837,-835,-839,-843,-848,-841,-840,-841,-838,-839,-833,-842,-843,-838,-846,-838,-834,-837,-838,-841,-848,-847,-843,-834,-827,-840,-842,-835,-843,-845,-837,-838,-836,-832,-841,-844,-838,-835,-836,-843,-844,-846,-841,-838,-846,-846,-842,-840,-833,-839,-842,-839,-842,-840,-840,-831,-828,-834,-841,-846,-846,-836,-840,-843,-840,-846,-838,-835,-836,-841,-846,-848,-844,-843,-838,-844,-849,-838,-838,-842,-840,-840,-841,-848,-836,-829,-846,-838,-836,-843,-833,-841,-846,-841,-841,-849,-848,-843,-841,-841,-845,-837,-834,-831,-835,-831,-830,-830,-835,-843,-837,-835,-835,',
  9470. '496,492,502,503,500,504,492,494,503,493,494,505,497,494,497,497,500,500,501,500,491,500,508,494,488,498,492,492,506,504,506,499,491,503,498,497,499,498,502,499,493,493,502,490,490,502,506,502,500,501,487,493,497,491,495,494,501,499,495,494,498,512,504,495,496,500,493,487,491,492,493,487,493,494,489,486,492,501,505,497,481,494,502,501,506,495,498,498,489,501,509,506,498,502,516,497,496,505,495,502,502,499,499,503,511,507,497,494,501,502,503,502,500,508,495,492,502,498,496,502,502,499,494,488,501,507,502,496,492,501,504,502,513,509,506,502,493,500,502,500,497,501,502,500,498,502,508,502,503,505,507,499,502,499,490,492,486,494,497,498,502,500,504,500,495,491,495,493,497,498,489,491,494,503,498,494,501,496,500,500,494,500,498,499,496,500,504,501,504,496,490,499,496,502,503,499,501,494,499,500,497,490,494,512,508,500,505,501,499,506,504,494,501,504,502,504,496,500,498,495,496,494,497,501,500,495,492,496,497,491,498,502,500,494,493,505,500,504,505,495,499,492,496,507,496,497,504,499,498,497,494,501,499,500,499,497,498,494,496,494,497,488,491,495,493,497,501,500,492,496,498,494,501,502,495,487,487,494,496,501,503,501,499,503,503,497,498,496,494,501,499,495,496,483,489,501,498,505,503,507,505,501,499,492,502,507,502,497,498,487,494,491,487,499,494,495,497,495,482,491,507,503,495,494,501,499,493,497,499,507,500,488,495,493,497,495,494,493,493,497,495,504,498,502,503,497,500,503,508,498,497,494,495,497,498,502,500,496,505,505,495,493,489,495,505,507,502,507,506,504,496,494,501,502,498,497,498,492,492,494,494,488,500,500,491,494,495,506,498,495,499,503,501,493,504,499,490,493,500,496,488,498,502,502,496,500,508,498,499,500,496,504,497,494,505,507,497,501,508,495,490,510,519,507,503,495,496,497,494,501,497,498,504,501,494,497,491,490,493,496,503,498,494,500,496,493,493,499,497,494,500,498,494,495,494,491,500,504,499,494,499,498,502,506,499,497,505,494,494,498,494,504,496,491,498,496,493,499,490,497,499,485,494,495,497,504,498,499,504,494,495,511,505,501,503,499,491,491,498,497,495,489,495,501,498,502,500,494,497,497,488,501,497,488,501,499,499,500,502,508,505,504,499,503,506,497,496,498,502,502,505,510,506,504,499,494,511,510,500,501,508,503,493,490,488,491,500,498,499,499,497,506,501,501,504,506,495,492,498,502,508,508,504,505,506,499,494,494,494,501,502,493,493,502,509,501,501,501,502,497,493,492,486,498,502,498,494,499,494,491,495,493,499,499,497,494,493,496,499,497,498,504,499,493,494,499,497,503,501,499,497,498,499,488,495,497,495,495,501,502,501,490,494,502,498,503,499,500,504,499,498,500,495,502,511,505,498,502,507,502,494,499,497,504,505,496,492,496,503,500,498,503,504,501,499,505,503,500,504,493,493,500,502,493,496,500,501,496,495,500,498,495,495,499,494,500,501,503,498,498,502,488,491,495,493,492,501,497,489,492,492,491,490,496,500,502,494,501,513,503,504,505,501,503,504,498,494,494,493,502,498,494,505,501,496,500,494,493,500,504,505,505,498,490,495,494,492,491,494,495,494,502,503,498,499,500,505,498,506,505,490,489,496,510,502,499,497,506,501,495,508,501,490,494,496,491,495,499,497,499,507,496,492,496,494,500,507,496,492,501,500,501,502,498,499,496,493,503,502,494,507,499,487,492,489,501,502,498,496,492,492,496,494,498,507,507,505,502,499,502,500,494,501,497,499,500,495,499,497,504,505,503,498,506,499,488,501,503,509,511,501,497,499,501,500,504,501,498,496,493,494,495,501,504,499,494,495,496,504,509,495,502,510,505,497,498,505,498,503,508,498,502,505,494,504,499,495,505,496,493,497,495,495,504,502,497,507,506,502,504,502,499,500,498,494,497,501,500,495,491,491,503,500,493,496,499,497,495,499,500,501,503,504,498,491,495,502,505,497,501,496,495,507,503,494,495,499,493,496,505,500,496,498,494,491,498,503,504,509,506,495,485,497,500,497,505,503,503,507,503,499,494,495,502,493,493,499,500,504,498,495,506,495,496,507,503,512,506,506,506,501,499,495,497,506,506,508,501,492,499,497,500,504,509,511,500,505,504,492,496,498,496,497,499,494,490,497,495,488,493,493,497,498,496,498,500,499,491,497,495,493,492,492,499,501,490,496,506,501,499,501,492,491,501,499,505,494,496,498,496,492,492,500,498,495,495,495,496,495,500,505,498,497,498,494,495,505,507,505,493,487,502,500,498,499,500,509,505,500,495,499,490,492,501,495,495,499,498,503,506,506,501,489,488,498,497,502,507,502,502,500,498,492,495,498,498,491,491,495,502,504,499,503,504,498,488,497,503,497,498,493,496,496,494,508,505,498,499,494,494,491,501,497,491,505,503,500,504,503,501,505,504,497,498,496,497,494,493,499,505,502,506,506,499,497,502,505,501,502,507,505,499,493,493,497,495,504,508,508,507,502,505,504,502,498,492,488,497,498,492,496,493,505,506,498,504,504,504,502,503,501,502,498,494,501,499,500,505,501,494,492,501,504,501,496,494,495,490,495,503,502,501,492,491,493,487,503,502,493,500,495,498,496,503,498,484,497,496,498,503,496,495,497,494,501,494,492,499,505,510,502,494,491,491,495,506,502,501,497,504,506,498,498,495,502,504,500,495,496,501,490,493,494,496,503,500,493,486,498,499,494,501,499,493,499,493,493,499,502,496,496,502,496,506,501,492,489,494,504,496,487,496,506,501,499,497,495,505,500,488,500,494,491,493,492,492,496,500,494,505,508,500,491,500,501,500,499,490,497,498,498,498,491,491,495,500,504,502,493,489,501,496,503,508,497,507,509,501,499,503,501,496,500,499,498,503,498,499,503,501,500,502,498,497,498,494,494,499,504,503,502,503,497,495,489,494,493,492,499,488,497,510,500,491,498,496,493,500,498,499,497,494,501,503,502,503,503,501,502,509,494,497,501,497,498,498,496,494,501,493,498,497,495,495,498,496,495,505,502,500,501,489,488,493,497,499,501,499,503,506,503,499,490,502,507,500,506,504,498,499,495,507,506,502,500,493,499,503,504,502,500,501,502,503,506,507,500,501,505,497,499,503,500,500,501,493,493,497,504,504,498,496,497,498,496,500,496,504,505,494,498,493,498,507,490,496,502,502,493,496,509,505,497,495,497,494,505,493,482,485,492,503,505,505,508,510,503,502,503,504,502,491,495,499,493,496,496,493,496,497,496,501,505,503,502,503,503,498,493,496,505,509,505,505,500,495,490,496,503,502,505,503,500,501,503,504,504,505,503,498,496,500,502,494,495,490,490,500,499,504,500,496,504,506,502,501,502,497,504,505,503,508,507,507,510,500,494,508,514,503,495,496,496,496,500,505,500,485,495,506,502,504,497,489,494,504,502,494,504,505,503,495,492,495,496,501,497,498,501,502,498,493,494,492,499,495,496,507,506,501,511,510,492,486,488,505,502,493,494,496,495,494,501,495,501,499,500,503,495,493,499,510,502,490,492,501,504,502,501,496,',
  9471. '-21,-19,-26,-27,-28,-29,-32,-32,-28,-30,-33,-17,-20,-32,-32,-31,-23,-30,-25,-20,-31,-25,-27,-31,-32,-30,-31,-39,-29,-21,-26,-25,-16,-23,-24,-18,-19,-24,-36,-29,-21,-23,-19,-17,-22,-30,-32,-26,-28,-33,-33,-30,-26,-22,-25,-20,-20,-25,-21,-31,-24,-23,-31,-28,-28,-27,-25,-24,-37,-35,-26,-28,-21,-33,-34,-28,-37,-32,-21,-19,-26,-30,-31,-27,-32,-28,-34,-37,-28,-30,-25,-30,-20,-17,-32,-29,-34,-36,-35,-28,-27,-36,-29,-27,-32,-33,-30,-27,-26,-25,-22,-18,-25,-16,-23,-30,-22,-29,-25,-25,-22,-28,-34,-32,-29,-31,-24,-18,-27,-29,-22,-26,-27,-25,-26,-25,-28,-28,-25,-24,-23,-21,-29,-35,-26,-19,-23,-27,-25,-23,-21,-21,-25,-29,-22,-22,-27,-19,-23,-35,-29,-22,-23,-22,-24,-31,-37,-31,-25,-27,-32,-32,-26,-32,-38,-32,-28,-29,-30,-28,-26,-35,-36,-27,-29,-24,-26,-33,-23,-20,-30,-32,-26,-26,-26,-26,-29,-28,-26,-22,-18,-28,-26,-21,-33,-33,-30,-32,-32,-31,-24,-26,-22,-19,-25,-34,-30,-23,-32,-22,-20,-24,-12,-15,-25,-29,-28,-38,-36,-23,-25,-27,-21,-25,-26,-24,-29,-21,-21,-19,-30,-37,-28,-32,-30,-33,-27,-29,-32,-28,-32,-30,-29,-29,-29,-26,-23,-22,-29,-22,-25,-24,-25,-34,-34,-30,-28,-27,-24,-24,-26,-32,-33,-21,-24,-29,-20,-25,-21,-21,-22,-21,-22,-20,-28,-28,-28,-34,-38,-35,-21,-21,-29,-32,-22,-29,-34,-20,-27,-32,-22,-24,-29,-22,-30,-29,-25,-21,-28,-30,-26,-22,-24,-29,-30,-36,-30,-23,-17,-19,-23,-31,-39,-31,-29,-21,-16,-21,-20,-24,-25,-27,-26,-27,-29,-29,-41,-36,-27,-27,-33,-32,-24,-23,-23,-31,-21,-17,-25,-24,-28,-29,-31,-25,-24,-29,-28,-34,-28,-18,-21,-26,-31,-33,-36,-36,-26,-27,-26,-29,-38,-31,-30,-23,-17,-24,-32,-27,-29,-38,-25,-27,-32,-25,-21,-33,-39,-30,-27,-21,-23,-24,-21,-21,-25,-33,-30,-24,-23,-17,-20,-27,-32,-32,-32,-35,-32,-32,-36,-26,-28,-24,-18,-25,-26,-20,-12,-25,-30,-23,-27,-32,-36,-34,-22,-24,-29,-23,-28,-33,-32,-28,-23,-21,-23,-23,-22,-17,-21,-22,-16,-23,-24,-26,-29,-26,-33,-26,-27,-32,-22,-27,-35,-28,-19,-25,-30,-27,-27,-32,-28,-27,-32,-24,-12,-13,-24,-24,-29,-31,-27,-28,-24,-24,-27,-26,-30,-29,-22,-29,-21,-18,-31,-32,-31,-27,-25,-32,-28,-17,-25,-31,-25,-31,-24,-28,-29,-21,-25,-27,-23,-21,-26,-19,-21,-27,-27,-21,-20,-22,-21,-22,-21,-29,-30,-31,-34,-34,-24,-22,-29,-30,-33,-39,-34,-27,-29,-33,-34,-37,-31,-18,-25,-32,-31,-34,-41,-36,-24,-24,-24,-26,-28,-28,-17,-18,-32,-36,-30,-26,-22,-21,-23,-20,-27,-26,-28,-34,-27,-29,-29,-28,-24,-26,-34,-34,-28,-28,-25,-18,-21,-26,-23,-19,-24,-24,-29,-25,-21,-25,-24,-24,-27,-27,-23,-21,-25,-27,-33,-34,-31,-27,-23,-27,-21,-23,-32,-28,-24,-19,-23,-27,-32,-38,-26,-28,-34,-31,-28,-25,-30,-32,-32,-36,-32,-32,-32,-19,-23,-22,-25,-30,-21,-25,-29,-30,-38,-38,-35,-29,-23,-21,-23,-31,-40,-35,-29,-31,-32,-32,-31,-23,-22,-31,-30,-32,-29,-25,-26,-27,-31,-33,-33,-36,-40,-37,-30,-29,-27,-26,-23,-18,-26,-29,-31,-32,-28,-31,-25,-30,-32,-19,-21,-25,-23,-31,-32,-29,-30,-28,-30,-26,-21,-23,-25,-24,-19,-24,-30,-23,-27,-35,-33,-23,-20,-18,-22,-32,-27,-23,-22,-34,-34,-30,-28,-27,-40,-31,-34,-31,-24,-31,-29,-21,-16,-32,-31,-22,-30,-28,-37,-35,-23,-28,-29,-31,-27,-29,-26,-25,-29,-30,-33,-27,-30,-37,-30,-22,-24,-21,-20,-22,-25,-31,-25,-17,-25,-31,-25,-24,-32,-33,-27,-25,-19,-29,-25,-18,-26,-31,-30,-21,-17,-13,-21,-30,-32,-29,-19,-29,-28,-28,-25,-15,-25,-26,-22,-25,-32,-22,-17,-27,-26,-29,-28,-23,-24,-31,-36,-27,-26,-22,-24,-18,-18,-29,-33,-34,-25,-24,-25,-26,-25,-21,-25,-27,-29,-37,-38,-33,-33,-32,-25,-24,-31,-24,-26,-20,-21,-33,-16,-24,-37,-35,-33,-27,-20,-24,-28,-23,-30,-42,-36,-32,-31,-32,-35,-30,-23,-22,-21,-26,-34,-33,-28,-30,-34,-25,-25,-28,-28,-35,-31,-26,-28,-27,-39,-34,-24,-25,-33,-37,-30,-28,-32,-25,-34,-40,-31,-31,-30,-35,-23,-22,-20,-22,-31,-24,-25,-29,-27,-29,-35,-35,-29,-28,-27,-26,-25,-19,-19,-21,-29,-22,-24,-32,-28,-33,-29,-24,-29,-26,-25,-34,-34,-32,-32,-21,-28,-33,-36,-36,-21,-20,-18,-23,-23,-28,-27,-32,-40,-40,-37,-27,-25,-26,-17,-11,-28,-21,-23,-36,-30,-19,-17,-17,-22,-30,-18,-16,-20,-25,-30,-33,-36,-39,-30,-21,-27,-32,-35,-33,-26,-22,-30,-32,-36,-36,-32,-28,-23,-24,-25,-23,-22,-25,-25,-22,-18,-18,-22,-23,-27,-26,-25,-26,-31,-27,-18,-23,-23,-23,-28,-32,-30,-32,-33,-21,-25,-29,-21,-23,-33,-27,-26,-24,-23,-33,-27,-27,-34,-32,-31,-24,-29,-35,-29,-31,-26,-31,-30,-31,-33,-27,-27,-32,-34,-27,-25,-26,-32,-31,-26,-34,-35,-33,-26,-28,-37,-30,-31,-36,-23,-24,-23,-29,-39,-29,-30,-22,-21,-27,-27,-23,-21,-28,-26,-31,-31,-31,-31,-24,-31,-36,-33,-26,-30,-26,-16,-16,-19,-23,-28,-34,-27,-25,-32,-34,-31,-28,-31,-35,-32,-29,-29,-26,-19,-19,-24,-26,-30,-28,-29,-27,-29,-25,-21,-31,-24,-32,-28,-20,-22,-22,-24,-29,-28,-27,-31,-26,-31,-28,-34,-31,-24,-22,-24,-26,-25,-30,-26,-25,-33,-33,-21,-21,-23,-21,-25,-27,-24,-26,-24,-28,-30,-34,-31,-24,-22,-24,-27,-21,-27,-34,-30,-26,-35,-35,-22,-21,-24,-27,-36,-34,-31,-25,-25,-27,-26,-19,-32,-37,-20,-28,-30,-25,-33,-33,-27,-29,-34,-30,-26,-30,-26,-25,-32,-34,-27,-36,-27,-21,-29,-27,-31,-30,-32,-22,-29,-40,-28,-25,-32,-41,-41,-25,-21,-27,-32,-34,-25,-25,-30,-15,-28,-30,-29,-31,-16,-28,-23,-28,-35,-35,-31,-30,-33,-32,-34,-38,-39,-26,-20,-32,-36,-26,-20,-21,-31,-33,-29,-27,-29,-22,-30,-33,-26,-22,-20,-22,-21,-28,-39,-33,-21,-24,-34,-35,-26,-29,-35,-35,-31,-33,-34,-21,-25,-24,-24,-29,-30,-38,-31,-27,-24,-26,-24,-25,-21,-20,-31,-20,-27,-39,-32,-32,-22,-20,-28,-22,-22,-32,-31,-30,-30,-27,-24,-19,-23,-17,-24,-31,-24,-29,-27,-13,-19,-26,-20,-24,-26,-24,-26,-19,-21,-33,-32,-31,-30,-29,-32,-32,-22,-29,-31,-31,-35,-21,-28,-32,-25,-27,-22,-27,-29,-21,-21,-15,-12,-25,-24,-24,-33,-29,-27,-26,-36,-42,-24,-27,-27,-23,-25,-30,-36,-34,-27,-35,-33,-30,-34,-27,-32,-29,-26,-25,-21,-24,-26,-30,-33,-32,-28,-28,-24,-25,-27,-26,-24,-31,-32,-27,-31,-24,-26,-24,-29,-38,-38,-35,-28,-24,-14,-21,-31,-33,-27,-21,-26,-32,-35,-29,-29,-26,-23,-28,-23,-31,-38,-28,-30,-39,-30,-29,-25,-20,-30,-33,-27,-17,-30,-28,-23,-25,-24,-35,-31,-30,-35,-31,-37,-38,-26,-28,-30,-31,-33,-27,-32,-32,-31,-34,-28,-21,-25,-27,-26,-27,-32,-32,-31,-29,-28,-25,-25,-32,-32,-29,-35,-29,-31,-32,-22,-38,-33,-27,-29,-24,-23,-25,-24,-24,-33,-36,-36,-30,-30,-30,-30,-36,-37,-37,-27,-29,-34,-29,-28,-31,-32,-25,-21,-26,-28,-18,-25,-30,-29,-27,-18,-22,-34,-34,-32,-32,-38,-32,-25,-34,-32,-26,-31,-30,-29,-38,-39,-33,-27,-29,-31,-28,-14,-24,-33,-24,-32,-25,-21,-28,-27,-33,-29,-25,-25,-21,-21,-23,-25,-24,-27,-33,-27,-21,-27,-30,-27,-32,-38,-33,-30,-33,-27,-23,-34,-22,-17,-22,-11,-20,-27,-26,-29,-31,-27,-30,-30,-30,-40,-31,-21,-19,-19,-20,-30,-33,-26,-31,-30,-28,-33,-26,-31,-31,-27,-25,-23,-25,-35,-36,-30,-26,-24,-29,-33,-32,-30,-33,-29,-27,-23,-25,-24,-26,-32,-28,-26,-32,-32,-35,-35,-31,-27,-24,-29,-31,-37,-35,-26,-32,-25,-29,',
  9472. '2023-08-24T16:53:35.213310700' )
  9473. 16:54:00.500 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9474. 16:54:06.804 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9475. 16:54:06.814 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9476. client_id,
  9477. client_title,
  9478. client_app_id,
  9479. client_app_key,
  9480. client_app_secret,
  9481. client_desc,
  9482. status,
  9483. is_fixed
  9484. FROM client
  9485. WHERE deleted_flag = 0
  9486. AND client_app_id = '10001'
  9487. AND client_app_key = '82a8bf439373e305'
  9488. 16:54:06.832 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9489. A.oc_id,
  9490. B.oc_type_id,
  9491. B.oc_name,
  9492. A.account_id,
  9493. A.account_name,
  9494. A.account_real_name,
  9495. A.password,
  9496. A.account_type,
  9497. A.account_staff_no,
  9498. A.account_phone,
  9499. A.account_last_ip,
  9500. A.account_loc,
  9501. A.status,
  9502. A.account_avatar,
  9503. A.account_photo,
  9504. A.account_real_name,
  9505. A.account_intro,
  9506. A.wx_id,
  9507. A.is_fixed
  9508. FROM account AS A
  9509. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  9510. WHERE A.deleted_flag = 0
  9511. AND (A.account_name = 'sxky'
  9512. OR A.account_phone = 'sxky'
  9513. OR A.account_mail = 'sxky'
  9514. OR A.account_staff_no = 'sxky')
  9515. 16:54:06.843 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  9516. A.oc_id,
  9517. A.oc_name,
  9518. A.oc_type_id,
  9519. A.root_id,
  9520. A.parent_id,
  9521. A.admin_id,
  9522. B.account_name AS admin_name,
  9523. A.group_id,
  9524. A.node_left,
  9525. A.node_right,
  9526. A.node_level,
  9527. A.is_leaf,
  9528. A.status,
  9529. A.if_lic
  9530. FROM oc AS A
  9531. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  9532. WHERE A.oc_id = 406283
  9533. 16:54:06.855 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  9534. A.rm_id,
  9535. A.role_id,
  9536. B.role_type_id,
  9537. B.role_code,
  9538. B.role_name,
  9539. A.account_id
  9540. FROM s_role_member AS A
  9541. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  9542. WHERE account_id = 406283
  9543. LIMIT 1
  9544. 16:54:06.862 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9545. A.gm_id,
  9546. A.oc_id,
  9547. A.group_id,
  9548. B.group_name,
  9549. B.node_left ,
  9550. B.node_right,
  9551. A.account_id
  9552. FROM s_group_member AS A
  9553. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  9554. WHERE B.deleted_flag = 0
  9555. AND A.oc_id = 406283
  9556. AND A.account_id = 406283
  9557. LIMIT 1
  9558. 16:54:06.868 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9559. A.gmp_id,
  9560. A.oc_id,
  9561. A.group_id,
  9562. B.group_name,
  9563. A.account_id,
  9564. D.account_name,
  9565. D.account_real_name,
  9566. A.position_id,
  9567. C.position_name
  9568. FROM s_group_member_position A
  9569. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  9570. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  9571. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  9572. WHERE A.deleted_flag = 0
  9573. AND A.oc_id = 406283
  9574. AND A.group_id = 406283
  9575. AND A.account_id = 406283
  9576. LIMIT 1
  9577. 16:54:06.873 [XNIO-1 task-2] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  9578. A.gmpg_id,
  9579. A.oc_id,
  9580. A.group_id,
  9581. A.account_id,
  9582. A.position_id,
  9583. A.grant_group_id,
  9584. B.group_name AS grant_group_name
  9585. FROM s_group_member_position_grant A
  9586. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  9587. WHERE A.deleted_flag = 0
  9588. AND A.oc_id = 406283
  9589. AND A.group_id = 406283
  9590. AND A.account_id = 406283
  9591. AND A.position_id = 406283
  9592. LIMIT 1
  9593. 16:54:06.948 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  9594. client_id,
  9595. client_title,
  9596. client_app_id,
  9597. client_app_key,
  9598. client_app_secret,
  9599. client_desc,
  9600. status,
  9601. is_fixed
  9602. FROM client
  9603. WHERE deleted_flag = 0
  9604. AND client_app_id = '10001'
  9605. AND client_app_key = '82a8bf439373e305'
  9606. 16:54:06.965 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  9607. A.client_id,
  9608. A.role_id,
  9609. A.permit_id,
  9610. A.permit_title,
  9611. A.permit_code,
  9612. A.permit_entry,
  9613. A.permit_desc,
  9614. A.permit_type,
  9615. A.parent_id,
  9616. A.root_id,
  9617. A.sort_no,
  9618. A.is_home
  9619. FROM s_role_permit AS A
  9620. WHERE 1 = 1
  9621. AND A.client_id = 2
  9622. AND A.role_id = 6
  9623. ORDER BY A.parent_id ASC ,A.sort_no ASC
  9624. 16:54:07.181 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:07 | Time Consuming: 30 ms | Connection: statement-0 | SQL: SELECT count(*)
  9625. FROM msg AS M
  9626. WHERE M.oc_id = 406283
  9627. AND (
  9628. EXISTS (
  9629. SELECT 1 FROM msg_to TT
  9630. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  9631. ) OR
  9632. EXISTS (
  9633. SELECT 1 FROM msg_cc CC
  9634. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  9635. )
  9636. )
  9637. 16:54:07.717 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9638. 16:54:07.721 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  9639. 16:54:07.727 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  9640. FROM goaf_sensor
  9641. where oc_id = 406283
  9642. LIMIT 10
  9643. 16:54:10.754 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:10 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9644. 16:54:10.770 [XNIO-1 task-3] INFO p6spy - 2023-08-24 16:54:10 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  9645. FROM goaf_sensordata
  9646. WHERE oc_id = 406283
  9647. ORDER BY goaf_datareport_time DESC
  9648. LIMIT 1
  9649. 17:00:29.186 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:00:29 | Time Consuming: 5021 ms | Connection: statement-0 | SQL: SELECT 1
  9650. 17:00:29.191 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:00:29 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  9651. 17:00:29.205 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:00:29 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT *
  9652. FROM goaf_sensordata
  9653. WHERE oc_id = 406283
  9654. ORDER BY goaf_datareport_time DESC
  9655. LIMIT 1
  9656. 17:02:22.836 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:02:22 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  9657. 17:02:22.845 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:02:22 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  9658. A.job_id,
  9659. A.job_title,
  9660. A.job_desc,
  9661. A.status,
  9662. A.job_type,
  9663. A.job_code,
  9664. A.job_cron,
  9665. A.job_class_id,
  9666. B.job_class,
  9667. A.cycle_title,
  9668. A.cycle_period,
  9669. A.cycle_unit
  9670. FROM job AS A
  9671. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9672. WHERE A.job_id = 439094
  9673. 17:02:30.520 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:02:30 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  9674. 17:02:30.535 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:02:30 | Time Consuming: 8 ms | Connection: statement-5 | SQL: UPDATE job
  9675. SET job_title = '巡检天任务',
  9676. job_desc = '天任务',
  9677. status = 1,
  9678. job_type = 1,
  9679. job_code = 'Cron任务',
  9680. job_cron = '0 3 17 * * ?',
  9681. job_class_id = 2,
  9682. cycle_title = '天',
  9683. cycle_period = 0,
  9684. cycle_unit = 0,
  9685. updated_by = 1,
  9686. updated_at = '2023-08-24T17:02:30.523075900'
  9687. WHERE job_id = 439094
  9688. 17:02:30.583 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:02:30 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  9689. 17:02:30.588 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:02:30 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  9690. A.job_id,
  9691. A.job_title,
  9692. A.job_desc,
  9693. A.status,
  9694. A.job_type,
  9695. A.job_code,
  9696. A.job_cron,
  9697. A.job_class_id,
  9698. B.job_class,
  9699. A.cycle_title,
  9700. A.cycle_period,
  9701. A.cycle_unit
  9702. FROM job AS A
  9703. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9704. WHERE A.deleted_flag = 0
  9705. ORDER BY A.job_id ASC
  9706. LIMIT 10
  9707. 17:03:25.621 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:03:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  9708. 17:03:25.631 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:03:25 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  9709. A.job_id,
  9710. A.job_title,
  9711. A.job_desc,
  9712. A.status,
  9713. A.job_type,
  9714. A.job_code,
  9715. A.job_cron,
  9716. A.job_class_id,
  9717. B.job_class,
  9718. A.cycle_title,
  9719. A.cycle_period,
  9720. A.cycle_unit
  9721. FROM job AS A
  9722. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9723. WHERE A.job_id = 439094
  9724. 17:03:29.857 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:03:29 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  9725. 17:03:29.870 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:03:29 | Time Consuming: 7 ms | Connection: statement-5 | SQL: UPDATE job
  9726. SET job_title = '巡检天任务',
  9727. job_desc = '天任务',
  9728. status = 1,
  9729. job_type = 1,
  9730. job_code = 'Cron任务',
  9731. job_cron = '0 4 17 * * ?',
  9732. job_class_id = 2,
  9733. cycle_title = '天',
  9734. cycle_period = 0,
  9735. cycle_unit = 0,
  9736. updated_by = 1,
  9737. updated_at = '2023-08-24T17:03:29.861454400'
  9738. WHERE job_id = 439094
  9739. 17:03:29.907 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:03:29 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  9740. 17:03:29.914 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:03:29 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  9741. A.job_id,
  9742. A.job_title,
  9743. A.job_desc,
  9744. A.status,
  9745. A.job_type,
  9746. A.job_code,
  9747. A.job_cron,
  9748. A.job_class_id,
  9749. B.job_class,
  9750. A.cycle_title,
  9751. A.cycle_period,
  9752. A.cycle_unit
  9753. FROM job AS A
  9754. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9755. WHERE A.deleted_flag = 0
  9756. ORDER BY A.job_id ASC
  9757. LIMIT 10
  9758. 17:03:33.426 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9759. 17:03:33.427 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  9760. 17:03:33.429 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  9761. 17:03:33.432 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9762. 17:03:33.433 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  9763. 17:03:33.433 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  9764. 17:03:33.441 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  9765. 17:03:33.442 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  9766. 17:03:33.442 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  9767. 17:03:33.442 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9768. 17:03:33.442 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  9769. 17:03:33.475 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  9770. 17:03:33.478 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  9771. 17:03:36.593 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  9772. 17:03:36.641 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3512 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  9773. 17:03:36.641 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  9774. 17:03:36.693 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  9775. 17:03:36.694 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  9776. 17:03:39.278 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  9777. 17:03:39.283 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  9778. 17:03:39.410 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 98 ms. Found 0 Redis repository interfaces.
  9779. 17:03:39.649 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  9780. 17:03:39.674 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  9781. 17:03:40.588 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  9782. 17:03:40.588 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3894 ms
  9783. 17:03:43.250 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  9784. 17:03:43.261 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  9785. 17:03:43.261 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  9786. 17:03:43.262 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  9787. 17:03:43.262 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9788. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9789. NOT STARTED.
  9790. Currently in standby mode.
  9791. Number of jobs executed: 0
  9792. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9793. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9794. 17:03:43.262 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9795. 17:03:43.262 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9796. 17:03:43.263 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6ced931c
  9797. 17:03:45.242 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  9798. 17:03:45.248 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  9799. 17:03:45.418 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  9800. 17:03:45.454 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9801. 17:03:45.454 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  9802. 17:03:45.454 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  9803. 17:03:45.479 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  9804. 17:03:45.489 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  9805. 17:03:45.499 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  9806. 17:03:45.530 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  9807. 17:03:45.582 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  9808. 17:03:45.583 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  9809. 17:03:45.584 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9810. 17:03:45.609 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.496 seconds (process running for 10.274)
  9811. 17:03:45.611 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  9812. 17:03:45.619 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  9813. 17:03:46.002 [restartedMain] INFO p6spy - 2023-08-24 17:03:46 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  9814. 17:03:46.006 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@b0c4902
  9815. 17:03:46.021 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  9816. 17:03:46.108 [restartedMain] INFO p6spy - 2023-08-24 17:03:46 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  9817. A.job_id,
  9818. A.job_title,
  9819. A.job_desc,
  9820. A.status,
  9821. A.job_type,
  9822. A.job_code,
  9823. A.job_cron,
  9824. A.job_class_id,
  9825. B.job_class,
  9826. A.cycle_title,
  9827. A.cycle_period,
  9828. A.cycle_unit
  9829. FROM job AS A
  9830. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  9831. WHERE A.deleted_flag = 0
  9832. AND A.status = 1
  9833. ORDER BY A.job_id ASC
  9834. 17:03:46.129 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9835. 17:03:46.131 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  9836. 17:03:46.892 [RMI TCP Connection(14)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  9837. 17:03:46.893 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  9838. 17:03:46.894 [RMI TCP Connection(15)-192.168.3.5] INFO p6spy - 2023-08-24 17:03:46 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9839. 17:03:46.898 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  9840. 17:03:46.908 [RMI TCP Connection(15)-192.168.3.5] INFO p6spy - 2023-08-24 17:03:46 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9841. 17:04:00.005 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  9842. 17:04:00.010 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 17:04:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9843. 17:04:00.026 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  9844. 17:04:45.444 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:04:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  9845. 17:04:45.450 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:04:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  9846. FROM goaf_sensor
  9847. WHERE goaf_sensor_ip = '192.168.3.12'
  9848. 17:04:45.465 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:04:45 | Time Consuming: 8 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  9849. 17:04:45.470 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:04:45 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  9850. 17:04:45.503 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:04:45 | Time Consuming: 22 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  9851. ( goaf_data_id,
  9852. oc_id,
  9853. goaf_sensor_id,
  9854. goaf_sensor_name,
  9855. frequency_x,
  9856. frequency_y,
  9857. frequency_z,
  9858. acc_x,
  9859. acc_y,
  9860. acc_z,
  9861. vel_x,
  9862. vel_y,
  9863. vel_z,
  9864. dis_x,
  9865. dis_y,
  9866. dis_z,
  9867. sensor_temperature,
  9868. ang_x,
  9869. ang_y,
  9870. ang_z,
  9871. f_alarm_acc_x,
  9872. f_alarm_acc_y,
  9873. f_alarm_acc_z,
  9874. f_alarm_vel_x,
  9875. f_alarm_vel_y,
  9876. f_alarm_vel_z,
  9877. f_alarm_dis_x,
  9878. f_alarm_dis_y,
  9879. f_alarm_dis_z,
  9880. f_alarm_temperature,
  9881. td_wave_value_x,
  9882. td_wave_value_y,
  9883. td_wave_value_z,
  9884. goaf_datareport_time )
  9885. values ( 442168,
  9886. 406283,
  9887. 442139,
  9888. 'jacintoqqq',
  9889. 453,
  9890. 453,
  9891. 453,
  9892. 8448,
  9893. 7027,
  9894. 966,
  9895. 20336,
  9896. 16150,
  9897. 2277,
  9898. 2071,
  9899. 1681,
  9900. 234,
  9901. 322,
  9902. -8794,
  9903. -17,
  9904. -204,
  9905. 64695,
  9906. 64697,
  9907. 64703,
  9908. 64696,
  9909. 64704,
  9910. 64697,
  9911. 64693,
  9912. 64698,
  9913. 64700,
  9914. -843,
  9915. '-10173,-9842,-8789,-9087,-9281,-8758,-9048,-8590,-7713,-7705,-7581,-7547,-8130,-7830,-7266,-7341,-7121,-7026,-7415,-7058,-6825,-6563,-6128,-6084,-6021,-5690,-5362,-5079,-4734,-4588,-4179,-3749,-3578,-3241,-2828,-2469,-2087,-1834,-1649,-1395,-1053,-605,-175,68,223,487,1021,1595,2191,2686,2988,3380,3998,4603,5111,5637,6021,6293,6533,6677,6836,7124,7208,7272,7435,7271,7247,7305,7123,7099,6968,6854,6838,6761,6745,6615,6521,6471,6483,6587,6627,6548,6470,6479,6527,6539,6406,6100,5952,5875,5687,5483,5167,4877,4667,4409,4087,3820,3549,3359,3089,2914,2611,2285,2148,1843,1651,1375,1048,701,376,35,-171,-504,-953,-1268,-1675,-1984,-2302,-2816,-3581,-4197,-4746,-5308,-5393,-5648,-5405,-5051,-8383,-10040,-7147,-8479,-10771,-8913,-9228,-10574,-9245,-10541,-11057,-9832,-10874,-10494,-9838,-10791,-10560,-9798,-10133,-9077,-8580,-9219,-8760,-8652,-8785,-7832,-7497,-7642,-7370,-7781,-8046,-7296,-7404,-7219,-7042,-7374,-7136,-6925,-6797,-6479,-6183,-6193,-5821,-5605,-5314,-5039,-4824,-4382,-3854,-3621,-3480,-3117,-2743,-2285,-1953,-1851,-1675,-1341,-873,-372,36,32,291,684,1227,2028,2545,2895,3197,3693,4338,4930,5499,5995,6285,6577,6708,6826,7116,7212,7299,7347,7322,7231,7251,7230,7029,7017,6849,6815,6802,6712,6625,6496,6484,6459,6549,6610,6476,6461,6555,6594,6663,6544,6288,6135,6045,5880,5652,5397,5041,4781,4575,4242,3994,3751,3465,3241,2958,2731,2408,2217,1959,1703,1495,1101,788,437,101,-160,-411,-809,-1153,-1525,-1960,-2233,-2655,-3281,-3867,-4456,-5065,-5209,-5562,-5569,-5043,-6562,-11975,-6669,-7749,-11336,-8453,-9320,-10132,-9760,-9652,-11285,-9666,-10507,-10717,-9818,-10395,-10794,-9594,-9942,-9343,-8279,-8937,-8869,-8401,-8743,-8034,-7316,-7511,-7361,-7611,-8103,-7663,-7312,-7312,-7146,-7354,-7431,-7174,-7010,-6615,-6375,-6333,-6206,-5793,-5528,-5220,-4987,-4636,-4037,-3673,-3557,-3332,-2962,-2521,-2079,-1915,-1772,-1495,-1161,-582,-118,41,128,428,989,1774,2392,2763,3136,3527,4131,4716,5389,5862,6263,6502,6576,6807,7059,7152,7183,7293,7313,7226,7195,7197,7026,6983,6891,6772,6729,6649,6594,6465,6527,6469,6469,6595,6561,6608,6596,6615,6720,6650,6467,6309,6170,5947,5771,5556,5217,4946,4690,4405,4145,3893,3566,3266,3001,2786,2499,2272,2064,1722,1541,1143,781,497,108,-84,-272,-641,-1059,-1448,-1854,-2176,-2477,-3024,-3688,-4303,-4838,-5042,-5364,-5522,-5031,-5875,-11728,-7043,-7663,-10633,-8551,-9020,-9601,-10076,-9198,-11080,-9735,-10021,-10681,-9945,-10039,-10848,-9569,-9691,-9481,-8242,-8735,-8954,-8362,-8676,-8272,-7401,-7422,-7423,-7445,-8098,-8072,-7508,-7509,-7339,-7312,-7653,-7535,-7336,-6959,-6545,-6446,-6349,-6161,-5861,-5489,-5118,-4785,-4274,-3895,-3782,-3518,-3126,-2678,-2245,-2015,-1857,-1590,-1274,-750,-362,-149,0,251,795,1532,2178,2593,2961,3387,3890,4615,5164,5686,6065,6318,6486,6648,6876,7089,7119,7185,7306,7131,7124,7093,7004,6886,6853,6686,6602,6586,6560,6551,6491,6462,6409,6625,6705,6708,6728,6592,6681,6760,6677,6479,6246,6016,5880,5719,5406,5103,4804,4517,4262,3968,3667,3406,3136,2922,2622,2386,2138,1833,1619,1348,958,641,300,62,-128,-446,-785,-1145,-1630,-1972,-2292,-2789,-3369,-4043,-4618,-4972,-5243,-5485,-5153,-5125,-8723,-9386,-7026,-8354,-10064,-8507,-8684,-10193,-8812,-10223,-10477,-9431,-10442,-10037,-9548,-10519,-10085,-9452,-9918,-8721,-8266,-8884,-8563,-8517,-8713,-7812,-7378,-7459,-7249,-7894,-8320,-7870,-7653,-7571,-7365,-7610,-7758,-7571,-7245,-6931,-6669,-6589,-6462,-6105,-5681,-5444,-5115,-4616,-4197,-3894,-3726,-3430,-2941,-2413,-2007,-1753,-1603,-1450,-1067,-637,-223,-5,162,467,1112,1866,2379,2856,3193,3633,4251,4806,5272,5817,6086,6402,6471,6699,6971,6994,7146,7185,7182,7052,7074,6967,6887,6811,6687,6522,6551,6533,6493,6467,6441,6492,6611,6792,6749,6800,6670,6687,6813,6732,6609,6293,6105,6025,5861,5556,5243,4940,4646,4356,4042,3817,3516,3294,3050,2787,2526,2297,2015,1789,1522,1119,841,529,296,71,-199,-470,-857,-1299,-1647,-1922,-2469,-3073,-3696,-4296,-4708,-5043,-5325,-5239,-4884,-5941,-10821,-6268,-7368,-10277,-8260,-8806,-9044,-9436,-8930,-10739,-9645,-9940,-10118,-9505,-9824,-10451,-9753,-9914,-9593,-8255,-8687,-8861,-8541,-8990,-8604,-7755,-7549,-7464,-7582,-8318,-8367,-7961,-7750,-7534,-7437,-7876,-7833,-7584,-7228,-6793,-6599,-6683,-6334,-5937,-5701,-5242,-4896,-4588,-4157,-3837,-3603,-3129,-2714,-2202,-1832,-1680,-1472,-1277,-901,-473,-107,85,301,748,1397,2049,2544,2957,3325,3876,4342,4917,5363,5772,6097,6330,6452,6690,6892,6941,7116,7170,7090,7002,7041,6869,6878,6758,6582,6569,6576,6536,6568,6576,6579,6601,6722,6809,6773,6804,6683,6742,6686,6599,6426,6194,6150,5893,5663,5425,5086,4842,4518,4241,3985,3711,3404,3193,2953,2687,2487,2215,1952,1700,1374,1001,790,474,247,43,-197,-533,-985,-1290,-1620,-2067,-2617,-3199,-3861,-4473,-4792,-5102,-5290,-5041,-4762,-6699,-10141,-6194,-7544,-10420,-8087,-8438,-9256,-8926,-9513,-10745,-9586,-10061,-9844,-9390,-10159,-10317,-9813,-10165,-9306,-8566,-9040,-8826,-8795,-9182,-8569,-7953,-7813,-7516,-7785,-8437,-8312,-8045,-7808,-7491,-7469,-7778,-7751,-7574,-7179,-6683,-6477,-6373,-6122,-5919,-5494,-5085,-4860,-4390,-3979,-3806,-3443,-2871,-2485,-1992,-1716,-1530,-1336,-1094,-647,-233,47,228,482,882,1585,2232,2667,3013,3381,3939,4428,4989,5425,5681,6092,6283,6344,6704,6847,6945,7137,7187,7116,7084,7053,6931,6909,6758,6615,6621,6630,6671,6666,6586,6593,6628,6763,6819,6780,6699,6595,6555,6580,6527,6258,6130,5915,5700,5586,5304,4980,4735,4432,4116,3867,3545,3295,3094,2868,2627,2443,2181,1907,1604,1203,919,694,446,237,13,-213,-579,-962,-1298,-1680,-2096,-2689,-3415,-4069,-4507,-4941,-5128,-5153,-4862,-4695,-7635,-8981,-6747,-8032,-10030,-8277,-8239,-9445,-8694,-10077,-10620,-9733,-10188,-9691,-9549,-10335,-10298,-10003,-10219,-9239,-8792,-9260,-8978,-9105,-9245,-8612,-8056,-7876,-7646,-7984,-8445,-8178,-7918,-7678,-7356,-7458,-7680,-7608,-7322,-6852,-6473,-6347,-6182,-5977,-5643,-5249,-5045,-4616,-4219,-3999,-3562,-3170,-2841,-2384,-1886,-1620,-1355,-1182,-909,-468,-140,130,419,625,1087,1776,2259,2754,3132,3498,4079,4578,5029,5398,5713,6006,6245,6418,6690,6873,7042,7198,7258,7161,7143,7067,6965,6942,6781,6681,6656,6698,6709,6695,6630,6643,6622,6746,6784,6725,6557,6487,6484,6450,6401,6150,6020,5792,5646,5484,5179,4906,4632,4326,4040,3780,3456,3224,3027,2817,2612,2376,2173,1864,1510,1176,857,622,425,223,-64,-293,-657,-957,-1321,-1689,-2222,-2950,-3509,-4078,-4668,-4902,-5097,-5172,-4807,-4995,-8386,-8132,-7274,-8596,-9574,-8646,-8326,-9692,-8932,-10460,-10580,-9900,-10272,-9707,-9851,-10609,-10264,-10160,-10120,-9184,-9032,-9488,-9111,-9162,-9138,-8426,-8046,-7972,-7806,-8143,-8338,-7872,-7703,-7527,-7331,-7460,-7495,-7311,-6961,-6625,-6328,-6224,-5986,-5709,-5387,-5065,-4846,-4422,-4116,-3641,-3361,-3238,-2757,-2255,-1893,-1545,-1258,-1154,-780,-429,9,292,449,711,1165,1796,2388,2917,3152,3579,4169,4645,5136,5557,5794,6088,6343,6436,6769,6915,7025,7267,7288,7167,7179,7134,7072,7010,6849,6713,6712,6749,6731,6667,6584,6630,6636,6703,6715,6601,6583,6522,6415,6373,6173,6039,5913,5742,5575,5304,5088,4827,4540,4307,3964,3704,3432,3195,3015,2770,2542,2332,2110,1819,1562,1216,864,604,352,107,-122,-387,-743,-1086,-1439,-1782,-2391,-3012,-3626,-4232,-4769,-5023,-5232,-5299,-4875,-5318,-9370,-7410,-7578,-9389,-9267,-8883,-8775,-9940,-9126,-10830,-10495,-10127,-10405,-9923,-10070,-10783,-10254,-10301,-10048,-9055,-9184,-9467,-8967,-9228,-9034,-8159,-8008,-7864,-7685,-8131,-8119,-7604,-7571,-7355,-7185,-7372,-7234,-7042,-6803,-6416,-6173,-6060,-5749,-5535,-5260,-4967,-4717,-4284,-3903,-3571,-3493,-3022,-2519,-2194,-1756,-1613,-1449,-1164,-622,-209,121,215,394,797,1365,2067,2544,2891,3163,3704,4325,4896,5365,5692,5929,6248,6407,6518,6934,7018,7194,7354,7297,7209,7241,7176,7060,7008,6853,6801,6778,6769,6682,6618,6572,6472,6623,6640,6596,6583,6465,6472,6411,6343,6164,6015,5846,5725,5496,5279,5030,4727,4526,4227,3892,3657,3391,3143,3002,2725,2502,2265,1996,1756,1538,1159,869,576,225,20,-244,-556,-921,-1278,-1648,-1993,-2522,-3131,-3856,-4329,-4988,-5233,-5415,-5466,-5011,-5899,-10656,-6710,-7764,-10517,-8704,-9263,-9545,-9883,-9474,-11282,-10116,-10354,-10637,-9962,-10298,-10899,-10128,-10249,-9821,-8824,-9187,-9291,-8835,-9106,-8612,-7890,-7806,-7613,-7675,-8063,-7811,-7409,-7357,-7204,-7145,-7276,-7075,-6890,-6602,-6263,-6088,-5945,-5607,-5370,-5119,-4839,-4619,-4092,-3712,-3593,-3296,-2870,-2487,-1950,-1750,-1711,-1340,-1085,-529,-71,61,207,485,913,1649,2286,2625,2999,3339,3922,4644,5155,5579,5990,6266,6472,6609,6788,7054,7221,7278,7391,7351,7215,7306,7216,7047,7014,6820,6749,6738,6675,6642,6456,6458,6502,6520,6627,6608,6544,6542,6526,6481,6364,6157,5985,5850,5675,5384,5209,4825,4699,4459,4046,3851,3535,3301,3117,2911,2612,2405,2124,1884,1649,1395,1065,755,396,81,-112,-453,-799,-1170,-1568,-1909,-2235,-2806,-3508,-4129,-4746,-5255,-5406,-5692,-5514,-5223,-7972,-9972,-6961,-8183,-10668,-8901,-9311,-10454,-9306,-10330,-11000,-9922,-10892,-10565,-9896,-10717,',
  9916. '-1822,-2304,-2670,-2226,-2244,-2781,-3031,-3762,-4161,-4125,-4153,-3991,-3675,-4029,-4140,-4242,-4417,-4236,-4316,-4698,-4881,-5175,-5580,-5623,-6007,-6164,-6212,-6599,-6859,-6980,-7072,-7126,-7310,-7669,-7706,-7679,-7720,-7741,-7636,-7385,-7113,-7068,-6906,-6369,-5956,-5626,-5446,-5457,-5167,-4814,-4593,-4143,-3956,-4010,-3967,-3630,-3219,-2982,-2828,-2544,-2219,-2066,-1767,-1332,-1058,-877,-762,-506,-112,144,384,592,844,1158,1469,1839,2111,2305,2353,2462,2716,2988,3168,3384,3599,3815,4106,4388,4692,4946,5206,5403,5681,5932,6194,6416,6633,6771,6945,7109,7265,7409,7502,7592,7590,7638,7692,7710,7637,7726,7725,7667,7580,7407,7188,6952,6718,6369,5984,5812,5829,5483,5406,4972,4345,3614,2445,2236,4780,3203,3868,4008,1737,941,460,1480,1114,1202,-66,-1044,-938,-582,-527,-200,-952,-1820,-1896,-2494,-2505,-2100,-2695,-2923,-3340,-4030,-3973,-3993,-4085,-3677,-3763,-4079,-4027,-4364,-4360,-4246,-4684,-4755,-4995,-5339,-5617,-5871,-6173,-6186,-6382,-6810,-6975,-7224,-7327,-7364,-7650,-7789,-7741,-7834,-7799,-7694,-7461,-7105,-7019,-7000,-6624,-6080,-5575,-5326,-5410,-5262,-4822,-4505,-4091,-3777,-3830,-3819,-3647,-3282,-2977,-2939,-2728,-2413,-2163,-1911,-1559,-1154,-930,-749,-619,-334,-40,93,265,485,804,1150,1520,1821,2011,2222,2301,2533,2721,2884,3036,3290,3581,3870,4206,4414,4712,5003,5284,5590,5937,6164,6406,6642,6809,6922,7171,7381,7536,7630,7715,7746,7732,7779,7844,7816,7879,7880,7747,7731,7494,7312,7100,6879,6571,6125,5740,5709,5428,5304,4976,4353,3821,2737,2104,3925,4165,3540,3806,2892,934,344,1469,1238,1115,527,-867,-989,-379,-568,-87,-462,-1682,-1669,-2303,-2657,-2093,-2444,-2819,-3095,-3836,-4004,-3929,-4015,-3629,-3538,-3928,-4054,-4269,-4410,-4220,-4480,-4813,-4874,-5228,-5596,-5810,-6120,-6136,-6247,-6719,-7046,-7245,-7424,-7439,-7656,-7817,-7739,-7825,-7830,-7798,-7531,-7093,-6926,-6908,-6692,-6152,-5568,-5220,-5228,-5148,-4863,-4585,-4162,-3724,-3631,-3712,-3760,-3413,-3073,-3007,-2849,-2596,-2350,-2192,-1843,-1415,-1140,-998,-862,-628,-345,-193,-29,264,589,863,1179,1495,1808,2082,2149,2281,2548,2652,2803,3094,3385,3724,4086,4314,4591,4967,5256,5592,5939,6246,6456,6645,6842,7066,7327,7502,7670,7791,7792,7873,7805,7914,7969,7985,7992,7920,7860,7726,7484,7251,7114,6881,6630,6203,5737,5521,5355,5180,4874,4368,3928,2919,2074,3509,4880,3276,3913,3654,910,470,1251,1479,1330,1041,-463,-967,-338,-505,74,4,-1302,-1535,-2156,-2630,-2054,-2127,-2645,-2968,-3637,-4014,-3913,-3944,-3725,-3348,-3704,-3944,-4234,-4472,-4273,-4275,-4625,-4783,-5164,-5606,-5787,-5994,-6018,-6101,-6622,-7050,-7222,-7325,-7335,-7481,-7676,-7768,-7790,-7813,-7733,-7526,-7170,-6946,-6813,-6584,-6042,-5483,-5173,-5123,-5101,-4858,-4543,-4204,-3880,-3672,-3801,-3859,-3595,-3283,-3126,-2990,-2798,-2685,-2499,-2216,-1781,-1486,-1361,-1203,-953,-692,-437,-155,63,279,543,854,1232,1575,1823,1929,2033,2271,2505,2738,2972,3152,3450,3869,4247,4626,4962,5221,5525,5912,6204,6497,6784,6988,7170,7338,7522,7713,7805,7880,7900,7920,7946,7986,7988,7971,7934,7777,7650,7460,7229,7067,6808,6571,6202,5756,5604,5396,5263,4984,4563,4098,3330,2377,2551,4939,2990,4015,4277,1776,932,490,1477,1608,1640,455,-484,-752,-362,-210,331,-300,-1172,-1674,-2463,-2324,-1857,-2389,-2743,-3246,-3949,-3970,-3917,-3898,-3550,-3580,-3851,-3975,-4345,-4427,-4366,-4603,-4688,-4956,-5408,-5733,-5905,-6022,-6098,-6382,-6804,-6963,-7098,-7227,-7307,-7498,-7644,-7705,-7853,-7951,-7748,-7368,-6887,-6645,-6506,-6154,-5578,-5218,-5033,-4988,-4889,-4669,-4487,-4163,-3880,-3866,-3940,-3785,-3493,-3376,-3219,-3051,-2979,-2798,-2629,-2292,-1894,-1701,-1540,-1328,-992,-681,-429,-161,73,349,686,1039,1379,1637,1776,1847,2111,2364,2647,2900,3030,3328,3771,4199,4575,4941,5198,5494,5830,6180,6502,6819,7001,7207,7348,7515,7670,7758,7836,7879,7903,7865,7903,7913,7902,7889,7758,7596,7413,7129,6977,6798,6533,6212,5781,5631,5512,5378,5187,4804,4445,3774,2864,2193,3711,4500,3332,4066,3873,1423,337,1136,1602,1874,1569,243,-649,-508,-522,183,370,-476,-1197,-2109,-2419,-2000,-1982,-2519,-2822,-3518,-3979,-4072,-4067,-3897,-3566,-3630,-3865,-4175,-4512,-4504,-4468,-4559,-4675,-5181,-5673,-5840,-5963,-6012,-6175,-6557,-6808,-6858,-6994,-7087,-7297,-7472,-7550,-7712,-7877,-7855,-7531,-7103,-6714,-6550,-6324,-5862,-5472,-5239,-5055,-4988,-4835,-4735,-4590,-4221,-4040,-4081,-4029,-3802,-3655,-3514,-3327,-3156,-2975,-2879,-2689,-2332,-2020,-1804,-1585,-1300,-945,-681,-338,0,269,535,809,1188,1484,1688,1834,2059,2345,2610,2844,3095,3368,3733,4143,4520,4887,5157,5417,5751,6060,6417,6679,6890,7056,7211,7376,7533,7659,7732,7810,7771,7746,7714,7803,7835,7859,7761,7558,7417,7149,7004,6824,6573,6256,5854,5678,5687,5487,5406,5181,4710,4370,3547,2637,2289,4487,3670,3865,4387,3256,1599,7,1162,1625,2110,1559,294,-691,-666,-651,249,167,-505,-1224,-2278,-2321,-2057,-2146,-2464,-2932,-3649,-4038,-4292,-4318,-3893,-3652,-3737,-3959,-4413,-4625,-4525,-4526,-4484,-4749,-5324,-5732,-5937,-6043,-6053,-6203,-6506,-6689,-6794,-6895,-6872,-7113,-7348,-7513,-7708,-7767,-7679,-7428,-7031,-6744,-6589,-6249,-5839,-5479,-5237,-5140,-5084,-4917,-4858,-4667,-4297,-4254,-4268,-4162,-3944,-3663,-3502,-3351,-3101,-2918,-2878,-2626,-2287,-2006,-1775,-1514,-1244,-857,-472,-83,246,476,771,1087,1459,1730,1953,2093,2270,2526,2874,3185,3470,3742,4026,4414,4761,5023,5318,5594,5859,6099,6358,6608,6803,7008,7174,7348,7469,7532,7575,7622,7567,7543,7604,7737,7786,7769,7628,7405,7237,7022,6838,6632,6356,5995,5719,5721,5753,5585,5597,5110,4729,4334,3413,2461,2505,4995,3156,4197,4619,2786,1525,-33,1061,1738,2205,1317,270,-838,-941,-573,117,-98,-567,-1575,-2581,-2343,-2040,-2183,-2493,-3176,-3852,-4134,-4351,-4274,-3900,-3855,-3924,-4141,-4555,-4630,-4531,-4596,-4575,-4956,-5489,-5776,-5931,-6035,-6098,-6305,-6554,-6660,-6728,-6818,-6908,-7132,-7300,-7423,-7578,-7691,-7623,-7392,-7058,-6850,-6652,-6249,-5846,-5586,-5428,-5281,-5125,-5028,-5003,-4769,-4505,-4431,-4384,-4162,-3869,-3574,-3433,-3218,-2908,-2874,-2736,-2397,-2214,-1884,-1603,-1372,-998,-595,-197,206,539,771,1044,1364,1702,1990,2143,2272,2555,2821,3155,3444,3723,3947,4219,4578,4858,5145,5412,5626,5827,6065,6279,6495,6737,6940,7070,7196,7315,7369,7427,7441,7404,7409,7505,7618,7688,7709,7546,7340,7143,6984,6824,6585,6338,5928,5728,5852,5893,5741,5606,5166,4749,4233,3329,2431,2995,5107,3103,4158,4549,2339,1243,332,1182,1814,1993,837,-122,-990,-939,-411,-45,-455,-1069,-1997,-2512,-2210,-2048,-2370,-2774,-3335,-3934,-4132,-4264,-4227,-3926,-3913,-4039,-4298,-4549,-4483,-4408,-4606,-4735,-5085,-5462,-5641,-5872,-6089,-6190,-6303,-6508,-6670,-6837,-6921,-6945,-7127,-7273,-7351,-7500,-7646,-7594,-7425,-7036,-6860,-6737,-6394,-6010,-5703,-5496,-5334,-5233,-5136,-5065,-4788,-4442,-4377,-4411,-4173,-3797,-3431,-3333,-3105,-2753,-2587,-2379,-2147,-1866,-1540,-1340,-1030,-675,-363,21,437,777,1032,1335,1641,1920,2128,2307,2477,2700,2936,3230,3469,3804,4070,4334,4684,4867,5107,5298,5541,5757,5955,6165,6393,6592,6714,6916,7061,7189,7268,7333,7358,7357,7376,7401,7495,7592,7612,7529,7393,7258,7100,6855,6666,6394,6031,5860,5887,5967,5809,5558,5247,4721,4176,3340,2385,3277,5051,3155,3942,4345,1832,833,798,1184,1624,1631,222,-586,-978,-923,-399,-175,-904,-1443,-2111,-2545,-2246,-2153,-2566,-2856,-3494,-4034,-4094,-4279,-4217,-3882,-3942,-4096,-4273,-4473,-4389,-4382,-4651,-4766,-5077,-5454,-5648,-6024,-6169,-6139,-6343,-6607,-6796,-6943,-6891,-6977,-7288,-7397,-7503,-7614,-7679,-7560,-7327,-7036,-7064,-6927,-6456,-6020,-5667,-5520,-5480,-5340,-5098,-4922,-4549,-4303,-4341,-4317,-4000,-3587,-3250,-3141,-2831,-2469,-2281,-2130,-1817,-1450,-1243,-1005,-771,-478,-85,277,588,892,1136,1443,1816,2060,2253,2466,2541,2775,3010,3244,3538,3771,4056,4278,4547,4761,4997,5202,5460,5648,5891,6111,6285,6529,6683,6881,6990,7196,7276,7312,7369,7422,7417,7489,7556,7580,7604,7513,7455,7375,7247,7005,6815,6531,6219,5963,5883,5989,5702,5544,5206,4639,4124,3179,2326,3519,4714,3359,3727,3820,1329,406,1190,1271,1314,1070,-420,-1056,-784,-827,-363,-399,-1338,-1699,-2219,-2646,-2223,-2293,-2715,-3043,-3775,-4120,-4167,-4253,-4012,-3795,-4033,-4120,-4276,-4405,-4318,-4412,-4725,-4851,-5153,-5536,-5758,-6129,-6179,-6204,-6494,-6814,-6967,-7067,-7035,-7232,-7536,-7633,-7692,-7694,-7769,-7633,-7311,-7114,-7097,-6936,-6462,-5854,-5534,-5502,-5489,-5239,-4901,-4604,-4211,-4082,-4164,-4093,-3792,-3275,-3049,-2948,-2545,-2249,-2054,-1830,-1441,-1142,-933,-795,-649,-216,112,399,709,917,1245,1639,1881,2172,2385,2423,2510,2738,2986,3185,3472,3656,3906,4173,4455,4738,5001,5250,5496,5706,5934,6157,6406,6603,6744,6927,7127,7286,7323,7495,7505,7559,7570,7593,7649,7652,7673,7607,7583,7499,7311,7092,6866,6619,6279,5927,5887,5824,5534,5524,4963,4500,3753,2708,2451,4557,3343,3805,3866,1837,1120,626,1540,1054,1046,-12,-946,-851,-515,-547,-333,',
  9917. '-2,2,30,-204,-371,-546,-660,-485,-274,-7,29,-115,-426,-570,-584,-498,-445,-500,-483,-452,-270,-64,116,159,95,-50,-232,-414,-714,-1042,-1374,-1615,-1819,-1946,-2003,-2009,-1926,-1835,-1716,-1629,-1505,-1329,-1151,-1025,-999,-995,-924,-744,-554,-405,-382,-409,-387,-345,-325,-401,-498,-587,-707,-841,-925,-959,-982,-956,-880,-783,-632,-419,-207,3,193,328,422,485,510,467,388,281,180,119,62,-21,-122,-209,-266,-272,-253,-241,-213,-150,-48,82,218,364,516,657,787,915,1032,1113,1170,1180,1142,1069,965,862,773,667,585,500,428,435,486,575,676,780,880,1041,1248,1407,1449,1358,1239,1209,1285,1220,1095,978,824,660,-24,-802,-483,38,495,672,581,549,852,1299,1373,1383,833,414,147,61,62,63,-68,-295,-375,-628,-550,-378,-162,-51,-145,-379,-563,-544,-506,-353,-374,-323,-268,-176,-20,63,142,113,20,-192,-397,-696,-1014,-1293,-1528,-1710,-1926,-2071,-2136,-2059,-1968,-1857,-1782,-1699,-1495,-1264,-1034,-947,-928,-903,-746,-505,-309,-249,-344,-388,-379,-353,-369,-443,-509,-595,-714,-813,-877,-957,-1000,-999,-938,-820,-628,-378,-127,123,318,496,609,643,599,483,363,225,112,10,-81,-186,-264,-292,-307,-308,-313,-287,-231,-125,0,140,278,427,588,730,898,1052,1172,1225,1224,1212,1149,1085,998,885,769,643,534,442,394,421,506,585,692,802,932,1142,1349,1458,1441,1349,1287,1351,1308,1127,951,802,593,128,-787,-735,-115,341,693,592,574,772,1306,1448,1486,1064,516,279,123,122,90,52,-205,-311,-578,-659,-479,-245,-38,-115,-326,-598,-603,-509,-300,-224,-223,-166,-129,21,139,212,153,24,-210,-435,-687,-1014,-1297,-1540,-1695,-1911,-2101,-2223,-2208,-2092,-1964,-1841,-1750,-1581,-1352,-1088,-904,-866,-862,-753,-496,-252,-144,-210,-295,-336,-342,-365,-424,-478,-593,-725,-824,-902,-990,-1061,-1075,-1030,-909,-733,-485,-199,76,307,491,610,645,612,508,384,236,103,-10,-100,-173,-260,-311,-334,-360,-383,-373,-312,-209,-67,90,260,428,596,769,945,1110,1216,1251,1265,1262,1242,1182,1076,954,812,655,518,398,347,360,422,530,638,769,883,1078,1321,1481,1485,1381,1293,1303,1316,1150,951,818,501,97,-777,-945,-252,290,774,710,646,758,1292,1576,1639,1328,655,324,99,133,158,147,-159,-311,-537,-688,-509,-297,-53,-85,-238,-553,-659,-611,-398,-195,-123,-77,-121,-8,130,260,241,83,-202,-474,-696,-978,-1236,-1515,-1748,-1998,-2211,-2340,-2307,-2157,-2004,-1848,-1707,-1515,-1299,-1083,-945,-889,-849,-741,-507,-255,-104,-121,-198,-241,-241,-305,-419,-523,-652,-801,-945,-1013,-1066,-1106,-1093,-1037,-923,-752,-525,-261,-4,240,432,547,613,610,562,451,279,112,-1,-95,-179,-273,-372,-425,-446,-431,-417,-388,-303,-139,66,272,470,657,829,959,1102,1219,1289,1333,1323,1270,1185,1068,937,788,620,470,365,321,336,392,503,643,775,916,1097,1299,1430,1455,1371,1255,1221,1202,1042,874,813,630,366,-325,-989,-525,120,707,900,791,670,924,1406,1593,1649,1065,572,185,69,104,198,127,-93,-261,-578,-524,-331,-67,-17,-149,-441,-705,-736,-669,-418,-281,-152,-143,-67,89,223,299,195,-7,-281,-502,-828,-1188,-1539,-1828,-2065,-2267,-2375,-2348,-2145,-1911,-1681,-1545,-1475,-1404,-1286,-1109,-989,-918,-835,-617,-311,-48,56,28,-31,-114,-239,-414,-551,-699,-858,-1005,-1091,-1131,-1158,-1155,-1095,-977,-846,-638,-385,-118,136,340,482,566,604,558,465,332,185,67,-19,-113,-211,-329,-429,-468,-497,-503,-501,-406,-228,-4,233,458,665,835,984,1116,1233,1309,1354,1338,1282,1197,1083,941,767,604,453,338,284,288,360,479,615,743,880,1050,1243,1389,1405,1308,1190,1142,1130,1030,862,766,802,635,242,-633,-819,-169,453,998,992,797,652,1046,1415,1725,1568,931,400,11,9,102,253,60,-99,-369,-547,-400,-169,76,40,-128,-516,-744,-834,-699,-453,-302,-252,-298,-180,8,242,293,167,-80,-331,-587,-935,-1315,-1719,-1986,-2180,-2281,-2271,-2131,-1901,-1660,-1475,-1413,-1398,-1353,-1228,-1113,-999,-900,-749,-492,-224,0,54,18,-41,-151,-301,-482,-645,-816,-976,-1097,-1153,-1191,-1189,-1114,-1008,-870,-696,-486,-277,-47,153,285,395,469,482,447,385,284,186,86,-20,-119,-229,-351,-438,-482,-496,-482,-423,-256,-49,172,396,600,771,908,1033,1150,1239,1279,1276,1238,1182,1098,978,829,664,492,374,326,313,368,462,586,724,837,968,1128,1282,1332,1267,1133,1026,1014,978,880,793,816,935,739,146,-697,-672,21,746,1193,1106,780,570,925,1327,1730,1472,864,280,-47,-3,115,193,23,-98,-375,-449,-323,-85,107,88,-120,-532,-792,-928,-798,-616,-465,-453,-487,-380,-155,143,270,227,-6,-261,-575,-953,-1358,-1729,-1990,-2192,-2239,-2168,-1971,-1741,-1530,-1394,-1353,-1316,-1273,-1192,-1096,-1011,-939,-790,-540,-266,-53,8,-14,-65,-155,-279,-474,-689,-857,-1021,-1156,-1212,-1221,-1176,-1074,-929,-782,-611,-423,-223,-30,98,194,288,353,394,392,351,283,208,143,68,-21,-137,-270,-370,-417,-434,-416,-329,-186,8,225,429,634,798,933,1029,1121,1186,1205,1191,1163,1120,1038,921,758,600,470,362,327,356,419,528,656,784,910,1051,1186,1272,1240,1118,975,878,872,866,839,865,1037,1135,864,108,-654,-472,208,938,1246,1102,678,491,802,1219,1615,1332,786,177,-71,5,196,228,34,-151,-429,-407,-285,-22,111,57,-195,-573,-800,-921,-793,-659,-532,-574,-579,-426,-141,137,204,115,-109,-294,-596,-953,-1318,-1643,-1882,-2028,-2071,-2040,-1890,-1700,-1471,-1330,-1273,-1232,-1194,-1139,-1093,-1045,-980,-836,-630,-379,-175,-83,-57,-80,-143,-289,-503,-719,-911,-1066,-1175,-1212,-1184,-1090,-962,-817,-664,-522,-380,-216,-72,20,97,170,248,323,370,366,340,293,231,156,54,-79,-219,-321,-367,-354,-328,-236,-111,56,249,431,607,745,872,957,1040,1103,1135,1135,1119,1068,985,883,753,618,478,389,364,405,481,568,676,779,894,1032,1153,1197,1142,1028,919,891,923,942,930,970,1165,1191,866,55,-592,-267,343,954,1115,897,496,475,853,1270,1549,1117,590,114,29,132,247,121,-149,-331,-527,-430,-276,-49,26,-29,-274,-560,-721,-769,-669,-650,-610,-656,-567,-346,-100,70,77,8,-144,-307,-603,-934,-1270,-1544,-1744,-1920,-2008,-2004,-1886,-1709,-1491,-1336,-1273,-1204,-1141,-1073,-1017,-993,-978,-891,-703,-450,-263,-207,-209,-214,-237,-337,-506,-692,-859,-1003,-1100,-1136,-1144,-1085,-958,-804,-643,-485,-309,-129,11,97,152,210,283,320,320,306,294,274,244,186,86,-21,-142,-250,-317,-340,-317,-225,-83,76,244,409,573,718,844,940,1037,1106,1133,1125,1097,1043,962,852,715,587,451,369,343,360,429,528,653,781,900,1043,1188,1264,1242,1147,1044,1004,1048,1054,1020,1039,1168,1088,738,-108,-627,-202,330,840,903,720,490,692,1080,1397,1462,968,506,112,43,89,132,-66,-258,-418,-572,-458,-314,-66,41,-35,-312,-528,-641,-672,-630,-636,-594,-609,-494,-310,-112,37,81,19,-140,-337,-666,-987,-1284,-1531,-1743,-1920,-1988,-1958,-1831,-1665,-1518,-1465,-1389,-1239,-1098,-998,-985,-1031,-1015,-877,-655,-440,-346,-343,-331,-283,-245,-331,-496,-667,-818,-967,-1075,-1100,-1096,-1032,-927,-797,-648,-463,-280,-99,64,157,243,315,370,394,363,321,267,230,181,115,43,-66,-169,-229,-268,-287,-254,-182,-61,87,250,408,566,731,840,946,1041,1096,1121,1110,1084,1027,938,822,704,572,455,382,346,361,417,531,658,791,918,1074,1248,1342,1350,1263,1168,1122,1157,1124,1028,997,1040,928,542,-372,-626,-114,339,763,728,614,606,1033,1316,1490,1296,730,350,59,38,13,14,-202,-332,-509,-627,-472,-260,2,21,-112,-401,-562,-624,-592,-571,-590,-537,-496,-331,-163,28,129,116,-2,-181,-421,-766,-1076,-1373,-1609,-1832,-1980,-2043,-1991,-1846,-1732,-1628,-1558,-1440,-1261,-1056,-945,-945,-965,-922,-728,-504,-362,-360,-396,-379,-312,-287,-383,-504,-634,-781,-932,-1034,-1089,-1103,-1053,-951,-801,-625,-397,-162,54,219,323,400,446,472,430,342,283,218,150,100,35,-49,-140,-215,-243,-258,-265,-237,-174,-57,77,228,383,569,739,874,996,1094,1173,1193,1184,1131,1053,942,802,675,544,449,373,332,345,417,532,669,807,940,1123,1320,1452,1461,1363,1264,1239,1263,1168,1041,926,809,659,61,-669,-434,19,443,653,601,646,942,1368,1395,1364,871,481,',
  9918. '2023-08-24T17:04:45.471484900' )
  9919. 17:04:56.013 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:04:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  9920. 17:04:56.028 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:04:56 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  9921. FROM goaf_sensordata
  9922. WHERE oc_id = 406283
  9923. ORDER BY goaf_datareport_time DESC
  9924. LIMIT 1
  9925. 17:18:30.955 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9926. 17:18:30.958 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  9927. 17:18:30.963 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  9928. 17:18:30.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9929. 17:18:30.966 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  9930. 17:18:30.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  9931. 17:18:30.972 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  9932. 17:18:30.974 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  9933. 17:18:30.974 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  9934. 17:18:30.974 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  9935. 17:18:30.974 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  9936. 17:18:30.989 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  9937. 17:18:30.993 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  9938. 17:18:36.495 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  9939. 17:18:36.551 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 2792 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  9940. 17:18:36.551 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  9941. 17:18:36.611 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  9942. 17:18:36.611 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  9943. 17:18:38.600 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  9944. 17:18:38.649 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 17820 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  9945. 17:18:38.649 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  9946. 17:18:38.702 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  9947. 17:18:38.703 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  9948. 17:18:39.245 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  9949. 17:18:39.248 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  9950. 17:18:39.344 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  9951. 17:18:39.517 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  9952. 17:18:39.534 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  9953. 17:18:40.369 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  9954. 17:18:40.369 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3758 ms
  9955. 17:18:40.569 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  9956. 17:18:40.572 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  9957. 17:18:40.663 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  9958. 17:18:40.825 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  9959. 17:18:40.841 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  9960. 17:18:41.583 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  9961. 17:18:41.583 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2880 ms
  9962. 17:18:43.278 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  9963. 17:18:43.295 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  9964. 17:18:43.295 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  9965. 17:18:43.296 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  9966. 17:18:43.297 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9967. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9968. NOT STARTED.
  9969. Currently in standby mode.
  9970. Number of jobs executed: 0
  9971. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9972. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9973. 17:18:43.297 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9974. 17:18:43.297 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9975. 17:18:43.297 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54822cd4
  9976. 17:18:44.798 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  9977. 17:18:44.809 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  9978. 17:18:44.809 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  9979. 17:18:44.810 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  9980. 17:18:44.811 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  9981. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  9982. NOT STARTED.
  9983. Currently in standby mode.
  9984. Number of jobs executed: 0
  9985. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  9986. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  9987. 17:18:44.811 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  9988. 17:18:44.811 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  9989. 17:18:44.811 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@158d6d08
  9990. 17:18:45.858 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  9991. 17:18:45.865 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  9992. 17:18:46.125 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  9993. 17:18:46.176 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  9994. 17:18:46.176 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  9995. 17:18:46.177 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  9996. 17:18:46.206 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  9997. 17:18:46.217 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  9998. 17:18:46.230 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  9999. 17:18:46.276 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  10000. 17:18:46.346 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  10001. 17:18:46.348 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  10002. 17:18:46.348 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10003. 17:18:46.386 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 10.418 seconds (process running for 11.354)
  10004. 17:18:46.389 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  10005. 17:18:46.400 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  10006. 17:18:46.458 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  10007. 17:18:46.459 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  10008. 17:18:46.462 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  10009. 17:18:46.843 [restartedMain] INFO p6spy - 2023-08-24 17:18:46 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT 1
  10010. 17:18:46.848 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5ba1b178
  10011. 17:18:46.858 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  10012. 17:18:46.961 [restartedMain] INFO p6spy - 2023-08-24 17:18:46 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  10013. A.job_id,
  10014. A.job_title,
  10015. A.job_desc,
  10016. A.status,
  10017. A.job_type,
  10018. A.job_code,
  10019. A.job_cron,
  10020. A.job_class_id,
  10021. B.job_class,
  10022. A.cycle_title,
  10023. A.cycle_period,
  10024. A.cycle_unit
  10025. FROM job AS A
  10026. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10027. WHERE A.deleted_flag = 0
  10028. AND A.status = 1
  10029. ORDER BY A.job_id ASC
  10030. 17:18:46.993 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10031. 17:18:46.995 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10032. 17:18:47.278 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  10033. FROM goaf_sensor
  10034. WHERE goaf_sensor_ip = '192.168.3.12'
  10035. 17:18:47.299 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  10036. 17:18:47.404 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  10037. client_id,
  10038. client_title,
  10039. client_app_id,
  10040. client_app_key,
  10041. client_app_secret,
  10042. client_desc,
  10043. status,
  10044. is_fixed
  10045. FROM client
  10046. WHERE deleted_flag = 0
  10047. AND client_app_id = '10001'
  10048. AND client_app_key = '82a8bf439373e305'
  10049. 17:18:47.424 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  10050. A.client_id,
  10051. A.role_id,
  10052. A.permit_id,
  10053. A.permit_title,
  10054. A.permit_code,
  10055. A.permit_entry,
  10056. A.permit_desc,
  10057. A.permit_type,
  10058. A.parent_id,
  10059. A.root_id,
  10060. A.sort_no,
  10061. A.is_home
  10062. FROM s_role_permit AS A
  10063. WHERE 1 = 1
  10064. AND A.client_id = 2
  10065. AND A.role_id = 1
  10066. ORDER BY A.parent_id ASC ,A.sort_no ASC
  10067. 17:18:47.460 [RMI TCP Connection(13)-192.168.3.5] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  10068. 17:18:47.629 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  10069. 17:18:47.683 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10070. 17:18:47.683 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  10071. 17:18:47.684 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  10072. 17:18:47.715 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  10073. 17:18:47.722 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT count(*)
  10074. FROM msg AS M
  10075. WHERE M.oc_id = 1
  10076. AND (
  10077. EXISTS (
  10078. SELECT 1 FROM msg_to TT
  10079. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  10080. ) OR
  10081. EXISTS (
  10082. SELECT 1 FROM msg_cc CC
  10083. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  10084. )
  10085. )
  10086. 17:18:47.722 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  10087. 17:18:47.739 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  10088. 17:18:47.756 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  10089. 17:18:47.810 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  10090. 17:18:47.843 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  10091. 17:18:47.862 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:18:47 | Time Consuming: 16 ms | Connection: statement-1 | SQL: SELECT
  10092. A.job_id,
  10093. A.job_title,
  10094. A.job_desc,
  10095. A.status,
  10096. A.job_type,
  10097. A.job_code,
  10098. A.job_cron,
  10099. A.job_class_id,
  10100. B.job_class,
  10101. A.cycle_title,
  10102. A.cycle_period,
  10103. A.cycle_unit
  10104. FROM job AS A
  10105. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10106. WHERE A.deleted_flag = 0
  10107. ORDER BY A.job_id ASC
  10108. LIMIT 10
  10109. 17:18:47.912 [restartedMain] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  10110. 17:18:47.918 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10111. 17:18:47.918 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  10112. 17:18:47.919 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  10113. 17:18:48.093 [restartedMain] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  10114. 17:18:48.094 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  10115. 17:18:48.095 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  10116. 17:18:48.095 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10117. 17:18:48.095 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  10118. 17:18:48.145 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLogger -
  10119. Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
  10120. 17:18:56.543 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:18:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  10121. 17:18:56.553 [XNIO-1 task-2] INFO p6spy - 2023-08-24 17:18:56 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  10122. job_class_id,
  10123. job_class_title,
  10124. job_class_desc,
  10125. job_class
  10126. FROM job_class
  10127. WHERE deleted_flag = 0
  10128. ORDER BY job_class_id ASC
  10129. 17:18:56.554 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:18:56 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  10130. 17:18:56.570 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:18:56 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT
  10131. A.job_id,
  10132. A.job_title,
  10133. A.job_desc,
  10134. A.status,
  10135. A.job_type,
  10136. A.job_code,
  10137. A.job_cron,
  10138. A.job_class_id,
  10139. B.job_class,
  10140. A.cycle_title,
  10141. A.cycle_period,
  10142. A.cycle_unit
  10143. FROM job AS A
  10144. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10145. WHERE A.job_id = 439094
  10146. 17:19:01.472 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:19:01 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  10147. 17:19:01.491 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:19:01 | Time Consuming: 11 ms | Connection: statement-1 | SQL: UPDATE job
  10148. SET job_title = '巡检天任务',
  10149. job_desc = '天任务',
  10150. status = 1,
  10151. job_type = 1,
  10152. job_code = 'Cron任务',
  10153. job_cron = '0 20 17 * * ?',
  10154. job_class_id = 2,
  10155. cycle_title = '天',
  10156. cycle_period = 0,
  10157. cycle_unit = 0,
  10158. updated_by = 1,
  10159. updated_at = '2023-08-24T17:19:01.476195800'
  10160. WHERE job_id = 439094
  10161. 17:19:01.540 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:19:01 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  10162. 17:19:01.547 [XNIO-1 task-3] INFO p6spy - 2023-08-24 17:19:01 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  10163. A.job_id,
  10164. A.job_title,
  10165. A.job_desc,
  10166. A.status,
  10167. A.job_type,
  10168. A.job_code,
  10169. A.job_cron,
  10170. A.job_class_id,
  10171. B.job_class,
  10172. A.cycle_title,
  10173. A.cycle_period,
  10174. A.cycle_unit
  10175. FROM job AS A
  10176. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10177. WHERE A.deleted_flag = 0
  10178. ORDER BY A.job_id ASC
  10179. LIMIT 10
  10180. 17:19:06.961 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10181. 17:19:06.961 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  10182. 17:19:06.964 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  10183. 17:19:06.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10184. 17:19:06.966 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  10185. 17:19:06.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  10186. 17:19:06.972 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  10187. 17:19:06.973 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  10188. 17:19:06.973 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  10189. 17:19:06.973 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10190. 17:19:06.973 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  10191. 17:19:06.985 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  10192. 17:19:06.988 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  10193. 17:19:10.374 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  10194. 17:19:10.423 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13300 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  10195. 17:19:10.424 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  10196. 17:19:10.480 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  10197. 17:19:10.480 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  10198. 17:19:12.272 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  10199. 17:19:12.275 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  10200. 17:19:12.363 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  10201. 17:19:12.538 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10202. 17:19:12.556 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  10203. 17:19:13.330 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  10204. 17:19:13.331 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2850 ms
  10205. 17:19:16.195 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  10206. 17:19:16.213 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  10207. 17:19:16.213 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  10208. 17:19:16.214 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  10209. 17:19:16.215 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  10210. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  10211. NOT STARTED.
  10212. Currently in standby mode.
  10213. Number of jobs executed: 0
  10214. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  10215. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  10216. 17:19:16.215 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  10217. 17:19:16.215 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  10218. 17:19:16.215 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@75cf37a4
  10219. 17:19:18.602 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  10220. 17:19:18.609 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  10221. 17:19:18.764 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  10222. 17:19:18.802 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10223. 17:19:18.802 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  10224. 17:19:18.802 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  10225. 17:19:18.827 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  10226. 17:19:18.838 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  10227. 17:19:18.848 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  10228. 17:19:18.882 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  10229. 17:19:18.940 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  10230. 17:19:18.942 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  10231. 17:19:18.942 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10232. 17:19:18.968 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.082 seconds (process running for 9.977)
  10233. 17:19:18.971 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  10234. 17:19:18.978 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  10235. 17:19:19.376 [restartedMain] INFO p6spy - 2023-08-24 17:19:19 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT 1
  10236. 17:19:19.381 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@4e4c9046
  10237. 17:19:19.394 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  10238. 17:19:19.481 [restartedMain] INFO p6spy - 2023-08-24 17:19:19 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  10239. A.job_id,
  10240. A.job_title,
  10241. A.job_desc,
  10242. A.status,
  10243. A.job_type,
  10244. A.job_code,
  10245. A.job_cron,
  10246. A.job_class_id,
  10247. B.job_class,
  10248. A.cycle_title,
  10249. A.cycle_period,
  10250. A.cycle_unit
  10251. FROM job AS A
  10252. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10253. WHERE A.deleted_flag = 0
  10254. AND A.status = 1
  10255. ORDER BY A.job_id ASC
  10256. 17:19:19.502 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10257. 17:19:19.504 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10258. 17:19:19.743 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:19:19 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  10259. FROM goaf_sensor
  10260. WHERE goaf_sensor_ip = '192.168.3.12'
  10261. 17:19:19.904 [RMI TCP Connection(9)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  10262. 17:19:19.905 [RMI TCP Connection(9)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  10263. 17:19:19.908 [RMI TCP Connection(9)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  10264. 17:19:19.915 [RMI TCP Connection(8)-192.168.3.5] INFO p6spy - 2023-08-24 17:19:19 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  10265. 17:20:00.009 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  10266. 17:20:00.014 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-24 17:20:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  10267. 17:20:00.030 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  10268. 17:20:14.333 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:20:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  10269. 17:20:14.338 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:20:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  10270. FROM goaf_sensor
  10271. WHERE goaf_sensor_ip = '192.168.3.12'
  10272. 17:20:14.351 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:20:14 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  10273. 17:20:14.355 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:20:14 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  10274. 17:20:14.384 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-24 17:20:14 | Time Consuming: 20 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  10275. ( goaf_data_id,
  10276. oc_id,
  10277. goaf_sensor_id,
  10278. goaf_sensor_name,
  10279. frequency_x,
  10280. frequency_y,
  10281. frequency_z,
  10282. acc_x,
  10283. acc_y,
  10284. acc_z,
  10285. vel_x,
  10286. vel_y,
  10287. vel_z,
  10288. dis_x,
  10289. dis_y,
  10290. dis_z,
  10291. sensor_temperature,
  10292. ang_x,
  10293. ang_y,
  10294. ang_z,
  10295. f_alarm_acc_x,
  10296. f_alarm_acc_y,
  10297. f_alarm_acc_z,
  10298. f_alarm_vel_x,
  10299. f_alarm_vel_y,
  10300. f_alarm_vel_z,
  10301. f_alarm_dis_x,
  10302. f_alarm_dis_y,
  10303. f_alarm_dis_z,
  10304. f_alarm_temperature,
  10305. td_wave_value_x,
  10306. td_wave_value_y,
  10307. td_wave_value_z,
  10308. goaf_datareport_time )
  10309. values ( 442169,
  10310. 406283,
  10311. 442139,
  10312. 'jacintoqqq',
  10313. 0,
  10314. 0,
  10315. 0,
  10316. 1,
  10317. 1,
  10318. 1,
  10319. 6,
  10320. 3,
  10321. 4,
  10322. 2,
  10323. 0,
  10324. 0,
  10325. 331,
  10326. -8738,
  10327. -135,
  10328. -223,
  10329. 56747,
  10330. 56449,
  10331. 56255,
  10332. 56778,
  10333. 56488,
  10334. 56946,
  10335. 57823,
  10336. 57831,
  10337. 57955,
  10338. -7547,
  10339. '-982,-976,-970,-963,-969,-972,-965,-970,-979,-978,-978,-978,-979,-984,-979,-970,-969,-971,-970,-976,-977,-981,-978,-965,-964,-982,-970,-966,-978,-969,-978,-975,-973,-974,-975,-966,-969,-976,-976,-975,-978,-980,-974,-977,-974,-968,-972,-972,-971,-967,-963,-979,-967,-972,-979,-973,-982,-977,-972,-976,-970,-970,-971,-964,-972,-978,-976,-973,-972,-972,-975,-972,-969,-967,-971,-971,-971,-977,-978,-973,-974,-971,-971,-972,-972,-965,-966,-977,-977,-977,-974,-977,-964,-972,-971,-960,-964,-963,-975,-970,-970,-980,-978,-976,-978,-989,-981,-973,-974,-965,-974,-977,-964,-960,-972,-973,-978,-979,-976,-978,-978,-970,-970,-967,-963,-968,-964,-973,-977,-969,-976,-974,-975,-982,-984,-983,-967,-969,-974,-968,-978,-976,-964,-969,-974,-976,-972,-965,-971,-967,-965,-967,-975,-977,-968,-971,-964,-962,-968,-965,-961,-966,-972,-970,-963,-974,-976,-972,-974,-973,-969,-974,-981,-976,-971,-972,-975,-971,-970,-970,-967,-963,-968,-973,-966,-974,-977,-971,-980,-974,-968,-971,-965,-969,-975,-977,-968,-972,-979,-966,-962,-973,-978,-977,-977,-977,-968,-965,-971,-975,-973,-978,-980,-965,-978,-975,-974,-973,-965,-968,-968,-976,-982,-978,-973,-966,-965,-968,-965,-977,-975,-975,-965,-964,-978,-978,-972,-969,-980,-978,-967,-976,-972,-974,-976,-967,-967,-967,-966,-969,-970,-968,-975,-970,-970,-972,-977,-983,-977,-974,-978,-978,-969,-976,-981,-969,-968,-970,-973,-973,-970,-963,-969,-979,-971,-979,-976,-973,-971,-969,-976,-976,-976,-971,-974,-977,-968,-968,-969,-970,-971,-967,-965,-963,-969,-970,-977,-969,-962,-977,-975,-969,-975,-978,-981,-985,-973,-972,-972,-972,-972,-970,-974,-971,-974,-978,-975,-971,-976,-965,-967,-982,-971,-969,-966,-968,-968,-965,-971,-975,-972,-969,-970,-968,-972,-972,-978,-976,-970,-973,-970,-970,-968,-965,-973,-969,-965,-970,-976,-973,-976,-981,-973,-976,-977,-979,-984,-975,-977,-971,-964,-975,-971,-970,-973,-977,-979,-970,-970,-977,-978,-978,-974,-971,-965,-970,-975,-968,-973,-973,-981,-982,-973,-973,-976,-971,-975,-975,-965,-968,-967,-969,-974,-971,-974,-980,-971,-972,-979,-976,-965,-967,-974,-968,-980,-975,-962,-974,-971,-964,-972,-978,-976,-968,-974,-974,-977,-975,-970,-973,-972,-974,-968,-982,-981,-970,-971,-969,-972,-975,-980,-972,-973,-980,-977,-973,-965,-971,-978,-970,-961,-967,-974,-964,-967,-967,-966,-977,-973,-967,-967,-975,-972,-976,-976,-973,-976,-972,-972,-970,-970,-970,-970,-963,-972,-980,-967,-969,-975,-970,-976,-983,-985,-980,-981,-973,-973,-975,-975,-973,-963,-968,-974,-977,-975,-979,-977,-968,-970,-975,-984,-980,-974,-977,-975,-970,-973,-967,-967,-978,-980,-974,-971,-961,-969,-981,-967,-978,-978,-977,-977,-967,-973,-974,-979,-980,-981,-975,-975,-980,-967,-973,-978,-976,-968,-978,-980,-972,-972,-966,-966,-965,-967,-976,-971,-958,-962,-971,-974,-977,-975,-975,-982,-973,-978,-982,-973,-966,-974,-974,-971,-976,-973,-964,-967,-974,-979,-984,-966,-964,-970,-966,-972,-982,-971,-968,-971,-974,-968,-958,-966,-971,-977,-979,-976,-975,-971,-978,-975,-965,-977,-981,-976,-981,-978,-972,-973,-974,-971,-974,-975,-965,-961,-966,-971,-987,-982,-968,-971,-973,-980,-974,-976,-975,-968,-974,-972,-975,-975,-969,-967,-973,-983,-979,-967,-967,-977,-975,-978,-975,-975,-978,-972,-967,-973,-979,-977,-975,-972,-967,-970,-971,-968,-971,-972,-972,-968,-968,-971,-971,-978,-978,-974,-976,-975,-978,-982,-978,-976,-971,-972,-976,-968,-972,-975,-972,-975,-978,-979,-974,-964,-973,-977,-974,-970,-965,-968,-979,-980,-977,-984,-978,-978,-978,-969,-957,-962,-978,-975,-967,-969,-974,-978,-976,-974,-971,-970,-970,-971,-981,-985,-974,-972,-980,-977,-977,-972,-965,-974,-978,-969,-978,-980,-973,-970,-972,-981,-978,-978,-975,-970,-970,-970,-974,-974,-971,-974,-978,-976,-974,-979,-980,-979,-973,-976,-980,-981,-982,-977,-975,-978,-971,-971,-968,-962,-972,-970,-976,-978,-982,-974,-964,-973,-977,-977,-971,-974,-976,-970,-976,-975,-964,-966,-969,-963,-969,-969,-972,-973,-968,-975,-975,-967,-972,-974,-967,-972,-972,-980,-974,-960,-972,-975,-964,-965,-978,-967,-957,-961,-969,-967,-972,-976,-967,-967,-968,-975,-973,-971,-969,-976,-976,-975,-975,-970,-967,-970,-971,-965,-971,-968,-973,-973,-967,-966,-965,-968,-965,-973,-978,-981,-979,-977,-971,-961,-980,-979,-976,-975,-967,-969,-974,-977,-977,-974,-972,-973,-968,-967,-975,-978,-975,-975,-969,-966,-970,-981,-976,-968,-974,-978,-979,-977,-974,-970,-966,-972,-976,-977,-978,-980,-985,-976,-969,-969,-967,-977,-974,-967,-976,-971,-971,-970,-969,-977,-967,-960,-964,-970,-974,-978,-976,-973,-975,-972,-978,-978,-973,-978,-975,-965,-966,-961,-966,-974,-978,-990,-987,-983,-982,-961,-965,-973,-961,-961,-973,-983,-978,-973,-970,-973,-978,-975,-972,-970,-968,-968,-973,-980,-979,-974,-977,-977,-972,-975,-977,-974,-975,-973,-968,-971,-970,-973,-977,-969,-966,-971,-968,-974,-978,-973,-986,-982,-976,-978,-977,-970,-969,-974,-971,-981,-979,-968,-965,-967,-975,-975,-976,-973,-963,-968,-977,-978,-976,-978,-973,-968,-969,-970,-976,-976,-973,-972,-978,-976,-974,-975,-970,-976,-976,-978,-974,-961,-963,-972,-973,-971,-975,-972,-961,-970,-977,-974,-973,-967,-971,-971,-970,-965,-968,-967,-960,-979,-981,-970,-970,-973,-967,-964,-973,-981,-970,-970,-974,-975,-980,-974,-973,-972,-969,-970,-973,-976,-970,-966,-969,-970,-973,-972,-977,-977,-972,-972,-967,-969,-975,-976,-971,-979,-974,-967,-975,-971,-976,-973,-968,-975,-972,-974,-974,-972,-969,-974,-984,-973,-970,-972,-975,-980,-974,-974,-979,-968,-964,-970,-976,-976,-968,-979,-981,-963,-969,-973,-970,-978,-974,-967,-970,-973,-978,-969,-965,-971,-977,-973,-973,-976,-966,-975,-978,-977,-976,-969,-967,-976,-978,-966,-974,-974,-971,-970,-969,-979,-974,-974,-980,-974,-978,-975,-972,-975,-972,-973,-980,-985,-980,-981,-980,-972,-966,-969,-973,-971,-964,-957,-967,-966,-964,-972,-975,-966,-972,-978,-967,-964,-969,-975,-972,-972,-967,-966,-975,-970,-974,-978,-969,-972,-976,-973,-970,-974,-964,-973,-981,-975,-977,-970,-972,-972,-966,-968,-968,-972,-975,-967,-967,-970,-976,-971,-977,-977,-962,-964,-970,-967,-963,-972,-967,-963,-974,-974,-974,-972,-973,-968,-974,-971,-967,-978,-969,-967,-966,-975,-970,-971,-972,-972,-969,-969,-972,-962,-974,-977,-970,-979,-973,-966,-969,-973,-978,-973,-971,-969,-976,-983,-968,-967,-969,-971,-974,-968,-974,-972,-965,-964,-969,-968,-968,-975,-980,-979,-980,-967,-965,-974,-972,-976,-980,-977,-971,-965,-967,-969,-964,-975,-974,-976,-975,-972,-979,-976,-972,-978,-980,-972,-966,-975,-980,-966,-973,-977,-977,-980,-975,-967,-967,-975,-968,-974,-984,-983,-979,-976,-985,-981,-969,-975,-979,-977,-981,-976,-973,-973,-976,-976,-970,-970,-976,-970,-967,-974,-968,-964,-972,-978,-980,-972,-973,-973,-966,-972,-967,-970,-975,-972,-969,-960,-963,-978,-989,-979,-970,-975,-971,-964,-975,-975,-962,-977,-984,-980,-977,-970,-973,-977,-975,-969,-962,-961,-965,-964,-969,-977,-970,-973,-977,-968,-976,-979,-981,-978,-969,-976,-978,-979,-981,-978,-977,-973,-973,-974,-968,-978,-975,-967,-976,-971,-968,-976,-973,-974,-975,-972,-967,-965,-976,-970,-961,-966,-975,-979,-971,-972,-972,-969,-973,-977,-981,-975,-969,-970,-970,-980,-981,-973,-983,-981,-982,-977,-972,-975,-981,-976,-971,-971,-978,-990,-981,-982,-964,-967,-983,-974,-973,-970,-968,-979,-987,-973,-964,-970,-971,-975,-973,-973,-978,-978,-972,-968,-973,-967,-964,-970,-967,-970,-966,-967,-980,-975,-969,-967,-970,-982,-978,-978,-984,-970,-967,-976,-977,-979,-978,-980,-981,-976,-978,-982,-974,-971,-983,-978,-966,-974,-987,-978,-979,-983,-962,-970,-976,-973,-982,-976,-974,-978,-976,-976,-975,-972,-967,-966,-967,-970,-970,-965,-966,-974,-971,-969,-967,-963,-968,-973,-970,-966,-962,-974,-984,-978,-979,-978,-975,-979,-973,-965,-968,-977,-974,-974,-978,-988,-976,-957,-975,-976,-964,-965,-970,-975,-977,-977,-974,-973,-982,-978,-980,-979,-978,-973,-970,-978,-972,-972,-969,-972,-975,-976,-968,-969,-975,-975,-976,-976,-978,-971,-966,-965,-970,-967,-966,-969,-975,-971,-973,-978,-977,-978,-970,-971,-971,-973,-978,-965,-971,-972,-963,-977,-977,-972,-978,-974,-977,-972,-969,-961,-955,-968,-967,-973,-983,-978,-978,-969,-970,-974,-972,-975,-974,-983,-975,-963,-967,-969,-972,-970,-971,-967,-967,-981,-975,-975,-978,-975,-966,-967,-970,-966,-977,-981,-978,-974,-971,-979,-981,-983,-985,-980,-968,-978,-975,',
  10340. '-20,-27,-32,-28,-27,-25,-23,-24,-18,-18,-15,-26,-23,-22,-29,-18,-22,-24,-27,-33,-26,-22,-32,-32,-31,-29,-15,-9,-18,-21,-22,-27,-30,-30,-23,-18,-16,-21,-20,-21,-26,-22,-17,-25,-34,-28,-24,-22,-27,-34,-35,-26,-26,-29,-29,-23,-18,-26,-26,-19,-26,-30,-23,-26,-29,-28,-21,-26,-24,-21,-23,-21,-29,-36,-24,-29,-31,-27,-26,-21,-22,-17,-21,-21,-22,-26,-27,-29,-31,-30,-26,-22,-21,-16,-16,-24,-20,-22,-28,-31,-24,-19,-14,-15,-23,-18,-21,-32,-28,-20,-17,-12,-21,-22,-17,-30,-25,-21,-23,-18,-21,-19,-17,-15,-23,-23,-23,-23,-22,-29,-27,-15,-21,-26,-16,-19,-24,-20,-24,-22,-24,-27,-27,-27,-27,-29,-21,-18,-12,-18,-26,-31,-24,-21,-24,-24,-20,-21,-29,-25,-20,-21,-26,-26,-28,-29,-30,-25,-23,-17,-18,-29,-22,-24,-26,-27,-21,-15,-23,-22,-26,-24,-22,-23,-17,-18,-28,-29,-17,-22,-30,-25,-19,-24,-27,-26,-31,-28,-27,-28,-21,-17,-18,-16,-24,-24,-24,-27,-24,-23,-18,-21,-15,-12,-16,-16,-19,-26,-38,-22,-17,-28,-25,-20,-21,-26,-22,-21,-23,-18,-22,-32,-31,-24,-28,-27,-21,-26,-20,-24,-26,-24,-25,-29,-28,-17,-22,-27,-15,-23,-28,-17,-17,-21,-29,-29,-21,-23,-21,-23,-26,-22,-26,-14,-18,-31,-26,-18,-12,-21,-22,-20,-21,-21,-28,-23,-22,-32,-32,-23,-19,-20,-28,-30,-23,-28,-26,-27,-29,-29,-31,-21,-23,-27,-21,-18,-28,-32,-31,-27,-28,-27,-27,-36,-33,-27,-20,-15,-35,-31,-21,-23,-20,-16,-9,-20,-21,-19,-19,-13,-19,-19,-23,-25,-22,-27,-18,-16,-20,-21,-29,-32,-21,-15,-23,-16,-13,-17,-22,-27,-26,-30,-21,-19,-27,-27,-26,-17,-20,-28,-14,-12,-25,-24,-24,-26,-30,-32,-23,-26,-28,-29,-32,-33,-26,-30,-26,-23,-29,-31,-34,-31,-27,-29,-21,-18,-22,-29,-30,-26,-25,-20,-28,-20,-24,-29,-23,-19,-23,-20,-15,-28,-24,-17,-28,-27,-21,-28,-30,-25,-24,-14,-11,-25,-24,-18,-9,-18,-29,-25,-26,-28,-18,-23,-29,-19,-26,-21,-16,-24,-19,-21,-20,-21,-22,-17,-22,-27,-31,-24,-17,-15,-19,-26,-25,-24,-25,-20,-24,-26,-23,-22,-27,-26,-17,-17,-22,-20,-25,-22,-17,-35,-33,-26,-25,-25,-25,-30,-25,-20,-15,-21,-25,-21,-24,-24,-27,-20,-12,-18,-22,-30,-27,-16,-27,-23,-20,-24,-23,-24,-18,-21,-23,-22,-21,-20,-31,-33,-23,-27,-26,-23,-28,-27,-20,-10,-19,-37,-32,-23,-26,-25,-29,-31,-25,-28,-25,-22,-24,-26,-23,-25,-30,-30,-20,-22,-28,-21,-22,-14,-15,-22,-30,-27,-20,-14,-12,-16,-27,-29,-24,-29,-21,-25,-29,-30,-33,-36,-26,-27,-16,-14,-22,-24,-35,-28,-27,-19,-21,-17,-21,-26,-18,-29,-29,-22,-19,-23,-24,-22,-23,-24,-29,-31,-29,-24,-16,-19,-27,-23,-22,-24,-16,-14,-24,-21,-21,-28,-20,-21,-22,-26,-22,-21,-26,-27,-28,-32,-28,-18,-25,-33,-23,-24,-29,-31,-36,-30,-32,-18,-18,-32,-28,-17,-12,-25,-30,-27,-23,-18,-18,-22,-30,-29,-21,-25,-27,-20,-17,-16,-21,-17,-21,-28,-27,-17,-14,-24,-19,-20,-28,-24,-21,-22,-24,-19,-19,-21,-21,-20,-22,-24,-32,-22,-20,-22,-20,-24,-18,-18,-21,-18,-19,-27,-26,-20,-24,-25,-24,-32,-25,-15,-19,-33,-26,-28,-34,-27,-25,-24,-23,-24,-21,-21,-29,-31,-19,-24,-33,-20,-18,-19,-13,-23,-35,-28,-29,-30,-25,-26,-24,-18,-19,-20,-30,-23,-18,-23,-25,-26,-24,-26,-28,-34,-28,-28,-28,-25,-20,-18,-21,-22,-21,-15,-15,-21,-28,-24,-21,-26,-22,-24,-26,-21,-21,-23,-25,-21,-30,-24,-21,-21,-17,-18,-22,-29,-20,-21,-22,-27,-27,-29,-28,-21,-32,-31,-32,-27,-19,-23,-28,-27,-23,-18,-21,-22,-26,-35,-28,-24,-23,-22,-30,-31,-20,-12,-16,-24,-23,-17,-16,-19,-23,-22,-30,-26,-21,-26,-19,-17,-30,-31,-19,-17,-28,-30,-21,-18,-22,-32,-30,-23,-21,-28,-20,-11,-25,-28,-25,-22,-27,-26,-26,-26,-18,-19,-26,-27,-28,-23,-25,-25,-22,-27,-26,-29,-21,-15,-26,-35,-31,-26,-22,-21,-19,-21,-19,-17,-20,-17,-21,-25,-20,-22,-27,-19,-23,-31,-28,-28,-25,-25,-27,-23,-18,-15,-23,-32,-25,-30,-32,-25,-27,-18,-22,-27,-31,-24,-27,-33,-26,-21,-15,-19,-26,-21,-13,-26,-28,-22,-18,-19,-23,-15,-28,-32,-28,-27,-16,-19,-21,-27,-21,-16,-19,-24,-26,-34,-31,-18,-25,-20,-17,-22,-20,-17,-18,-18,-23,-25,-16,-23,-28,-16,-22,-26,-22,-25,-20,-18,-19,-24,-27,-29,-31,-27,-22,-21,-29,-31,-25,-24,-25,-24,-23,-15,-19,-17,-21,-25,-16,-21,-24,-23,-20,-17,-18,-19,-26,-28,-20,-22,-27,-29,-31,-34,-24,-19,-24,-24,-24,-21,-27,-26,-27,-23,-22,-26,-20,-27,-32,-29,-22,-23,-28,-22,-21,-31,-32,-25,-27,-28,-27,-23,-25,-27,-26,-22,-23,-21,-18,-25,-30,-32,-28,-16,-18,-34,-30,-21,-17,-23,-28,-21,-21,-22,-24,-31,-27,-16,-24,-30,-17,-17,-24,-35,-27,-23,-23,-22,-24,-19,-32,-30,-18,-21,-19,-17,-28,-20,-14,-12,-13,-32,-27,-23,-25,-19,-27,-30,-29,-31,-24,-28,-27,-26,-17,-21,-25,-17,-22,-17,-24,-23,-22,-21,-22,-24,-24,-26,-30,-23,-29,-35,-18,-23,-28,-30,-33,-29,-20,-22,-31,-22,-21,-23,-23,-16,-17,-25,-20,-21,-21,-21,-26,-25,-24,-23,-15,-18,-26,-21,-18,-23,-21,-12,-22,-21,-19,-27,-27,-27,-27,-29,-21,-22,-33,-27,-21,-21,-19,-14,-25,-25,-22,-18,-19,-34,-21,-23,-26,-25,-32,-27,-22,-30,-24,-14,-24,-22,-20,-24,-21,-23,-22,-30,-30,-24,-23,-20,-18,-21,-28,-21,-18,-27,-23,-19,-29,-22,-18,-15,-15,-28,-26,-21,-28,-24,-24,-19,-29,-38,-28,-21,-17,-22,-27,-28,-24,-29,-28,-17,-22,-31,-22,-25,-32,-31,-24,-21,-24,-24,-33,-19,-17,-27,-19,-20,-17,-17,-24,-21,-16,-24,-18,-12,-18,-25,-34,-28,-20,-21,-23,-29,-39,-32,-24,-28,-26,-32,-32,-23,-18,-19,-21,-33,-32,-27,-28,-23,-21,-15,-19,-26,-24,-18,-18,-29,-28,-24,-21,-23,-28,-27,-28,-21,-17,-21,-19,-23,-24,-23,-22,-19,-29,-30,-28,-33,-26,-21,-31,-24,-16,-20,-31,-27,-12,-21,-22,-21,-21,-16,-24,-33,-30,-26,-27,-29,-28,-24,-26,-24,-21,-22,-27,-24,-16,-19,-26,-27,-25,-30,-26,-32,-26,-13,-30,-32,-20,-20,-22,-22,-21,-25,-30,-24,-26,-28,-30,-26,-24,-18,-22,-23,-15,-26,-25,-30,-19,-14,-27,-22,-19,-21,-26,-25,-24,-29,-30,-23,-29,-28,-23,-27,-31,-20,-22,-27,-25,-32,-28,-24,-23,-18,-21,-23,-26,-26,-15,-19,-23,-17,-17,-20,-24,-29,-29,-25,-24,-24,-19,-14,-28,-31,-31,-31,-30,-25,-26,-28,-22,-25,-25,-21,-21,-32,-32,-22,-26,-25,-17,-25,-35,-32,-26,-31,-27,-21,-27,-32,-34,-25,-22,-22,-20,-25,-28,-28,-27,-23,-23,-19,-20,-22,-30,-31,-24,-27,-23,-20,-25,-31,-21,-22,-26,-20,-24,-22,-19,-26,-21,-28,-27,-23,-25,-27,-25,-30,-29,-18,-26,-25,-24,-20,-20,-24,-21,-22,-23,-20,-21,-26,-19,-10,-18,-18,-19,-23,-28,-25,-25,-24,-21,-29,-19,-21,-30,-24,-23,-21,-21,-23,-19,-21,-29,-21,-23,-28,-24,-20,-21,-22,-27,-26,-27,-26,-22,-21,-23,-25,-30,-36,-26,-21,-32,-35,-25,-26,-17,-20,-27,-25,-24,-26,-28,-17,-20,-28,-24,-25,-24,-20,-22,-21,-18,-21,-25,-26,-27,-22,-19,-21,-23,-28,-24,-21,-25,-26,-22,-31,-38,-23,-19,-17,-18,-21,-15,-23,-22,-20,-22,-15,-15,-23,-31,-26,-17,-10,-16,-21,-30,-30,-21,-21,-30,-27,-24,-33,-21,-26,-35,-28,-20,-24,-26,-10,-17,-31,-27,-21,-16,-26,-30,-26,-32,-23,-23,-26,-25,-29,-27,-28,-20,-24,-22,-27,-29,-24,-33,-29,-22,-28,-28,-24,-25,-27,-21,-29,-37,-24,-22,-23,-27,-23,-22,-23,-28,-30,-25,-29,-35,-36,-19,-24,-26,-22,-27,-33,-33,-29,-24,-12,-18,-16,-26,-25,-25,-30,-29,-38,',
  10341. '-24,-24,-24,-21,-16,-16,-14,-17,-27,-22,-20,-18,-26,-21,-12,-21,-25,-27,-33,-32,-25,-21,-15,-12,-18,-16,-20,-21,-12,-19,-29,-25,-21,-28,-26,-22,-30,-35,-24,-23,-31,-27,-21,-17,-21,-26,-29,-22,-21,-33,-30,-24,-21,-29,-18,-21,-23,-25,-34,-27,-32,-38,-32,-33,-26,-21,-35,-28,-20,-25,-24,-23,-29,-29,-29,-28,-32,-24,-19,-30,-33,-32,-27,-23,-31,-33,-26,-27,-26,-26,-22,-23,-21,-21,-29,-29,-33,-24,-19,-30,-29,-28,-31,-24,-35,-41,-31,-34,-31,-27,-25,-30,-29,-25,-31,-35,-26,-18,-26,-25,-26,-27,-19,-20,-31,-35,-28,-27,-23,-32,-33,-26,-28,-35,-33,-33,-34,-25,-22,-27,-29,-21,-16,-27,-30,-26,-28,-22,-15,-25,-29,-22,-31,-34,-30,-22,-17,-24,-29,-29,-29,-28,-33,-30,-24,-34,-38,-28,-30,-36,-33,-29,-24,-25,-33,-39,-34,-37,-30,-25,-20,-24,-38,-26,-25,-30,-33,-40,-28,-31,-37,-30,-29,-29,-38,-38,-35,-28,-32,-35,-29,-31,-33,-35,-38,-28,-24,-30,-21,-21,-33,-39,-39,-43,-44,-41,-36,-26,-27,-29,-29,-26,-22,-26,-31,-27,-31,-36,-30,-34,-38,-29,-33,-39,-34,-34,-37,-44,-32,-31,-34,-34,-38,-33,-34,-30,-32,-32,-35,-36,-30,-42,-40,-27,-31,-37,-32,-39,-40,-38,-29,-23,-35,-33,-32,-30,-35,-38,-29,-23,-31,-33,-32,-34,-30,-32,-30,-33,-33,-27,-32,-31,-31,-32,-31,-36,-33,-30,-36,-30,-32,-37,-27,-29,-41,-38,-36,-29,-22,-30,-31,-30,-26,-30,-28,-32,-41,-39,-42,-39,-39,-39,-30,-32,-32,-33,-36,-32,-24,-25,-30,-32,-24,-26,-36,-33,-30,-37,-41,-26,-26,-19,-29,-32,-21,-23,-31,-40,-43,-41,-38,-33,-29,-27,-31,-34,-34,-31,-32,-29,-22,-24,-25,-32,-35,-32,-33,-32,-32,-36,-34,-35,-28,-32,-34,-31,-25,-28,-37,-30,-31,-37,-40,-34,-27,-25,-30,-33,-32,-37,-37,-38,-35,-31,-37,-40,-38,-32,-33,-36,-35,-30,-33,-33,-33,-33,-32,-32,-29,-29,-32,-35,-25,-26,-34,-32,-32,-33,-40,-45,-44,-31,-36,-36,-37,-35,-36,-46,-35,-31,-36,-36,-36,-34,-21,-31,-42,-37,-41,-48,-36,-34,-38,-35,-39,-30,-36,-49,-45,-41,-35,-40,-37,-21,-26,-43,-42,-39,-39,-36,-34,-35,-28,-23,-27,-32,-38,-29,-23,-25,-29,-34,-35,-38,-42,-43,-41,-49,-38,-32,-39,-33,-34,-41,-48,-37,-32,-35,-32,-32,-31,-39,-34,-43,-46,-31,-31,-40,-41,-33,-34,-32,-38,-35,-36,-36,-33,-37,-27,-36,-37,-25,-40,-41,-33,-33,-34,-40,-35,-31,-32,-28,-32,-38,-32,-33,-27,-32,-35,-38,-32,-31,-39,-30,-30,-30,-24,-30,-40,-47,-39,-33,-36,-32,-38,-38,-23,-29,-25,-27,-36,-36,-43,-40,-37,-32,-26,-28,-26,-28,-40,-35,-38,-43,-38,-39,-39,-33,-39,-36,-32,-35,-35,-33,-29,-30,-29,-32,-38,-29,-33,-32,-31,-34,-30,-31,-26,-35,-39,-32,-32,-36,-34,-32,-35,-38,-49,-42,-33,-33,-37,-45,-41,-36,-43,-41,-33,-39,-36,-29,-32,-38,-39,-40,-35,-32,-35,-35,-31,-32,-28,-28,-37,-32,-43,-42,-36,-43,-37,-34,-30,-29,-36,-42,-36,-39,-36,-33,-37,-41,-38,-33,-42,-36,-30,-32,-31,-34,-35,-33,-30,-27,-34,-43,-44,-42,-40,-34,-30,-33,-33,-34,-35,-38,-36,-29,-25,-35,-29,-26,-36,-32,-35,-35,-35,-38,-39,-34,-34,-38,-32,-32,-42,-42,-36,-42,-39,-39,-34,-34,-35,-33,-36,-34,-38,-41,-35,-33,-40,-41,-42,-37,-38,-45,-42,-39,-37,-44,-38,-33,-39,-43,-47,-33,-27,-32,-35,-36,-34,-38,-36,-27,-33,-27,-27,-40,-44,-41,-36,-40,-32,-33,-39,-40,-43,-30,-38,-43,-34,-30,-22,-30,-34,-34,-40,-41,-43,-43,-32,-31,-32,-40,-41,-28,-32,-38,-36,-27,-33,-40,-40,-47,-42,-37,-35,-36,-30,-39,-43,-30,-39,-40,-27,-28,-42,-37,-35,-38,-35,-41,-48,-46,-38,-38,-33,-30,-32,-31,-37,-40,-35,-35,-31,-32,-34,-37,-37,-31,-30,-36,-39,-24,-27,-37,-37,-37,-40,-34,-28,-32,-29,-31,-43,-40,-38,-39,-46,-41,-33,-34,-25,-30,-39,-43,-41,-42,-43,-40,-40,-43,-34,-31,-35,-35,-35,-42,-47,-42,-33,-39,-42,-39,-36,-37,-45,-31,-30,-29,-26,-39,-34,-31,-27,-32,-36,-42,-39,-39,-47,-39,-32,-27,-39,-37,-31,-43,-38,-39,-29,-35,-38,-26,-39,-34,-34,-40,-40,-37,-37,-38,-35,-35,-32,-36,-34,-34,-44,-33,-27,-39,-37,-38,-39,-36,-40,-34,-32,-30,-26,-26,-32,-32,-42,-47,-43,-40,-32,-40,-40,-34,-38,-38,-38,-42,-40,-32,-41,-45,-40,-34,-37,-35,-35,-35,-32,-38,-33,-36,-34,-30,-33,-36,-34,-35,-36,-39,-42,-40,-35,-35,-38,-38,-32,-32,-33,-43,-44,-38,-42,-46,-32,-33,-40,-30,-28,-32,-31,-28,-27,-36,-37,-43,-44,-31,-37,-43,-37,-31,-38,-32,-26,-26,-28,-36,-39,-40,-32,-31,-34,-41,-36,-32,-28,-34,-45,-40,-30,-32,-35,-35,-38,-38,-32,-29,-41,-45,-47,-37,-35,-45,-40,-41,-45,-42,-32,-27,-28,-32,-32,-36,-40,-45,-44,-42,-46,-41,-35,-33,-39,-39,-39,-33,-36,-37,-32,-35,-28,-30,-40,-40,-37,-43,-45,-37,-27,-23,-31,-39,-23,-22,-32,-30,-31,-33,-32,-31,-34,-37,-40,-31,-27,-39,-40,-34,-40,-37,-34,-38,-38,-36,-33,-32,-37,-37,-32,-38,-42,-37,-34,-40,-40,-31,-22,-27,-32,-28,-34,-37,-30,-26,-33,-40,-47,-35,-18,-31,-40,-38,-35,-26,-31,-37,-37,-40,-40,-32,-28,-40,-44,-38,-38,-28,-24,-37,-43,-37,-40,-38,-41,-42,-32,-43,-54,-45,-32,-32,-38,-38,-33,-32,-34,-27,-42,-44,-37,-41,-36,-43,-45,-35,-38,-41,-45,-44,-39,-44,-39,-49,-54,-41,-46,-40,-37,-37,-37,-38,-31,-37,-40,-41,-35,-31,-37,-32,-35,-31,-33,-41,-47,-41,-35,-33,-29,-30,-33,-37,-34,-32,-28,-30,-34,-43,-35,-31,-29,-32,-35,-26,-32,-29,-31,-36,-33,-27,-26,-28,-20,-21,-38,-38,-39,-40,-35,-43,-35,-32,-48,-40,-32,-38,-36,-42,-38,-34,-32,-31,-40,-44,-45,-42,-34,-34,-31,-27,-29,-38,-39,-34,-34,-34,-37,-37,-38,-33,-33,-36,-34,-35,-38,-31,-43,-45,-34,-38,-41,-39,-36,-48,-46,-43,-40,-34,-38,-33,-39,-42,-36,-43,-37,-30,-29,-31,-32,-28,-27,-31,-33,-29,-30,-38,-43,-36,-39,-36,-36,-42,-33,-34,-41,-32,-35,-38,-19,-27,-42,-36,-30,-36,-42,-42,-40,-40,-40,-41,-39,-30,-33,-33,-34,-48,-35,-38,-40,-37,-38,-31,-33,-33,-42,-37,-38,-42,-34,-41,-45,-37,-37,-31,-25,-35,-45,-40,-31,-37,-43,-38,-38,-39,-43,-34,-30,-35,-33,-39,-35,-37,-40,-38,-41,-33,-36,-41,-44,-46,-41,-36,-43,-45,-34,-32,-33,-34,-41,-42,-37,-35,-38,-38,-43,-41,-41,-41,-36,-39,-34,-34,-39,-29,-43,-44,-38,-44,-35,-35,-41,-41,-42,-44,-32,-25,-29,-30,-35,-36,-34,-43,-38,-39,-34,-35,-45,-33,-30,-42,-36,-24,-34,-37,-32,-36,-39,-37,-35,-42,-40,-27,-32,-31,-36,-41,-27,-32,-32,-36,-43,-35,-36,-46,-41,-32,-33,-33,-34,-34,-37,-34,-31,-34,-34,-38,-31,-33,-44,-42,-37,-32,-43,-51,-42,-42,-44,-47,-43,-43,-40,-38,-39,-33,-33,-34,-35,-43,-42,-43,-43,-41,-42,-34,-28,-25,-35,-33,-37,-53,-38,-38,-39,-20,-30,-36,-26,-38,-41,-35,-38,-36,-47,-42,-37,-38,-33,-37,-34,-25,-32,-35,-31,-39,-45,-37,-35,-36,-39,-40,-35,-35,-49,-48,-42,-39,-34,-40,-37,-28,-27,-29,-23,-36,-43,-40,-37,-34,-35,-35,-32,-31,-30,-37,-35,-31,-39,-42,-37,-38,-33,-33,-40,-34,-37,-43,-43,-40,-30,-31,-40,-35,-35,-36,-34,-44,-45,-33,-32,-32,-32,-35,-38,-33,-33,-40,-32,-26,-39,-52,-50,-39,-39,-42,-40,-37,-25,-31,-35,-38,-41,-42,-40,-38,-36,-33,-34,-28,-32,-38,-32,-28,-32,-31,-40,-40,-25,-32,-41,-41,-39,-36,-33,-29,-31,-41,-41,-37,-39,-41,-41,-35,-29,-31,-34,-35,-31,-36,-39,-40,-43,-53,-49,-34,-42,-45,-49,-47,-42,-44,-43,-38,-29,-43,-48,-36,',
  10342. '2023-08-24T17:20:14.356013200' )
  10343. 17:21:29.745 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 17:21:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  10344. 17:21:29.752 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-24 17:21:29 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  10345. FROM goaf_sensor
  10346. WHERE goaf_sensor_ip = '192.168.3.12'
  10347. 17:22:45.256 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 17:22:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  10348. 17:22:45.262 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-24 17:22:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  10349. FROM goaf_sensor
  10350. WHERE goaf_sensor_ip = '192.168.3.12'
  10351. 17:24:00.719 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 17:24:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  10352. 17:24:00.726 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-24 17:24:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  10353. FROM goaf_sensor
  10354. WHERE goaf_sensor_ip = '192.168.3.12'
  10355. 17:24:34.936 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10356. 17:24:34.936 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  10357. 17:24:34.946 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  10358. 17:24:34.949 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10359. 17:24:34.949 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  10360. 17:24:34.949 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  10361. 17:24:34.955 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  10362. 17:24:34.956 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  10363. 17:24:34.956 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  10364. 17:24:34.956 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10365. 17:24:34.956 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  10366. 17:24:34.969 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  10367. 17:24:34.973 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  10368. 18:03:05.741 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  10369. 18:03:05.787 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3756 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  10370. 18:03:05.788 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  10371. 18:03:05.839 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  10372. 18:03:05.839 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  10373. 18:03:07.871 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  10374. 18:03:07.874 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  10375. 18:03:07.972 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 85 ms. Found 0 Redis repository interfaces.
  10376. 18:03:08.152 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10377. 18:03:08.168 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  10378. 18:03:08.993 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  10379. 18:03:08.994 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3154 ms
  10380. 18:03:11.757 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  10381. 18:03:11.769 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  10382. 18:03:11.769 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  10383. 18:03:11.770 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  10384. 18:03:11.771 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  10385. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  10386. NOT STARTED.
  10387. Currently in standby mode.
  10388. Number of jobs executed: 0
  10389. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  10390. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  10391. 18:03:11.771 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  10392. 18:03:11.771 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  10393. 18:03:11.771 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1539065e
  10394. 18:03:13.434 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  10395. 18:03:13.439 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  10396. 18:03:13.593 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  10397. 18:03:13.619 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10398. 18:03:13.620 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  10399. 18:03:13.620 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  10400. 18:03:13.641 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  10401. 18:03:13.650 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  10402. 18:03:13.663 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  10403. 18:03:13.693 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  10404. 18:03:13.748 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  10405. 18:03:13.750 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  10406. 18:03:13.750 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10407. 18:03:13.773 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.492 seconds (process running for 9.181)
  10408. 18:03:13.775 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  10409. 18:03:13.782 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  10410. 18:03:14.324 [restartedMain] INFO p6spy - 2023-08-24 18:03:14 | Time Consuming: 19 ms | Connection: statement-0 | SQL: SELECT 1
  10411. 18:03:14.358 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@780efec8
  10412. 18:03:14.370 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  10413. 18:03:14.644 [restartedMain] INFO p6spy - 2023-08-24 18:03:14 | Time Consuming: 83 ms | Connection: statement-0 | SQL: SELECT
  10414. A.job_id,
  10415. A.job_title,
  10416. A.job_desc,
  10417. A.status,
  10418. A.job_type,
  10419. A.job_code,
  10420. A.job_cron,
  10421. A.job_class_id,
  10422. B.job_class,
  10423. A.cycle_title,
  10424. A.cycle_period,
  10425. A.cycle_unit
  10426. FROM job AS A
  10427. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10428. WHERE A.deleted_flag = 0
  10429. AND A.status = 1
  10430. ORDER BY A.job_id ASC
  10431. 18:03:14.664 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10432. 18:03:14.666 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10433. 18:03:15.457 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  10434. 18:03:15.458 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  10435. 18:03:15.461 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  10436. 18:03:15.462 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 18:03:15 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  10437. 18:03:15.474 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-24 18:03:15 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  10438. 18:12:30.044 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:12:30 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10439. 18:12:30.058 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:12:30 | Time Consuming: 12 ms | Connection: statement-5 | SQL: SELECT *
  10440. FROM goaf_sensor
  10441. oc_id = 442135
  10442. WHERE goaf_sensor_id = 442135
  10443. 18:12:54.260 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:12:54 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  10444. 18:12:54.340 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:12:54 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 1
  10445. 18:13:05.855 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10446. 18:13:05.865 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10447. 18:13:06.124 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:06 | Time Consuming: 256 ms | Connection: statement-5 | SQL: SELECT *
  10448. FROM goaf_sensordata
  10449. WHERE oc_id = 406283
  10450. ORDER BY goaf_datareport_time DESC
  10451. LIMIT 10
  10452. 18:13:17.129 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:17 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT 1
  10453. 18:13:17.151 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:17 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT
  10454. client_id,
  10455. client_title,
  10456. client_app_id,
  10457. client_app_key,
  10458. client_app_secret,
  10459. client_desc,
  10460. status,
  10461. is_fixed
  10462. FROM client
  10463. WHERE deleted_flag = 0
  10464. AND client_app_id = '10001'
  10465. AND client_app_key = '82a8bf439373e305'
  10466. 18:13:17.188 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:17 | Time Consuming: 14 ms | Connection: statement-5 | SQL: SELECT
  10467. A.client_id,
  10468. A.role_id,
  10469. A.permit_id,
  10470. A.permit_title,
  10471. A.permit_code,
  10472. A.permit_entry,
  10473. A.permit_desc,
  10474. A.permit_type,
  10475. A.parent_id,
  10476. A.root_id,
  10477. A.sort_no,
  10478. A.is_home
  10479. FROM s_role_permit AS A
  10480. WHERE 1 = 1
  10481. AND A.client_id = 2
  10482. AND A.role_id = 1
  10483. ORDER BY A.parent_id ASC ,A.sort_no ASC
  10484. 18:13:17.330 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:17 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT count(*)
  10485. FROM msg AS M
  10486. WHERE M.oc_id = 1
  10487. AND (
  10488. EXISTS (
  10489. SELECT 1 FROM msg_to TT
  10490. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  10491. ) OR
  10492. EXISTS (
  10493. SELECT 1 FROM msg_cc CC
  10494. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  10495. )
  10496. )
  10497. 18:13:32.976 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:32 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10498. 18:13:36.235 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10499. 18:13:36.243 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  10500. client_id,
  10501. client_title,
  10502. client_app_id,
  10503. client_app_key,
  10504. client_app_secret,
  10505. client_desc,
  10506. status,
  10507. is_fixed
  10508. FROM client
  10509. WHERE deleted_flag = 0
  10510. AND client_app_id = '10001'
  10511. AND client_app_key = '82a8bf439373e305'
  10512. 18:13:36.257 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  10513. A.oc_id,
  10514. B.oc_type_id,
  10515. B.oc_name,
  10516. A.account_id,
  10517. A.account_name,
  10518. A.account_real_name,
  10519. A.password,
  10520. A.account_type,
  10521. A.account_staff_no,
  10522. A.account_phone,
  10523. A.account_last_ip,
  10524. A.account_loc,
  10525. A.status,
  10526. A.account_avatar,
  10527. A.account_photo,
  10528. A.account_real_name,
  10529. A.account_intro,
  10530. A.wx_id,
  10531. A.is_fixed
  10532. FROM account AS A
  10533. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  10534. WHERE A.deleted_flag = 0
  10535. AND (A.account_name = 'sxky'
  10536. OR A.account_phone = 'sxky'
  10537. OR A.account_mail = 'sxky'
  10538. OR A.account_staff_no = 'sxky')
  10539. 18:13:36.265 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  10540. A.oc_id,
  10541. A.oc_name,
  10542. A.oc_type_id,
  10543. A.root_id,
  10544. A.parent_id,
  10545. A.admin_id,
  10546. B.account_name AS admin_name,
  10547. A.group_id,
  10548. A.node_left,
  10549. A.node_right,
  10550. A.node_level,
  10551. A.is_leaf,
  10552. A.status,
  10553. A.if_lic
  10554. FROM oc AS A
  10555. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  10556. WHERE A.oc_id = 406283
  10557. 18:13:36.271 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  10558. A.rm_id,
  10559. A.role_id,
  10560. B.role_type_id,
  10561. B.role_code,
  10562. B.role_name,
  10563. A.account_id
  10564. FROM s_role_member AS A
  10565. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  10566. WHERE account_id = 406283
  10567. LIMIT 1
  10568. 18:13:36.276 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  10569. A.gm_id,
  10570. A.oc_id,
  10571. A.group_id,
  10572. B.group_name,
  10573. B.node_left ,
  10574. B.node_right,
  10575. A.account_id
  10576. FROM s_group_member AS A
  10577. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  10578. WHERE B.deleted_flag = 0
  10579. AND A.oc_id = 406283
  10580. AND A.account_id = 406283
  10581. LIMIT 1
  10582. 18:13:36.284 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  10583. A.gmp_id,
  10584. A.oc_id,
  10585. A.group_id,
  10586. B.group_name,
  10587. A.account_id,
  10588. D.account_name,
  10589. D.account_real_name,
  10590. A.position_id,
  10591. C.position_name
  10592. FROM s_group_member_position A
  10593. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  10594. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  10595. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  10596. WHERE A.deleted_flag = 0
  10597. AND A.oc_id = 406283
  10598. AND A.group_id = 406283
  10599. AND A.account_id = 406283
  10600. LIMIT 1
  10601. 18:13:36.289 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  10602. A.gmpg_id,
  10603. A.oc_id,
  10604. A.group_id,
  10605. A.account_id,
  10606. A.position_id,
  10607. A.grant_group_id,
  10608. B.group_name AS grant_group_name
  10609. FROM s_group_member_position_grant A
  10610. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  10611. WHERE A.deleted_flag = 0
  10612. AND A.oc_id = 406283
  10613. AND A.group_id = 406283
  10614. AND A.account_id = 406283
  10615. AND A.position_id = 406283
  10616. LIMIT 1
  10617. 18:13:36.341 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  10618. client_id,
  10619. client_title,
  10620. client_app_id,
  10621. client_app_key,
  10622. client_app_secret,
  10623. client_desc,
  10624. status,
  10625. is_fixed
  10626. FROM client
  10627. WHERE deleted_flag = 0
  10628. AND client_app_id = '10001'
  10629. AND client_app_key = '82a8bf439373e305'
  10630. 18:13:36.357 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  10631. A.client_id,
  10632. A.role_id,
  10633. A.permit_id,
  10634. A.permit_title,
  10635. A.permit_code,
  10636. A.permit_entry,
  10637. A.permit_desc,
  10638. A.permit_type,
  10639. A.parent_id,
  10640. A.root_id,
  10641. A.sort_no,
  10642. A.is_home
  10643. FROM s_role_permit AS A
  10644. WHERE 1 = 1
  10645. AND A.client_id = 2
  10646. AND A.role_id = 6
  10647. ORDER BY A.parent_id ASC ,A.sort_no ASC
  10648. 18:13:36.743 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:36 | Time Consuming: 32 ms | Connection: statement-5 | SQL: SELECT count(*)
  10649. FROM msg AS M
  10650. WHERE M.oc_id = 406283
  10651. AND (
  10652. EXISTS (
  10653. SELECT 1 FROM msg_to TT
  10654. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  10655. ) OR
  10656. EXISTS (
  10657. SELECT 1 FROM msg_cc CC
  10658. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  10659. )
  10660. )
  10661. 18:13:37.292 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10662. 18:13:37.297 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  10663. 18:13:37.301 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  10664. FROM goaf_sensor
  10665. where oc_id = 406283
  10666. LIMIT 10
  10667. 18:13:39.037 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:39 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10668. 18:13:39.047 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:39 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10669. 18:13:39.307 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:13:39 | Time Consuming: 258 ms | Connection: statement-5 | SQL: SELECT *
  10670. FROM goaf_sensordata
  10671. WHERE oc_id = 406283
  10672. ORDER BY goaf_datareport_time DESC
  10673. LIMIT 10
  10674. 18:14:25.881 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:14:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10675. 18:14:25.891 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:14:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10676. 18:14:26.153 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:14:26 | Time Consuming: 260 ms | Connection: statement-5 | SQL: SELECT *
  10677. FROM goaf_sensordata
  10678. WHERE oc_id = 406283
  10679. ORDER BY goaf_datareport_time DESC
  10680. LIMIT 10
  10681. 18:18:23.325 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:18:23 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10682. 18:18:23.330 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:18:23 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  10683. FROM goaf_sensor
  10684. oc_id = 442135
  10685. WHERE goaf_sensor_id = 442135
  10686. 18:20:56.113 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10687. 18:20:56.114 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  10688. 18:20:56.116 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  10689. 18:20:56.119 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10690. 18:20:56.119 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  10691. 18:20:56.119 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  10692. 18:20:56.124 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  10693. 18:20:56.125 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  10694. 18:20:56.125 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  10695. 18:20:56.125 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  10696. 18:20:56.125 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  10697. 18:20:56.145 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  10698. 18:20:56.148 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  10699. 18:21:00.833 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  10700. 18:21:00.880 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15692 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  10701. 18:21:00.880 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  10702. 18:21:00.932 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  10703. 18:21:00.933 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  10704. 18:21:02.741 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  10705. 18:21:02.745 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  10706. 18:21:02.834 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  10707. 18:21:03.006 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10708. 18:21:03.022 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  10709. 18:21:03.767 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  10710. 18:21:03.767 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2834 ms
  10711. 18:21:06.301 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  10712. 18:21:06.314 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  10713. 18:21:06.314 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  10714. 18:21:06.315 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  10715. 18:21:06.315 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  10716. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  10717. NOT STARTED.
  10718. Currently in standby mode.
  10719. Number of jobs executed: 0
  10720. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  10721. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  10722. 18:21:06.316 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  10723. 18:21:06.316 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  10724. 18:21:06.316 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  10725. 18:21:08.458 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  10726. 18:21:08.463 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  10727. 18:21:08.610 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  10728. 18:21:08.641 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  10729. 18:21:08.642 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  10730. 18:21:08.642 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  10731. 18:21:08.662 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  10732. 18:21:08.672 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  10733. 18:21:08.684 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  10734. 18:21:08.715 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  10735. 18:21:08.769 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  10736. 18:21:08.770 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  10737. 18:21:08.771 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10738. 18:21:08.796 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.443 seconds (process running for 9.289)
  10739. 18:21:08.799 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  10740. 18:21:08.806 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  10741. 18:21:09.160 [restartedMain] INFO p6spy - 2023-08-24 18:21:09 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  10742. 18:21:09.165 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@37873594
  10743. 18:21:09.175 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  10744. 18:21:09.243 [restartedMain] INFO p6spy - 2023-08-24 18:21:09 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  10745. A.job_id,
  10746. A.job_title,
  10747. A.job_desc,
  10748. A.status,
  10749. A.job_type,
  10750. A.job_code,
  10751. A.job_cron,
  10752. A.job_class_id,
  10753. B.job_class,
  10754. A.cycle_title,
  10755. A.cycle_period,
  10756. A.cycle_unit
  10757. FROM job AS A
  10758. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  10759. WHERE A.deleted_flag = 0
  10760. AND A.status = 1
  10761. ORDER BY A.job_id ASC
  10762. 18:21:09.265 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10763. 18:21:09.267 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  10764. 18:21:09.824 [RMI TCP Connection(12)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  10765. 18:21:09.825 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  10766. 18:21:09.829 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  10767. 18:21:09.831 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-24 18:21:09 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  10768. 18:21:09.844 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-24 18:21:09 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  10769. 18:21:51.149 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:21:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  10770. 18:21:51.154 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:21:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  10771. FROM goaf_sensor
  10772. WHERE goaf_sensor_id = 442135
  10773. 18:26:10.132 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:10 | Time Consuming: 5010 ms | Connection: statement-1 | SQL: SELECT 1
  10774. 18:26:10.132 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:26:10 | Time Consuming: 5010 ms | Connection: statement-0 | SQL: SELECT 1
  10775. 18:26:10.132 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:26:10 | Time Consuming: 5010 ms | Connection: statement-2 | SQL: SELECT 1
  10776. 18:26:10.136 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:26:10 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10777. 18:26:10.200 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:26:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  10778. 18:26:10.207 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:26:10 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  10779. FROM goaf_devinfo
  10780. where oc_id = 406283
  10781. LIMIT 10
  10782. 18:26:15.134 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:15 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  10783. 18:26:15.134 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:26:15 | Time Consuming: 5001 ms | Connection: statement-4 | SQL: SELECT 1
  10784. 18:26:15.138 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:26:15 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  10785. 18:26:15.138 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:15 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10786. 18:26:15.146 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:26:15 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  10787. FROM goaf_syscfg
  10788. WHERE oc_id = 406283
  10789. 18:26:15.147 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:15 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  10790. FROM goaf_baseinfo
  10791. WHERE oc_id = 406283
  10792. 18:26:46.037 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:46 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10793. 18:26:46.050 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:46 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10794. 18:26:46.310 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:26:46 | Time Consuming: 258 ms | Connection: statement-5 | SQL: SELECT *
  10795. FROM goaf_sensordata
  10796. WHERE oc_id = 406283
  10797. ORDER BY goaf_datareport_time DESC
  10798. LIMIT 10
  10799. 18:28:08.269 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:28:08 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10800. 18:28:08.280 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:28:08 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283 AND goaf_sensor_id = '442139'
  10801. 18:28:08.537 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:28:08 | Time Consuming: 256 ms | Connection: statement-5 | SQL: SELECT *
  10802. FROM goaf_sensordata
  10803. WHERE oc_id = 406283
  10804. AND goaf_sensor_id = '442139'
  10805. ORDER BY goaf_datareport_time DESC
  10806. LIMIT 10
  10807. 18:29:48.950 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:29:48 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10808. 18:29:48.968 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:29:48 | Time Consuming: 13 ms | Connection: statement-5 | SQL: SELECT *
  10809. FROM goaf_sensordata
  10810. WHERE oc_id = 406283
  10811. ORDER BY goaf_datareport_time DESC
  10812. LIMIT 1
  10813. 18:29:57.205 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:29:57 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10814. 18:29:57.241 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:29:57 | Time Consuming: 33 ms | Connection: statement-5 | SQL: SELECT *
  10815. FROM goaf_sensordata
  10816. WHERE oc_id = 406283
  10817. AND goaf_sensor_id = '442139'
  10818. ORDER BY goaf_datareport_time DESC
  10819. LIMIT 1
  10820. 18:30:25.360 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:30:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10821. 18:30:25.375 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:30:25 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  10822. FROM goaf_sensordata
  10823. WHERE oc_id = 406283
  10824. ORDER BY goaf_datareport_time DESC
  10825. LIMIT 1
  10826. 18:31:26.718 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:26 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  10827. 18:31:26.730 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:26 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  10828. 18:31:26.734 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:26 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  10829. FROM goaf_devinfo
  10830. where oc_id = 406283
  10831. LIMIT 10
  10832. 18:31:28.067 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:28 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10833. 18:31:28.076 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:28 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10834. 18:31:28.340 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:28 | Time Consuming: 262 ms | Connection: statement-5 | SQL: SELECT *
  10835. FROM goaf_sensordata
  10836. WHERE oc_id = 406283
  10837. ORDER BY goaf_datareport_time DESC
  10838. LIMIT 10
  10839. 18:31:29.584 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:29 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10840. 18:31:29.603 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:31:29 | Time Consuming: 14 ms | Connection: statement-5 | SQL: SELECT *
  10841. FROM goaf_sensordata
  10842. WHERE oc_id = 406283
  10843. ORDER BY goaf_datareport_time DESC
  10844. LIMIT 1
  10845. 18:31:31.718 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:31:31 | Time Consuming: 5001 ms | Connection: statement-8 | SQL: SELECT 1
  10846. 18:31:31.718 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:31:31 | Time Consuming: 5001 ms | Connection: statement-6 | SQL: SELECT 1
  10847. 18:31:31.723 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:31:31 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10848. 18:31:31.732 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:31:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  10849. FROM goaf_syscfg
  10850. WHERE oc_id = 406283
  10851. 18:31:36.720 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:31:36 | Time Consuming: 5000 ms | Connection: statement-9 | SQL: SELECT 1
  10852. 18:31:36.724 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:31:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10853. 18:31:36.733 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:31:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  10854. FROM goaf_baseinfo
  10855. WHERE oc_id = 406283
  10856. 18:33:08.554 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:33:08 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10857. 18:33:08.565 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:33:08 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10858. 18:33:08.806 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:33:08 | Time Consuming: 240 ms | Connection: statement-5 | SQL: SELECT *
  10859. FROM goaf_sensordata
  10860. WHERE oc_id = 406283
  10861. ORDER BY goaf_datareport_time DESC
  10862. LIMIT 10
  10863. 18:33:37.423 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:33:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  10864. 18:33:37.437 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:33:37 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT *
  10865. FROM goaf_sensordata
  10866. WHERE oc_id = 406283
  10867. ORDER BY goaf_datareport_time DESC
  10868. LIMIT 1
  10869. 18:34:20.775 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:34:20 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  10870. 18:34:20.784 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:34:20 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  10871. 18:34:21.045 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:34:21 | Time Consuming: 261 ms | Connection: statement-5 | SQL: SELECT *
  10872. FROM goaf_sensordata
  10873. WHERE oc_id = 406283
  10874. ORDER BY goaf_datareport_time DESC
  10875. LIMIT 10
  10876. 18:59:28.404 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:59:28 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT 1
  10877. 18:59:28.410 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:59:28 | Time Consuming: 4 ms | Connection: statement-26 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  10878. 18:59:28.416 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:59:28 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT *
  10879. FROM goaf_sensor
  10880. where oc_id = 406283
  10881. LIMIT 10
  10882. 18:59:30.753 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT 1
  10883. 18:59:30.753 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 5 ms | Connection: statement-28 | SQL: SELECT 1
  10884. 18:59:30.753 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT 1
  10885. 18:59:30.767 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 6 ms | Connection: statement-27 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  10886. 18:59:30.767 [XNIO-1 task-2] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 7 ms | Connection: statement-28 | SQL: SELECT *
  10887. FROM goaf_syscfg
  10888. WHERE oc_id = 406283
  10889. 18:59:30.767 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 7 ms | Connection: statement-26 | SQL: SELECT *
  10890. FROM goaf_baseinfo
  10891. WHERE oc_id = 406283
  10892. 18:59:30.774 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:30 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT *
  10893. FROM goaf_devinfo
  10894. where oc_id = 406283
  10895. LIMIT 10
  10896. 18:59:35.199 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:35 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT 1
  10897. 18:59:35.199 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:35 | Time Consuming: 3 ms | Connection: statement-27 | SQL: SELECT 1
  10898. 18:59:35.203 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:35 | Time Consuming: 3 ms | Connection: statement-27 | SQL: SELECT
  10899. COUNT(*) AS 'goafSensorTotalNum',
  10900. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  10901. FROM goaf_sensor
  10902. WHERE oc_id = 406283
  10903. 18:59:35.203 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:35 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  10904. 18:59:35.208 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:35 | Time Consuming: 4 ms | Connection: statement-26 | SQL: SELECT *
  10905. FROM goaf_sensor
  10906. where oc_id = 406283
  10907. LIMIT 10
  10908. 18:59:54.571 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:54 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT 1
  10909. 18:59:54.571 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:54 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT 1
  10910. 18:59:54.575 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:54 | Time Consuming: 4 ms | Connection: statement-26 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  10911. 18:59:54.580 [XNIO-1 task-3] INFO p6spy - 2023-08-24 18:59:54 | Time Consuming: 4 ms | Connection: statement-27 | SQL: SELECT *
  10912. FROM goaf_syscfg
  10913. WHERE oc_id = 406283
  10914. 18:59:54.580 [XNIO-1 task-4] INFO p6spy - 2023-08-24 18:59:54 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT *
  10915. FROM goaf_sensor
  10916. where oc_id = 406283
  10917. LIMIT 10