info.2023-08-18.log 468 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743
  1. 09:57:49.502 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2. 09:57:49.558 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14540 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3. 09:57:49.559 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4. 09:57:49.631 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5. 09:57:49.631 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6. 09:57:51.626 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  7. 09:57:51.629 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8. 09:57:51.718 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 0 Redis repository interfaces.
  9. 09:57:51.888 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10. 09:57:51.904 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  11. 09:57:52.661 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  12. 09:57:52.662 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3019 ms
  13. 09:57:55.183 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  14. 09:57:55.193 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  15. 09:57:55.193 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  16. 09:57:55.193 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  17. 09:57:55.194 [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. 09:57:55.194 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  25. 09:57:55.194 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  26. 09:57:55.194 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  27. 09:57:57.018 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  28. 09:57:57.024 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  29. 09:57:57.183 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  30. 09:57:57.222 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  31. 09:57:57.222 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  32. 09:57:57.223 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  33. 09:57:57.247 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  34. 09:57:57.258 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  35. 09:57:57.269 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  36. 09:57:57.301 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  37. 09:57:57.370 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  38. 09:57:57.372 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  39. 09:57:57.373 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  40. 09:57:57.401 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.423 seconds (process running for 9.48)
  41. 09:57:57.405 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  42. 09:57:57.417 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  43. 09:57:57.777 [restartedMain] INFO p6spy - 2023-08-18 09:57:57 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  44. 09:57:57.781 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c7d952b
  45. 09:57:57.785 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  46. 09:57:57.852 [restartedMain] INFO p6spy - 2023-08-18 09:57:57 | Time Consuming: 4 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. 09:57:57.874 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  65. 09:57:57.876 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  66. 09:57:57.876 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  67. 09:57:57.876 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  68. 09:57:57.877 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  69. 09:57:57.877 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  70. 09:57:57.877 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  71. 09:57:57.877 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  72. 09:57:58.287 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  73. 09:57:58.288 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  74. 09:57:58.291 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  75. 09:57:58.303 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-18 09:57:58 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  76. 09:58:18.212 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  77. 09:58:18.213 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  78. 09:58:18.222 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  79. 09:58:18.226 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  80. 09:58:18.227 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  81. 09:58:18.227 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  82. 09:58:18.329 [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)
  83. 09:58:18.330 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  84. 09:58:18.330 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  85. 09:58:18.330 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  86. 09:58:18.330 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  87. 09:58:18.343 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  88. 09:58:18.347 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  89. 09:58:23.639 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  90. 09:58:23.696 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 20828 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  91. 09:58:23.696 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  92. 09:58:23.753 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  93. 09:58:23.753 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  94. 09:58:25.643 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  95. 09:58:25.647 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  96. 09:58:25.739 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  97. 09:58:25.918 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  98. 09:58:25.934 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  99. 09:58:26.718 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  100. 09:58:26.718 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2964 ms
  101. 09:58:29.198 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  102. 09:58:29.209 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  103. 09:58:29.209 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  104. 09:58:29.210 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  105. 09:58:29.211 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  106. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  107. NOT STARTED.
  108. Currently in standby mode.
  109. Number of jobs executed: 0
  110. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  111. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  112. 09:58:29.211 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  113. 09:58:29.211 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  114. 09:58:29.211 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@21203a20
  115. 09:58:31.009 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  116. 09:58:31.015 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  117. 09:58:31.166 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  118. 09:58:31.198 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  119. 09:58:31.199 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  120. 09:58:31.199 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  121. 09:58:31.220 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  122. 09:58:31.231 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  123. 09:58:31.241 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  124. 09:58:31.272 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  125. 09:58:31.324 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  126. 09:58:31.325 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  127. 09:58:31.326 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  128. 09:58:31.351 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.246 seconds (process running for 9.058)
  129. 09:58:31.353 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  130. 09:58:31.362 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  131. 09:58:31.699 [restartedMain] INFO p6spy - 2023-08-18 09:58:31 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  132. 09:58:31.703 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@246ff71c
  133. 09:58:31.714 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  134. 09:58:31.782 [restartedMain] INFO p6spy - 2023-08-18 09:58:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  135. A.job_id,
  136. A.job_title,
  137. A.job_desc,
  138. A.status,
  139. A.job_type,
  140. A.job_code,
  141. A.job_cron,
  142. A.job_class_id,
  143. B.job_class,
  144. A.cycle_title,
  145. A.cycle_period,
  146. A.cycle_unit
  147. FROM job AS A
  148. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  149. WHERE A.deleted_flag = 0
  150. AND A.status = 1
  151. ORDER BY A.job_id ASC
  152. 09:58:31.811 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  153. 09:58:31.813 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  154. 09:58:31.814 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  155. 09:58:31.814 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  156. 09:58:31.814 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  157. 09:58:31.815 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  158. 09:58:31.815 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  159. 09:58:31.815 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  160. 09:58:32.215 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  161. 09:58:32.216 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  162. 09:58:32.220 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  163. 09:58:32.225 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 09:58:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  164. 09:58:48.012 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  165. 09:58:48.013 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  166. 09:58:48.027 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  167. 09:58:48.037 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  168. 09:58:48.037 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  169. 09:58:48.037 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  170. 09:58:48.062 [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)
  171. 09:58:48.063 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  172. 09:58:48.063 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  173. 09:58:48.063 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  174. 09:58:48.063 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  175. 09:58:48.077 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  176. 09:58:48.081 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  177. 09:58:53.032 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  178. 09:58:53.089 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 24948 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  179. 09:58:53.090 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  180. 09:58:53.154 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  181. 09:58:53.155 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  182. 09:58:55.279 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  183. 09:58:55.283 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  184. 09:58:55.394 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 93 ms. Found 0 Redis repository interfaces.
  185. 09:58:55.593 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  186. 09:58:55.611 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  187. 09:58:56.447 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  188. 09:58:56.448 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3293 ms
  189. 09:58:59.030 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  190. 09:58:59.041 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  191. 09:58:59.041 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  192. 09:58:59.041 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  193. 09:58:59.042 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  194. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  195. NOT STARTED.
  196. Currently in standby mode.
  197. Number of jobs executed: 0
  198. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  199. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  200. 09:58:59.042 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  201. 09:58:59.042 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  202. 09:58:59.042 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  203. 09:59:01.383 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  204. 09:59:01.389 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  205. 09:59:01.552 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  206. 09:59:01.586 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  207. 09:59:01.586 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  208. 09:59:01.587 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  209. 09:59:01.617 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  210. 09:59:01.628 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  211. 09:59:01.639 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  212. 09:59:01.672 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  213. 09:59:01.730 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  214. 09:59:01.732 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  215. 09:59:01.733 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  216. 09:59:01.758 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.327 seconds (process running for 10.226)
  217. 09:59:01.760 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  218. 09:59:01.768 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  219. 09:59:02.139 [restartedMain] INFO p6spy - 2023-08-18 09:59:02 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  220. 09:59:02.144 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@fd70f4f
  221. 09:59:02.147 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  222. 09:59:02.215 [restartedMain] INFO p6spy - 2023-08-18 09:59:02 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  223. A.job_id,
  224. A.job_title,
  225. A.job_desc,
  226. A.status,
  227. A.job_type,
  228. A.job_code,
  229. A.job_cron,
  230. A.job_class_id,
  231. B.job_class,
  232. A.cycle_title,
  233. A.cycle_period,
  234. A.cycle_unit
  235. FROM job AS A
  236. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  237. WHERE A.deleted_flag = 0
  238. AND A.status = 1
  239. ORDER BY A.job_id ASC
  240. 09:59:02.237 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  241. 09:59:02.239 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  242. 09:59:02.240 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  243. 09:59:02.240 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  244. 09:59:02.241 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  245. 09:59:02.241 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  246. 09:59:02.241 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  247. 09:59:02.241 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  248. 09:59:02.977 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  249. 09:59:02.977 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  250. 09:59:02.981 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 09:59:02 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  251. 09:59:02.982 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  252. 09:59:03.038 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 09:59:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  253. 09:59:19.022 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  254. 09:59:19.024 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  255. 09:59:19.033 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  256. 09:59:19.036 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  257. 09:59:19.037 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  258. 09:59:19.037 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  259. 09:59:19.068 [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)
  260. 09:59:19.070 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  261. 09:59:19.070 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  262. 09:59:19.070 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  263. 09:59:19.071 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  264. 09:59:19.084 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  265. 09:59:19.088 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  266. 09:59:23.754 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  267. 09:59:23.802 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 20148 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  268. 09:59:23.803 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  269. 09:59:23.855 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  270. 09:59:23.856 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  271. 09:59:25.663 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  272. 09:59:25.666 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  273. 09:59:25.756 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  274. 09:59:25.928 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  275. 09:59:25.945 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  276. 09:59:26.689 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  277. 09:59:26.690 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2833 ms
  278. 09:59:29.064 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  279. 09:59:29.074 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  280. 09:59:29.074 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  281. 09:59:29.074 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  282. 09:59:29.075 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  283. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  284. NOT STARTED.
  285. Currently in standby mode.
  286. Number of jobs executed: 0
  287. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  288. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  289. 09:59:29.075 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  290. 09:59:29.075 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  291. 09:59:29.075 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  292. 09:59:30.770 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  293. 09:59:30.775 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  294. 09:59:30.918 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  295. 09:59:30.949 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  296. 09:59:30.949 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  297. 09:59:30.950 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  298. 09:59:30.970 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  299. 09:59:30.979 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  300. 09:59:30.989 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  301. 09:59:31.020 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  302. 09:59:31.072 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  303. 09:59:31.074 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  304. 09:59:31.074 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  305. 09:59:31.098 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.849 seconds (process running for 8.692)
  306. 09:59:31.100 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  307. 09:59:31.108 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  308. 09:59:31.428 [restartedMain] INFO p6spy - 2023-08-18 09:59:31 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  309. 09:59:31.433 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c7d952b
  310. 09:59:31.444 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  311. 09:59:31.519 [restartedMain] INFO p6spy - 2023-08-18 09:59:31 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  312. A.job_id,
  313. A.job_title,
  314. A.job_desc,
  315. A.status,
  316. A.job_type,
  317. A.job_code,
  318. A.job_cron,
  319. A.job_class_id,
  320. B.job_class,
  321. A.cycle_title,
  322. A.cycle_period,
  323. A.cycle_unit
  324. FROM job AS A
  325. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  326. WHERE A.deleted_flag = 0
  327. AND A.status = 1
  328. ORDER BY A.job_id ASC
  329. 09:59:31.542 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  330. 09:59:31.543 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  331. 09:59:31.544 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  332. 09:59:31.544 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  333. 09:59:31.545 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  334. 09:59:31.545 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  335. 09:59:31.545 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  336. 09:59:31.545 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  337. 09:59:32.231 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-18 09:59:32 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT 1
  338. 09:59:32.231 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  339. 09:59:32.231 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  340. 09:59:32.235 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  341. 09:59:32.246 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-18 09:59:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  342. 10:06:47.132 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  343. 10:06:47.133 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  344. 10:06:47.147 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  345. 10:06:47.151 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  346. 10:06:47.152 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  347. 10:06:47.152 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  348. 10:06:47.162 [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)
  349. 10:06:47.163 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  350. 10:06:47.164 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  351. 10:06:47.164 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  352. 10:06:47.165 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  353. 10:06:47.184 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  354. 10:06:47.189 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  355. 10:06:51.823 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  356. 10:06:51.870 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 27548 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  357. 10:06:51.871 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  358. 10:06:51.925 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  359. 10:06:51.925 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  360. 10:06:53.804 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  361. 10:06:53.807 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  362. 10:06:53.898 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  363. 10:06:54.067 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  364. 10:06:54.084 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  365. 10:06:54.906 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  366. 10:06:54.906 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2980 ms
  367. 10:06:57.262 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  368. 10:06:57.272 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  369. 10:06:57.272 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  370. 10:06:57.273 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  371. 10:06:57.273 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  372. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  373. NOT STARTED.
  374. Currently in standby mode.
  375. Number of jobs executed: 0
  376. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  377. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  378. 10:06:57.273 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  379. 10:06:57.273 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  380. 10:06:57.273 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  381. 10:06:58.968 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  382. 10:06:58.974 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  383. 10:06:59.115 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  384. 10:06:59.145 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  385. 10:06:59.146 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  386. 10:06:59.146 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  387. 10:06:59.166 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  388. 10:06:59.175 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  389. 10:06:59.185 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  390. 10:06:59.215 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  391. 10:06:59.267 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  392. 10:06:59.268 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  393. 10:06:59.268 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  394. 10:06:59.294 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.965 seconds (process running for 8.749)
  395. 10:06:59.296 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  396. 10:06:59.303 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  397. 10:06:59.625 [restartedMain] INFO p6spy - 2023-08-18 10:06:59 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  398. 10:06:59.629 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c7d952b
  399. 10:06:59.639 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  400. 10:06:59.715 [restartedMain] INFO p6spy - 2023-08-18 10:06:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  401. A.job_id,
  402. A.job_title,
  403. A.job_desc,
  404. A.status,
  405. A.job_type,
  406. A.job_code,
  407. A.job_cron,
  408. A.job_class_id,
  409. B.job_class,
  410. A.cycle_title,
  411. A.cycle_period,
  412. A.cycle_unit
  413. FROM job AS A
  414. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  415. WHERE A.deleted_flag = 0
  416. AND A.status = 1
  417. ORDER BY A.job_id ASC
  418. 10:06:59.737 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  419. 10:06:59.739 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  420. 10:06:59.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  421. 10:06:59.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  422. 10:06:59.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  423. 10:06:59.740 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  424. 10:06:59.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  425. 10:06:59.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  426. 10:07:00.324 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  427. 10:07:00.325 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  428. 10:07:00.328 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-18 10:07:00 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  429. 10:07:00.330 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  430. 10:07:00.339 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-18 10:07:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  431. 10:14:55.906 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  432. 10:14:55.907 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  433. 10:14:55.925 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  434. 10:14:55.940 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  435. 10:14:55.940 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  436. 10:14:55.941 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  437. 10:14:55.951 [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)
  438. 10:14:55.953 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  439. 10:14:55.953 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  440. 10:14:55.953 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  441. 10:14:55.953 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  442. 10:14:55.971 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  443. 10:14:55.975 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  444. 10:15:00.742 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  445. 10:15:00.791 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 25804 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  446. 10:15:00.791 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  447. 10:15:00.845 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  448. 10:15:00.846 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  449. 10:15:02.645 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  450. 10:15:02.648 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  451. 10:15:02.741 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  452. 10:15:02.912 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  453. 10:15:02.929 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  454. 10:15:03.669 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  455. 10:15:03.670 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2824 ms
  456. 10:15:06.090 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  457. 10:15:06.100 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  458. 10:15:06.100 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  459. 10:15:06.101 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  460. 10:15:06.102 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  461. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  462. NOT STARTED.
  463. Currently in standby mode.
  464. Number of jobs executed: 0
  465. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  466. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  467. 10:15:06.102 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  468. 10:15:06.102 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  469. 10:15:06.102 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15ff0eb8
  470. 10:15:07.826 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  471. 10:15:07.832 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  472. 10:15:07.978 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  473. 10:15:08.009 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  474. 10:15:08.010 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  475. 10:15:08.010 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  476. 10:15:08.031 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  477. 10:15:08.040 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  478. 10:15:08.051 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  479. 10:15:08.081 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  480. 10:15:08.133 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  481. 10:15:08.135 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  482. 10:15:08.135 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  483. 10:15:08.160 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.901 seconds (process running for 8.771)
  484. 10:15:08.162 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  485. 10:15:08.169 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  486. 10:15:08.499 [restartedMain] INFO p6spy - 2023-08-18 10:15:08 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  487. 10:15:08.503 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@703a3be
  488. 10:15:08.513 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  489. 10:15:08.589 [restartedMain] INFO p6spy - 2023-08-18 10:15:08 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  490. A.job_id,
  491. A.job_title,
  492. A.job_desc,
  493. A.status,
  494. A.job_type,
  495. A.job_code,
  496. A.job_cron,
  497. A.job_class_id,
  498. B.job_class,
  499. A.cycle_title,
  500. A.cycle_period,
  501. A.cycle_unit
  502. FROM job AS A
  503. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  504. WHERE A.deleted_flag = 0
  505. AND A.status = 1
  506. ORDER BY A.job_id ASC
  507. 10:15:08.611 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  508. 10:15:08.612 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  509. 10:15:08.613 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  510. 10:15:08.613 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  511. 10:15:08.613 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  512. 10:15:08.614 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  513. 10:15:08.614 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  514. 10:15:08.614 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  515. 10:15:08.926 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  516. 10:15:08.926 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  517. 10:15:08.929 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  518. 10:15:08.934 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 10:15:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  519. 11:10:24.673 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  520. 11:10:24.675 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  521. 11:10:24.682 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  522. 11:10:24.685 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  523. 11:10:24.685 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  524. 11:10:24.685 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  525. 11:10:24.692 [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)
  526. 11:10:24.693 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  527. 11:10:24.693 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  528. 11:10:24.693 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  529. 11:10:24.693 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  530. 11:10:24.712 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  531. 11:10:24.716 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  532. 11:10:30.158 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  533. 11:10:30.206 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 11856 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  534. 11:10:30.207 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  535. 11:10:30.260 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  536. 11:10:30.261 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  537. 11:10:32.085 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  538. 11:10:32.088 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  539. 11:10:32.184 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  540. 11:10:32.357 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  541. 11:10:32.374 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  542. 11:10:33.126 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  543. 11:10:33.126 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2865 ms
  544. 11:10:35.495 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  545. 11:10:35.505 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  546. 11:10:35.505 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  547. 11:10:35.505 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  548. 11:10:35.506 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  549. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  550. NOT STARTED.
  551. Currently in standby mode.
  552. Number of jobs executed: 0
  553. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  554. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  555. 11:10:35.506 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  556. 11:10:35.506 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  557. 11:10:35.506 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@10199863
  558. 11:10:37.281 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  559. 11:10:37.287 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  560. 11:10:37.433 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  561. 11:10:37.466 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  562. 11:10:37.466 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  563. 11:10:37.466 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  564. 11:10:37.487 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  565. 11:10:37.497 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  566. 11:10:37.507 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  567. 11:10:37.537 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  568. 11:10:37.588 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  569. 11:10:37.589 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  570. 11:10:37.590 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  571. 11:10:37.614 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.94 seconds (process running for 8.673)
  572. 11:10:37.616 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  573. 11:10:37.624 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  574. 11:10:37.951 [restartedMain] INFO p6spy - 2023-08-18 11:10:37 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  575. 11:10:37.956 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@78099df7
  576. 11:10:37.967 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  577. 11:10:38.034 [restartedMain] INFO p6spy - 2023-08-18 11:10:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  578. A.job_id,
  579. A.job_title,
  580. A.job_desc,
  581. A.status,
  582. A.job_type,
  583. A.job_code,
  584. A.job_cron,
  585. A.job_class_id,
  586. B.job_class,
  587. A.cycle_title,
  588. A.cycle_period,
  589. A.cycle_unit
  590. FROM job AS A
  591. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  592. WHERE A.deleted_flag = 0
  593. AND A.status = 1
  594. ORDER BY A.job_id ASC
  595. 11:10:38.055 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  596. 11:10:38.056 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  597. 11:10:38.057 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  598. 11:10:38.057 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  599. 11:10:38.057 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  600. 11:10:38.058 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  601. 11:10:38.058 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  602. 11:10:38.058 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  603. 11:12:59.700 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  604. 11:12:59.701 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  605. 11:12:59.712 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  606. 11:12:59.713 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  607. 11:12:59.713 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  608. 11:12:59.721 [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)
  609. 11:12:59.725 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  610. 11:12:59.725 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  611. 11:12:59.726 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  612. 11:12:59.726 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  613. 11:12:59.751 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  614. 11:12:59.756 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  615. 11:13:05.142 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  616. 11:13:05.190 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 27480 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  617. 11:13:05.190 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  618. 11:13:05.244 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  619. 11:13:05.244 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  620. 11:13:07.142 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  621. 11:13:07.146 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  622. 11:13:07.242 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  623. 11:13:07.414 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  624. 11:13:07.430 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  625. 11:13:08.198 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  626. 11:13:08.198 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2954 ms
  627. 11:13:10.557 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  628. 11:13:10.567 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  629. 11:13:10.567 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  630. 11:13:10.567 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  631. 11:13:10.568 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  632. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  633. NOT STARTED.
  634. Currently in standby mode.
  635. Number of jobs executed: 0
  636. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  637. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  638. 11:13:10.568 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  639. 11:13:10.568 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  640. 11:13:10.568 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  641. 11:13:12.284 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  642. 11:13:12.289 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  643. 11:13:12.438 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  644. 11:13:12.468 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  645. 11:13:12.469 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  646. 11:13:12.469 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  647. 11:13:12.490 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  648. 11:13:12.499 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  649. 11:13:12.510 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  650. 11:13:12.540 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  651. 11:13:12.591 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  652. 11:13:12.592 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  653. 11:13:12.593 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  654. 11:13:12.625 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.965 seconds (process running for 8.777)
  655. 11:13:12.628 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  656. 11:13:12.635 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  657. 11:13:12.958 [restartedMain] INFO p6spy - 2023-08-18 11:13:12 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  658. 11:13:12.963 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c7d952b
  659. 11:13:12.966 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  660. 11:13:13.035 [restartedMain] INFO p6spy - 2023-08-18 11:13:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  661. A.job_id,
  662. A.job_title,
  663. A.job_desc,
  664. A.status,
  665. A.job_type,
  666. A.job_code,
  667. A.job_cron,
  668. A.job_class_id,
  669. B.job_class,
  670. A.cycle_title,
  671. A.cycle_period,
  672. A.cycle_unit
  673. FROM job AS A
  674. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  675. WHERE A.deleted_flag = 0
  676. AND A.status = 1
  677. ORDER BY A.job_id ASC
  678. 11:13:13.056 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  679. 11:13:13.058 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  680. 11:13:13.058 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  681. 11:13:13.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  682. 11:13:13.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  683. 11:13:13.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  684. 11:13:13.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  685. 11:13:13.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  686. 11:13:18.825 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  687. 11:13:18.826 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  688. 11:13:18.840 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  689. 11:13:18.840 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  690. 11:13:18.840 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  691. 11:13:18.858 [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)
  692. 11:13:18.860 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  693. 11:13:18.860 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  694. 11:13:18.860 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  695. 11:13:18.860 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  696. 11:13:18.883 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  697. 11:13:18.887 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  698. 11:14:22.697 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  699. 11:14:22.751 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4180 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  700. 11:14:22.752 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  701. 11:14:22.808 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  702. 11:14:22.808 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  703. 11:14:24.701 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  704. 11:14:24.704 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  705. 11:14:24.798 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  706. 11:14:24.968 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  707. 11:14:24.985 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  708. 11:14:25.732 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  709. 11:14:25.732 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2924 ms
  710. 11:14:28.117 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  711. 11:14:28.127 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  712. 11:14:28.128 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  713. 11:14:28.128 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  714. 11:14:28.129 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  715. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  716. NOT STARTED.
  717. Currently in standby mode.
  718. Number of jobs executed: 0
  719. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  720. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  721. 11:14:28.129 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  722. 11:14:28.129 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  723. 11:14:28.129 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@21203a20
  724. 11:14:29.850 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  725. 11:14:29.856 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  726. 11:14:30.001 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  727. 11:14:30.032 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  728. 11:14:30.032 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  729. 11:14:30.032 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  730. 11:14:30.053 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  731. 11:14:30.062 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  732. 11:14:30.072 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  733. 11:14:30.102 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  734. 11:14:30.154 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  735. 11:14:30.156 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  736. 11:14:30.156 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  737. 11:14:30.181 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.99 seconds (process running for 8.804)
  738. 11:14:30.183 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  739. 11:14:30.191 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  740. 11:14:30.514 [restartedMain] INFO p6spy - 2023-08-18 11:14:30 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  741. 11:14:30.519 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@246ff71c
  742. 11:14:30.530 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  743. 11:14:30.606 [restartedMain] INFO p6spy - 2023-08-18 11:14:30 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  744. A.job_id,
  745. A.job_title,
  746. A.job_desc,
  747. A.status,
  748. A.job_type,
  749. A.job_code,
  750. A.job_cron,
  751. A.job_class_id,
  752. B.job_class,
  753. A.cycle_title,
  754. A.cycle_period,
  755. A.cycle_unit
  756. FROM job AS A
  757. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  758. WHERE A.deleted_flag = 0
  759. AND A.status = 1
  760. ORDER BY A.job_id ASC
  761. 11:14:30.627 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  762. 11:14:30.629 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  763. 11:14:30.630 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  764. 11:14:30.630 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  765. 11:14:30.630 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  766. 11:14:30.631 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  767. 11:14:30.631 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  768. 11:14:30.631 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  769. 11:14:38.216 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  770. 11:14:38.217 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  771. 11:14:38.233 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  772. 11:14:38.233 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  773. 11:14:38.234 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  774. 11:14:38.249 [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)
  775. 11:14:38.251 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  776. 11:14:38.251 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  777. 11:14:38.251 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  778. 11:14:38.251 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  779. 11:14:38.270 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  780. 11:14:38.274 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  781. 11:15:58.725 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  782. 11:15:58.773 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 26132 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  783. 11:15:58.773 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  784. 11:15:58.826 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  785. 11:15:58.827 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  786. 11:16:00.643 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  787. 11:16:00.646 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  788. 11:16:00.735 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  789. 11:16:00.902 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  790. 11:16:00.919 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  791. 11:16:01.665 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  792. 11:16:01.665 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2838 ms
  793. 11:16:04.289 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  794. 11:16:04.301 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  795. 11:16:04.301 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  796. 11:16:04.302 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  797. 11:16:04.303 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  798. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  799. NOT STARTED.
  800. Currently in standby mode.
  801. Number of jobs executed: 0
  802. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  803. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  804. 11:16:04.303 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  805. 11:16:04.303 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  806. 11:16:04.303 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@c4466e0
  807. 11:16:06.165 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  808. 11:16:06.171 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  809. 11:16:06.326 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  810. 11:16:06.360 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  811. 11:16:06.360 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  812. 11:16:06.360 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  813. 11:16:06.385 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  814. 11:16:06.398 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  815. 11:16:06.411 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  816. 11:16:06.446 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  817. 11:16:06.504 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  818. 11:16:06.505 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  819. 11:16:06.506 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  820. 11:16:06.532 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.291 seconds (process running for 9.062)
  821. 11:16:06.535 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  822. 11:16:06.542 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  823. 11:16:06.916 [restartedMain] INFO p6spy - 2023-08-18 11:16:06 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  824. 11:16:06.922 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5d05de23
  825. 11:16:06.933 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  826. 11:16:07.004 [restartedMain] INFO p6spy - 2023-08-18 11:16:07 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  827. A.job_id,
  828. A.job_title,
  829. A.job_desc,
  830. A.status,
  831. A.job_type,
  832. A.job_code,
  833. A.job_cron,
  834. A.job_class_id,
  835. B.job_class,
  836. A.cycle_title,
  837. A.cycle_period,
  838. A.cycle_unit
  839. FROM job AS A
  840. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  841. WHERE A.deleted_flag = 0
  842. AND A.status = 1
  843. ORDER BY A.job_id ASC
  844. 11:16:07.036 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  845. 11:16:07.038 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  846. 11:16:07.039 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  847. 11:16:07.039 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  848. 11:16:07.040 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  849. 11:16:07.040 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  850. 11:16:07.040 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  851. 11:16:07.041 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  852. 11:22:48.306 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  853. 11:22:48.308 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  854. 11:22:48.322 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  855. 11:22:48.322 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  856. 11:22:48.322 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  857. 11:22:48.333 [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)
  858. 11:22:48.334 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  859. 11:22:48.334 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  860. 11:22:48.334 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  861. 11:22:48.335 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  862. 11:22:48.349 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  863. 11:22:48.354 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  864. 11:22:53.047 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  865. 11:22:53.096 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18188 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  866. 11:22:53.097 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  867. 11:22:53.151 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  868. 11:22:53.151 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  869. 11:22:54.983 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  870. 11:22:54.987 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  871. 11:22:55.075 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  872. 11:22:55.248 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  873. 11:22:55.264 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  874. 11:22:56.014 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  875. 11:22:56.014 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2862 ms
  876. 11:22:58.411 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  877. 11:22:58.420 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  878. 11:22:58.421 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  879. 11:22:58.421 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  880. 11:22:58.422 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  881. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  882. NOT STARTED.
  883. Currently in standby mode.
  884. Number of jobs executed: 0
  885. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  886. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  887. 11:22:58.422 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  888. 11:22:58.422 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  889. 11:22:58.422 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@654aa848
  890. 11:23:00.160 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  891. 11:23:00.167 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  892. 11:23:00.313 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  893. 11:23:00.343 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  894. 11:23:00.344 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  895. 11:23:00.344 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  896. 11:23:00.364 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  897. 11:23:00.373 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  898. 11:23:00.383 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  899. 11:23:00.413 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  900. 11:23:00.464 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  901. 11:23:00.465 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  902. 11:23:00.465 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  903. 11:23:00.491 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.939 seconds (process running for 8.677)
  904. 11:23:00.493 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  905. 11:23:00.501 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  906. 11:23:00.832 [restartedMain] INFO p6spy - 2023-08-18 11:23:00 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  907. 11:23:00.836 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@2d8017f3
  908. 11:23:00.847 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  909. 11:23:00.923 [restartedMain] INFO p6spy - 2023-08-18 11:23:00 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  910. A.job_id,
  911. A.job_title,
  912. A.job_desc,
  913. A.status,
  914. A.job_type,
  915. A.job_code,
  916. A.job_cron,
  917. A.job_class_id,
  918. B.job_class,
  919. A.cycle_title,
  920. A.cycle_period,
  921. A.cycle_unit
  922. FROM job AS A
  923. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  924. WHERE A.deleted_flag = 0
  925. AND A.status = 1
  926. ORDER BY A.job_id ASC
  927. 11:23:00.944 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  928. 11:23:00.946 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  929. 11:23:00.946 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  930. 11:23:00.947 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  931. 11:23:00.947 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  932. 11:23:00.947 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  933. 11:23:00.947 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  934. 11:23:00.947 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  935. 11:24:57.831 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  936. 11:24:57.832 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  937. 11:24:57.842 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  938. 11:24:57.843 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  939. 11:24:57.843 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  940. 11:24:57.985 [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)
  941. 11:24:57.986 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  942. 11:24:57.986 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  943. 11:24:57.986 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  944. 11:24:57.986 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  945. 11:24:57.997 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  946. 11:24:58.002 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  947. 11:25:03.565 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  948. 11:25:03.621 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13304 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  949. 11:25:03.621 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  950. 11:25:03.688 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  951. 11:25:03.688 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  952. 11:25:05.657 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  953. 11:25:05.661 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  954. 11:25:05.753 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  955. 11:25:05.936 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  956. 11:25:05.953 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  957. 11:25:06.755 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  958. 11:25:06.756 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3067 ms
  959. 11:25:09.267 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  960. 11:25:09.277 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  961. 11:25:09.277 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  962. 11:25:09.278 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  963. 11:25:09.279 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  964. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  965. NOT STARTED.
  966. Currently in standby mode.
  967. Number of jobs executed: 0
  968. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  969. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  970. 11:25:09.279 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  971. 11:25:09.279 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  972. 11:25:09.279 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  973. 11:25:11.144 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  974. 11:25:11.150 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  975. 11:25:11.308 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  976. 11:25:11.340 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  977. 11:25:11.341 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  978. 11:25:11.341 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  979. 11:25:11.363 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  980. 11:25:11.373 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  981. 11:25:11.384 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  982. 11:25:11.414 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  983. 11:25:11.467 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  984. 11:25:11.467 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  985. 11:25:11.467 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  986. 11:25:11.493 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.482 seconds (process running for 9.295)
  987. 11:25:11.496 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  988. 11:25:11.503 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  989. 11:25:11.872 [restartedMain] INFO p6spy - 2023-08-18 11:25:11 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  990. 11:25:11.876 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6043893a
  991. 11:25:11.888 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  992. 11:25:11.958 [restartedMain] INFO p6spy - 2023-08-18 11:25:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  993. A.job_id,
  994. A.job_title,
  995. A.job_desc,
  996. A.status,
  997. A.job_type,
  998. A.job_code,
  999. A.job_cron,
  1000. A.job_class_id,
  1001. B.job_class,
  1002. A.cycle_title,
  1003. A.cycle_period,
  1004. A.cycle_unit
  1005. FROM job AS A
  1006. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1007. WHERE A.deleted_flag = 0
  1008. AND A.status = 1
  1009. ORDER BY A.job_id ASC
  1010. 11:25:11.980 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1011. 11:25:11.981 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1012. 11:25:11.982 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1013. 11:25:11.982 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1014. 11:25:11.982 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1015. 11:25:11.983 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1016. 11:25:11.983 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1017. 11:25:11.983 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1018. 11:25:12.444 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1019. 11:25:12.444 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1020. 11:25:12.446 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  1021. 11:25:12.454 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-18 11:25:12 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1022. 11:26:24.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1023. 11:26:24.729 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1024. 11:26:24.744 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1025. 11:26:24.746 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1026. 11:26:24.746 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1027. 11:26:24.746 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1028. 11:26:24.757 [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)
  1029. 11:26:24.759 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1030. 11:26:24.759 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1031. 11:26:24.759 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1032. 11:26:24.759 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1033. 11:26:24.773 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1034. 11:26:24.779 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1035. 11:26:51.115 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1036. 11:26:51.165 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 22012 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1037. 11:26:51.165 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1038. 11:26:51.218 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1039. 11:26:51.218 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1040. 11:26:53.043 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1041. 11:26:53.046 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1042. 11:26:53.135 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  1043. 11:26:53.308 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1044. 11:26:53.324 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1045. 11:26:54.083 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1046. 11:26:54.083 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2865 ms
  1047. 11:26:56.495 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1048. 11:26:56.506 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1049. 11:26:56.506 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1050. 11:26:56.507 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1051. 11:26:56.507 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1052. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1053. NOT STARTED.
  1054. Currently in standby mode.
  1055. Number of jobs executed: 0
  1056. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1057. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1058. 11:26:56.507 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1059. 11:26:56.507 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1060. 11:26:56.508 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7fec434e
  1061. 11:26:58.260 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1062. 11:26:58.266 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1063. 11:26:58.411 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1064. 11:26:58.442 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1065. 11:26:58.442 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1066. 11:26:58.442 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1067. 11:26:58.462 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1068. 11:26:58.472 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1069. 11:26:58.483 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1070. 11:26:58.512 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1071. 11:26:58.565 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1072. 11:26:58.567 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1073. 11:26:58.567 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1074. 11:26:58.592 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.971 seconds (process running for 8.625)
  1075. 11:26:58.594 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1076. 11:26:58.601 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1077. 11:26:58.935 [restartedMain] INFO p6spy - 2023-08-18 11:26:58 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  1078. 11:26:58.940 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@64212885
  1079. 11:26:58.951 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1080. 11:26:59.021 [restartedMain] INFO p6spy - 2023-08-18 11:26:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1081. A.job_id,
  1082. A.job_title,
  1083. A.job_desc,
  1084. A.status,
  1085. A.job_type,
  1086. A.job_code,
  1087. A.job_cron,
  1088. A.job_class_id,
  1089. B.job_class,
  1090. A.cycle_title,
  1091. A.cycle_period,
  1092. A.cycle_unit
  1093. FROM job AS A
  1094. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1095. WHERE A.deleted_flag = 0
  1096. AND A.status = 1
  1097. ORDER BY A.job_id ASC
  1098. 11:26:59.044 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1099. 11:26:59.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1100. 11:26:59.047 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1101. 11:26:59.047 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1102. 11:26:59.047 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1103. 11:26:59.047 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1104. 11:26:59.048 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1105. 11:26:59.048 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1106. 11:30:05.193 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1107. 11:30:05.193 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1108. 11:30:05.196 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1109. 11:42:15.891 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1110. 11:42:15.892 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1111. 11:42:15.895 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1112. 11:42:15.899 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1113. 11:42:15.899 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1114. 11:42:15.900 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1115. 11:42:15.909 [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)
  1116. 11:42:15.911 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1117. 11:42:15.911 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1118. 11:42:15.911 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1119. 11:42:15.911 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1120. 11:42:15.927 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1121. 11:42:15.941 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1122. 11:42:21.380 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1123. 11:42:21.431 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 25776 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1124. 11:42:21.432 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1125. 11:42:21.486 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1126. 11:42:21.486 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1127. 11:42:23.353 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1128. 11:42:23.357 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1129. 11:42:23.450 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  1130. 11:42:23.620 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1131. 11:42:23.636 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1132. 11:42:24.387 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1133. 11:42:24.387 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2900 ms
  1134. 11:42:26.788 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1135. 11:42:26.798 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1136. 11:42:26.798 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1137. 11:42:26.799 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1138. 11:42:26.800 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1139. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1140. NOT STARTED.
  1141. Currently in standby mode.
  1142. Number of jobs executed: 0
  1143. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1144. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1145. 11:42:26.800 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1146. 11:42:26.800 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1147. 11:42:26.800 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  1148. 11:42:28.538 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1149. 11:42:28.543 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1150. 11:42:28.690 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1151. 11:42:28.721 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1152. 11:42:28.721 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1153. 11:42:28.722 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1154. 11:42:28.742 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1155. 11:42:28.752 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1156. 11:42:28.763 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1157. 11:42:28.794 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1158. 11:42:28.845 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1159. 11:42:28.846 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1160. 11:42:28.847 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1161. 11:42:28.871 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.977 seconds (process running for 8.785)
  1162. 11:42:28.874 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1163. 11:42:28.881 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1164. 11:42:29.214 [restartedMain] INFO p6spy - 2023-08-18 11:42:29 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  1165. 11:42:29.219 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@fd70f4f
  1166. 11:42:29.222 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1167. 11:42:29.290 [restartedMain] INFO p6spy - 2023-08-18 11:42:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1168. A.job_id,
  1169. A.job_title,
  1170. A.job_desc,
  1171. A.status,
  1172. A.job_type,
  1173. A.job_code,
  1174. A.job_cron,
  1175. A.job_class_id,
  1176. B.job_class,
  1177. A.cycle_title,
  1178. A.cycle_period,
  1179. A.cycle_unit
  1180. FROM job AS A
  1181. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1182. WHERE A.deleted_flag = 0
  1183. AND A.status = 1
  1184. ORDER BY A.job_id ASC
  1185. 11:42:29.310 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1186. 11:42:29.312 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1187. 11:42:29.312 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1188. 11:42:29.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1189. 11:42:29.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1190. 11:42:29.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1191. 11:42:29.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1192. 11:42:29.314 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1193. 11:42:29.861 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-18 11:42:29 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  1194. 11:42:29.873 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1195. 11:42:29.873 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1196. 11:42:29.876 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1197. 11:42:29.877 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-18 11:42:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1198. 11:43:47.690 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1199. 11:43:47.691 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1200. 11:43:47.698 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1201. 11:43:47.700 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1202. 11:43:47.701 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1203. 11:43:47.701 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1204. 11:43:47.709 [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)
  1205. 11:43:47.710 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1206. 11:43:47.710 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1207. 11:43:47.710 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1208. 11:43:47.710 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1209. 11:43:47.723 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1210. 11:43:47.727 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1211. 11:43:50.966 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1212. 11:43:51.017 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 17144 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1213. 11:43:51.017 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1214. 11:43:51.072 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1215. 11:43:51.073 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1216. 11:43:52.921 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1217. 11:43:52.924 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1218. 11:43:53.016 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  1219. 11:43:53.189 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1220. 11:43:53.205 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1221. 11:43:53.959 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1222. 11:43:53.959 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2886 ms
  1223. 11:43:56.320 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1224. 11:43:56.331 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1225. 11:43:56.331 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1226. 11:43:56.331 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1227. 11:43:56.332 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1228. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1229. NOT STARTED.
  1230. Currently in standby mode.
  1231. Number of jobs executed: 0
  1232. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1233. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1234. 11:43:56.332 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1235. 11:43:56.332 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1236. 11:43:56.332 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@29700dab
  1237. 11:43:58.058 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1238. 11:43:58.064 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1239. 11:43:58.208 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1240. 11:43:58.238 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1241. 11:43:58.239 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1242. 11:43:58.239 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1243. 11:43:58.259 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1244. 11:43:58.268 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1245. 11:43:58.279 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1246. 11:43:58.312 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1247. 11:43:58.364 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1248. 11:43:58.365 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1249. 11:43:58.365 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1250. 11:43:58.391 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.964 seconds (process running for 8.786)
  1251. 11:43:58.392 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1252. 11:43:58.400 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1253. 11:43:58.855 [restartedMain] INFO p6spy - 2023-08-18 11:43:58 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1254. 11:43:58.902 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@187cdb30
  1255. 11:43:58.912 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1256. 11:43:58.989 [restartedMain] INFO p6spy - 2023-08-18 11:43:58 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  1257. A.job_id,
  1258. A.job_title,
  1259. A.job_desc,
  1260. A.status,
  1261. A.job_type,
  1262. A.job_code,
  1263. A.job_cron,
  1264. A.job_class_id,
  1265. B.job_class,
  1266. A.cycle_title,
  1267. A.cycle_period,
  1268. A.cycle_unit
  1269. FROM job AS A
  1270. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1271. WHERE A.deleted_flag = 0
  1272. AND A.status = 1
  1273. ORDER BY A.job_id ASC
  1274. 11:43:59.011 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1275. 11:43:59.013 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1276. 11:43:59.013 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1277. 11:43:59.013 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1278. 11:43:59.014 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1279. 11:43:59.014 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1280. 11:43:59.014 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1281. 11:43:59.014 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1282. 11:43:59.503 [RMI TCP Connection(5)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1283. 11:43:59.503 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1284. 11:43:59.505 [RMI TCP Connection(5)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  1285. 11:43:59.618 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-08-18 11:43:59 | Time Consuming: 110 ms | Connection: statement-0 | SQL: SELECT 1
  1286. 11:44:11.737 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1287. 11:44:11.738 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1288. 11:44:11.746 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1289. 11:44:11.749 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1290. 11:44:11.749 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1291. 11:44:11.749 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1292. 11:44:11.756 [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)
  1293. 11:44:11.757 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1294. 11:44:11.757 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1295. 11:44:11.757 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1296. 11:44:11.757 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1297. 11:44:11.773 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1298. 11:44:11.777 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1299. 11:44:16.127 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1300. 11:44:16.175 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19556 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1301. 11:44:16.175 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1302. 11:44:16.229 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1303. 11:44:16.229 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1304. 11:44:18.036 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1305. 11:44:18.039 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1306. 11:44:18.130 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  1307. 11:44:18.304 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1308. 11:44:18.320 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1309. 11:44:19.059 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1310. 11:44:19.060 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2829 ms
  1311. 11:44:21.427 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1312. 11:44:21.437 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1313. 11:44:21.437 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1314. 11:44:21.438 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1315. 11:44:21.439 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1316. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1317. NOT STARTED.
  1318. Currently in standby mode.
  1319. Number of jobs executed: 0
  1320. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1321. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1322. 11:44:21.439 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1323. 11:44:21.439 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1324. 11:44:21.439 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@38bbbbff
  1325. 11:44:23.161 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1326. 11:44:23.166 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1327. 11:44:23.312 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1328. 11:44:23.344 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1329. 11:44:23.344 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1330. 11:44:23.344 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1331. 11:44:23.364 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1332. 11:44:23.373 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1333. 11:44:23.384 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1334. 11:44:23.415 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1335. 11:44:23.467 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1336. 11:44:23.468 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1337. 11:44:23.468 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1338. 11:44:23.493 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.861 seconds (process running for 8.607)
  1339. 11:44:23.495 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1340. 11:44:23.503 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1341. 11:44:23.825 [restartedMain] INFO p6spy - 2023-08-18 11:44:23 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1342. 11:44:23.834 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5b047396
  1343. 11:44:23.845 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1344. 11:44:23.912 [restartedMain] INFO p6spy - 2023-08-18 11:44:23 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1345. A.job_id,
  1346. A.job_title,
  1347. A.job_desc,
  1348. A.status,
  1349. A.job_type,
  1350. A.job_code,
  1351. A.job_cron,
  1352. A.job_class_id,
  1353. B.job_class,
  1354. A.cycle_title,
  1355. A.cycle_period,
  1356. A.cycle_unit
  1357. FROM job AS A
  1358. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1359. WHERE A.deleted_flag = 0
  1360. AND A.status = 1
  1361. ORDER BY A.job_id ASC
  1362. 11:44:23.933 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1363. 11:44:23.935 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1364. 11:44:23.935 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1365. 11:44:23.935 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1366. 11:44:23.936 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1367. 11:44:23.936 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1368. 11:44:23.936 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1369. 11:44:23.936 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1370. 11:44:28.110 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1371. 11:44:28.111 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1372. 11:44:28.122 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1373. 11:44:28.123 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1374. 11:44:28.123 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1375. 11:44:28.129 [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)
  1376. 11:44:28.131 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1377. 11:44:28.131 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1378. 11:44:28.131 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1379. 11:44:28.131 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1380. 11:44:28.144 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1381. 11:44:28.148 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1382. 12:01:20.423 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1383. 12:01:20.474 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19776 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1384. 12:01:20.474 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1385. 12:01:20.531 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1386. 12:01:20.531 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1387. 12:01:22.336 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1388. 12:01:22.340 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1389. 12:01:22.430 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  1390. 12:01:22.600 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1391. 12:01:22.617 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1392. 12:01:23.364 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1393. 12:01:23.364 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2833 ms
  1394. 12:01:25.797 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1395. 12:01:25.807 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1396. 12:01:25.808 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1397. 12:01:25.808 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1398. 12:01:25.809 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1399. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1400. NOT STARTED.
  1401. Currently in standby mode.
  1402. Number of jobs executed: 0
  1403. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1404. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1405. 12:01:25.809 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1406. 12:01:25.809 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1407. 12:01:25.809 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  1408. 12:01:27.514 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1409. 12:01:27.519 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1410. 12:01:27.662 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1411. 12:01:27.692 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1412. 12:01:27.693 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1413. 12:01:27.693 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1414. 12:01:27.714 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1415. 12:01:27.724 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1416. 12:01:27.734 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1417. 12:01:27.764 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1418. 12:01:27.814 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1419. 12:01:27.816 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1420. 12:01:27.816 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1421. 12:01:27.841 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.91 seconds (process running for 8.729)
  1422. 12:01:27.845 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1423. 12:01:27.852 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1424. 12:01:28.171 [restartedMain] INFO p6spy - 2023-08-18 12:01:28 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1425. 12:01:28.175 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c7d952b
  1426. 12:01:28.185 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1427. 12:01:28.263 [restartedMain] INFO p6spy - 2023-08-18 12:01:28 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1428. A.job_id,
  1429. A.job_title,
  1430. A.job_desc,
  1431. A.status,
  1432. A.job_type,
  1433. A.job_code,
  1434. A.job_cron,
  1435. A.job_class_id,
  1436. B.job_class,
  1437. A.cycle_title,
  1438. A.cycle_period,
  1439. A.cycle_unit
  1440. FROM job AS A
  1441. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1442. WHERE A.deleted_flag = 0
  1443. AND A.status = 1
  1444. ORDER BY A.job_id ASC
  1445. 12:01:28.285 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1446. 12:01:28.287 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1447. 12:01:28.287 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1448. 12:01:28.288 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1449. 12:01:28.288 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1450. 12:01:28.288 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1451. 12:01:28.288 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1452. 12:01:28.288 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1453. 12:01:28.889 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1454. 12:01:28.890 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1455. 12:01:28.893 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 12:01:28 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1456. 12:01:28.894 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  1457. 12:01:28.907 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 12:01:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1458. 12:01:35.453 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1459. 12:01:35.454 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1460. 12:01:35.462 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1461. 12:01:35.466 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1462. 12:01:35.466 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1463. 12:01:35.466 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1464. 12:01:35.472 [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)
  1465. 12:01:35.474 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1466. 12:01:35.474 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1467. 12:01:35.491 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1468. 12:01:35.491 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1469. 12:01:35.504 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1470. 12:01:35.508 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1471. 12:08:35.420 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1472. 12:08:35.471 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 17808 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1473. 12:08:35.471 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1474. 12:08:35.533 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1475. 12:08:35.533 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1476. 12:08:37.394 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1477. 12:08:37.397 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1478. 12:08:37.491 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  1479. 12:08:37.666 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1480. 12:08:37.681 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1481. 12:08:38.447 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1482. 12:08:38.448 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2914 ms
  1483. 12:08:41.044 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1484. 12:08:41.055 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1485. 12:08:41.055 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1486. 12:08:41.056 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1487. 12:08:41.056 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1488. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1489. NOT STARTED.
  1490. Currently in standby mode.
  1491. Number of jobs executed: 0
  1492. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1493. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1494. 12:08:41.056 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1495. 12:08:41.056 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1496. 12:08:41.057 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@38bbbbff
  1497. 12:08:42.915 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1498. 12:08:42.921 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1499. 12:08:43.074 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1500. 12:08:43.108 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1501. 12:08:43.109 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1502. 12:08:43.109 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1503. 12:08:43.131 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1504. 12:08:43.141 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1505. 12:08:43.151 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1506. 12:08:43.182 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1507. 12:08:43.238 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1508. 12:08:43.239 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1509. 12:08:43.239 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1510. 12:08:43.265 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.357 seconds (process running for 9.202)
  1511. 12:08:43.268 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1512. 12:08:43.275 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1513. 12:08:43.618 [restartedMain] INFO p6spy - 2023-08-18 12:08:43 | Time Consuming: 21 ms | Connection: statement-0 | SQL: SELECT 1
  1514. 12:08:43.624 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5b047396
  1515. 12:08:43.627 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1516. 12:08:43.704 [restartedMain] INFO p6spy - 2023-08-18 12:08:43 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT
  1517. A.job_id,
  1518. A.job_title,
  1519. A.job_desc,
  1520. A.status,
  1521. A.job_type,
  1522. A.job_code,
  1523. A.job_cron,
  1524. A.job_class_id,
  1525. B.job_class,
  1526. A.cycle_title,
  1527. A.cycle_period,
  1528. A.cycle_unit
  1529. FROM job AS A
  1530. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1531. WHERE A.deleted_flag = 0
  1532. AND A.status = 1
  1533. ORDER BY A.job_id ASC
  1534. 12:08:43.726 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1535. 12:08:43.728 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1536. 12:08:43.728 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1537. 12:08:43.728 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1538. 12:08:43.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1539. 12:08:43.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1540. 12:08:43.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1541. 12:08:43.729 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1542. 12:08:44.248 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 12:08:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1543. 12:08:44.262 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1544. 12:08:44.263 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1545. 12:08:44.266 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1546. 12:08:44.273 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 12:08:44 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1547. 12:10:33.008 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1548. 12:10:33.010 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1549. 12:10:33.018 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1550. 12:10:33.021 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1551. 12:10:33.021 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1552. 12:10:33.021 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1553. 12:10:33.157 [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)
  1554. 12:10:33.158 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1555. 12:10:33.158 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1556. 12:10:33.158 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1557. 12:10:33.158 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1558. 12:10:33.170 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1559. 12:10:33.175 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1560. 12:10:37.886 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1561. 12:10:37.937 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 9548 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1562. 12:10:37.938 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1563. 12:10:37.994 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1564. 12:10:37.994 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1565. 12:10:39.877 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1566. 12:10:39.880 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1567. 12:10:39.972 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  1568. 12:10:40.148 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1569. 12:10:40.165 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1570. 12:10:40.940 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1571. 12:10:40.940 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2945 ms
  1572. 12:10:43.408 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1573. 12:10:43.419 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1574. 12:10:43.419 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1575. 12:10:43.420 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1576. 12:10:43.420 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1577. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1578. NOT STARTED.
  1579. Currently in standby mode.
  1580. Number of jobs executed: 0
  1581. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1582. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1583. 12:10:43.421 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1584. 12:10:43.421 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1585. 12:10:43.421 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  1586. 12:10:45.249 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1587. 12:10:45.256 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1588. 12:10:45.405 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1589. 12:10:45.437 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1590. 12:10:45.437 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1591. 12:10:45.437 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1592. 12:10:45.459 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1593. 12:10:45.468 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1594. 12:10:45.479 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1595. 12:10:45.508 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1596. 12:10:45.561 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1597. 12:10:45.563 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1598. 12:10:45.563 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1599. 12:10:45.589 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.225 seconds (process running for 9.056)
  1600. 12:10:45.591 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1601. 12:10:45.599 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1602. 12:10:45.937 [restartedMain] INFO p6spy - 2023-08-18 12:10:45 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  1603. 12:10:45.942 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c7d952b
  1604. 12:10:45.952 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1605. 12:10:46.021 [restartedMain] INFO p6spy - 2023-08-18 12:10:46 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1606. A.job_id,
  1607. A.job_title,
  1608. A.job_desc,
  1609. A.status,
  1610. A.job_type,
  1611. A.job_code,
  1612. A.job_cron,
  1613. A.job_class_id,
  1614. B.job_class,
  1615. A.cycle_title,
  1616. A.cycle_period,
  1617. A.cycle_unit
  1618. FROM job AS A
  1619. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1620. WHERE A.deleted_flag = 0
  1621. AND A.status = 1
  1622. ORDER BY A.job_id ASC
  1623. 12:10:46.043 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1624. 12:10:46.045 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1625. 12:10:46.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1626. 12:10:46.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1627. 12:10:46.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1628. 12:10:46.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1629. 12:10:46.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1630. 12:10:46.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1631. 12:10:46.852 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1632. 12:10:46.852 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1633. 12:10:46.853 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-18 12:10:46 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  1634. 12:10:46.857 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  1635. 12:10:46.868 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-18 12:10:46 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1636. 12:16:10.401 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1637. 12:16:10.402 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1638. 12:16:10.412 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1639. 12:16:10.414 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1640. 12:16:10.415 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1641. 12:16:10.415 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1642. 12:16:10.426 [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)
  1643. 12:16:10.429 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1644. 12:16:10.429 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1645. 12:16:10.429 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1646. 12:16:10.430 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1647. 12:16:10.449 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1648. 12:16:10.454 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1649. 12:16:15.195 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1650. 12:16:15.245 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 23796 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1651. 12:16:15.246 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1652. 12:16:15.302 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1653. 12:16:15.303 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1654. 12:16:17.161 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1655. 12:16:17.164 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1656. 12:16:17.260 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  1657. 12:16:17.434 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1658. 12:16:17.451 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1659. 12:16:18.219 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1660. 12:16:18.219 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2916 ms
  1661. 12:16:20.727 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1662. 12:16:20.737 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1663. 12:16:20.737 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1664. 12:16:20.738 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1665. 12:16:20.739 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1666. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1667. NOT STARTED.
  1668. Currently in standby mode.
  1669. Number of jobs executed: 0
  1670. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1671. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1672. 12:16:20.739 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1673. 12:16:20.739 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1674. 12:16:20.739 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  1675. 12:16:22.572 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1676. 12:16:22.578 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1677. 12:16:22.735 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1678. 12:16:22.769 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1679. 12:16:22.769 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1680. 12:16:22.770 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1681. 12:16:22.791 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1682. 12:16:22.801 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1683. 12:16:22.812 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1684. 12:16:22.843 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1685. 12:16:22.897 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1686. 12:16:22.899 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1687. 12:16:22.899 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1688. 12:16:22.925 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.257 seconds (process running for 9.113)
  1689. 12:16:22.928 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1690. 12:16:22.936 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1691. 12:16:23.288 [restartedMain] INFO p6spy - 2023-08-18 12:16:23 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  1692. 12:16:23.293 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@fd70f4f
  1693. 12:16:23.296 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1694. 12:16:23.367 [restartedMain] INFO p6spy - 2023-08-18 12:16:23 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1695. A.job_id,
  1696. A.job_title,
  1697. A.job_desc,
  1698. A.status,
  1699. A.job_type,
  1700. A.job_code,
  1701. A.job_cron,
  1702. A.job_class_id,
  1703. B.job_class,
  1704. A.cycle_title,
  1705. A.cycle_period,
  1706. A.cycle_unit
  1707. FROM job AS A
  1708. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1709. WHERE A.deleted_flag = 0
  1710. AND A.status = 1
  1711. ORDER BY A.job_id ASC
  1712. 12:16:23.390 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1713. 12:16:23.392 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1714. 12:16:23.392 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1715. 12:16:23.393 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1716. 12:16:23.393 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1717. 12:16:23.393 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1718. 12:16:23.393 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1719. 12:16:23.394 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1720. 12:16:24.175 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 12:16:24 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1721. 12:16:24.188 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1722. 12:16:24.188 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1723. 12:16:24.192 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1724. 12:16:24.193 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 12:16:24 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  1725. 15:47:50.310 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1726. 15:47:50.312 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1727. 15:47:50.315 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1728. 15:47:50.317 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1729. 15:47:50.317 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1730. 15:47:50.317 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1731. 15:47:50.325 [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)
  1732. 15:47:50.326 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1733. 15:47:50.326 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1734. 15:47:50.326 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1735. 15:47:50.327 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1736. 15:47:50.341 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1737. 15:47:50.361 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1738. 15:50:46.333 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1739. 15:50:46.384 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 24124 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1740. 15:50:46.384 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1741. 15:50:46.438 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1742. 15:50:46.439 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1743. 15:50:48.254 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1744. 15:50:48.258 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1745. 15:50:48.346 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  1746. 15:50:48.517 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1747. 15:50:48.535 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1748. 15:50:49.288 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1749. 15:50:49.289 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2850 ms
  1750. 15:50:51.698 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1751. 15:50:51.708 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1752. 15:50:51.709 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1753. 15:50:51.709 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1754. 15:50:51.710 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1755. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1756. NOT STARTED.
  1757. Currently in standby mode.
  1758. Number of jobs executed: 0
  1759. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1760. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1761. 15:50:51.710 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1762. 15:50:51.710 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1763. 15:50:51.710 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@46313a1f
  1764. 15:50:53.438 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1765. 15:50:53.445 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1766. 15:50:53.593 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1767. 15:50:53.622 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1768. 15:50:53.623 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1769. 15:50:53.623 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1770. 15:50:53.645 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1771. 15:50:53.654 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1772. 15:50:53.665 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1773. 15:50:53.695 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1774. 15:50:53.748 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1688 (http)
  1775. 15:50:53.749 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1776. 15:50:53.749 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1777. 15:50:53.775 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.896 seconds (process running for 9.4)
  1778. 15:50:53.778 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1779. 15:50:53.786 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1780. 15:50:54.128 [restartedMain] INFO p6spy - 2023-08-18 15:50:54 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1781. 15:50:54.133 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@68d32f74
  1782. 15:50:54.143 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1783. 15:50:54.209 [restartedMain] INFO p6spy - 2023-08-18 15:50:54 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1784. A.job_id,
  1785. A.job_title,
  1786. A.job_desc,
  1787. A.status,
  1788. A.job_type,
  1789. A.job_code,
  1790. A.job_cron,
  1791. A.job_class_id,
  1792. B.job_class,
  1793. A.cycle_title,
  1794. A.cycle_period,
  1795. A.cycle_unit
  1796. FROM job AS A
  1797. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1798. WHERE A.deleted_flag = 0
  1799. AND A.status = 1
  1800. ORDER BY A.job_id ASC
  1801. 15:50:54.229 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1802. 15:50:54.231 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1803. 15:50:54.232 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1804. 15:50:54.232 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1805. 15:50:54.232 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1806. 15:50:54.233 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1807. 15:50:54.233 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1808. 15:50:54.233 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1809. 16:42:44.284 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1810. 16:42:44.286 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1811. 16:42:44.297 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1812. 16:42:44.297 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1813. 16:42:44.298 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1814. 16:42:44.304 [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)
  1815. 16:42:44.305 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1816. 16:42:44.305 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1817. 16:42:44.305 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1818. 16:42:44.305 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1819. 16:42:44.318 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1820. 16:42:44.321 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1821. 16:42:48.700 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1822. 16:42:48.749 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 22956 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1823. 16:42:48.750 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1824. 16:42:48.805 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1825. 16:42:48.805 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1826. 16:42:50.627 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1827. 16:42:50.631 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1828. 16:42:50.718 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  1829. 16:42:50.890 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1830. 16:42:50.906 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1831. 16:42:51.651 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1832. 16:42:51.651 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2846 ms
  1833. 16:42:54.034 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1834. 16:42:54.044 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1835. 16:42:54.044 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1836. 16:42:54.045 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1837. 16:42:54.045 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1838. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1839. NOT STARTED.
  1840. Currently in standby mode.
  1841. Number of jobs executed: 0
  1842. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1843. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1844. 16:42:54.045 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1845. 16:42:54.045 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1846. 16:42:54.045 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@654aa848
  1847. 16:42:55.746 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1848. 16:42:55.752 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1849. 16:42:55.899 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1850. 16:42:55.929 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1851. 16:42:55.929 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1852. 16:42:55.930 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1853. 16:42:55.950 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1854. 16:42:55.959 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1855. 16:42:55.969 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1856. 16:42:56.000 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1857. 16:42:56.052 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1858. 16:42:56.053 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1859. 16:42:56.053 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1860. 16:42:56.078 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.867 seconds (process running for 8.595)
  1861. 16:42:56.081 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1862. 16:42:56.088 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1863. 16:42:56.417 [restartedMain] INFO p6spy - 2023-08-18 16:42:56 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1864. 16:42:56.422 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@2d8017f3
  1865. 16:42:56.432 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1866. 16:42:56.498 [restartedMain] INFO p6spy - 2023-08-18 16:42:56 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1867. A.job_id,
  1868. A.job_title,
  1869. A.job_desc,
  1870. A.status,
  1871. A.job_type,
  1872. A.job_code,
  1873. A.job_cron,
  1874. A.job_class_id,
  1875. B.job_class,
  1876. A.cycle_title,
  1877. A.cycle_period,
  1878. A.cycle_unit
  1879. FROM job AS A
  1880. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1881. WHERE A.deleted_flag = 0
  1882. AND A.status = 1
  1883. ORDER BY A.job_id ASC
  1884. 16:42:56.519 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1885. 16:42:56.521 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1886. 16:42:56.521 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1887. 16:42:56.521 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1888. 16:42:56.522 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1889. 16:42:56.522 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1890. 16:42:56.522 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1891. 16:42:56.522 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1892. 16:42:56.820 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1893. 16:42:56.820 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1894. 16:42:56.823 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1895. 16:42:56.828 [RMI TCP Connection(2)-192.168.3.5] INFO p6spy - 2023-08-18 16:42:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1896. 16:50:21.291 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1897. 16:50:21.292 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1898. 16:50:21.301 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1899. 16:50:21.303 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1900. 16:50:21.304 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1901. 16:50:21.304 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1902. 16:50:21.310 [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)
  1903. 16:50:21.311 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1904. 16:50:21.311 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1905. 16:50:21.311 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1906. 16:50:21.311 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1907. 16:50:21.324 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1908. 16:50:21.328 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1909. 16:50:24.282 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1910. 16:50:24.332 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 17456 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1911. 16:50:24.333 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1912. 16:50:24.386 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1913. 16:50:24.386 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1914. 16:50:26.202 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1915. 16:50:26.205 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1916. 16:50:26.296 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  1917. 16:50:26.469 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1918. 16:50:26.486 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1919. 16:50:27.244 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1920. 16:50:27.245 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2857 ms
  1921. 16:50:29.651 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1922. 16:50:29.660 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1923. 16:50:29.661 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1924. 16:50:29.661 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1925. 16:50:29.662 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1926. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1927. NOT STARTED.
  1928. Currently in standby mode.
  1929. Number of jobs executed: 0
  1930. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1931. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1932. 16:50:29.662 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1933. 16:50:29.662 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1934. 16:50:29.662 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15ff0eb8
  1935. 16:50:31.413 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1936. 16:50:31.418 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1937. 16:50:31.568 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1938. 16:50:31.599 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1939. 16:50:31.599 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1940. 16:50:31.599 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1941. 16:50:31.620 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1942. 16:50:31.630 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1943. 16:50:31.640 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1944. 16:50:31.670 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1945. 16:50:31.721 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1946. 16:50:31.723 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1947. 16:50:31.723 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1948. 16:50:31.748 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.951 seconds (process running for 8.684)
  1949. 16:50:31.750 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1950. 16:50:31.757 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1951. 16:50:33.042 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLogger -
  1952. Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
  1953. 16:50:33.072 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1954. 16:50:33.073 [restartedMain] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1955. 16:50:33.081 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1956. 16:50:33.081 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1957. 16:50:33.082 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1958. 16:50:33.087 [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)
  1959. 16:50:33.088 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1960. 16:50:33.088 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1961. 16:50:33.088 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1962. 16:50:33.088 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1963. 16:51:16.783 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1964. 16:51:16.834 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 9828 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1965. 16:51:16.834 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1966. 16:51:16.888 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1967. 16:51:16.888 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1968. 16:51:18.780 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1969. 16:51:18.783 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1970. 16:51:18.876 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  1971. 16:51:19.045 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1972. 16:51:19.063 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1973. 16:51:19.839 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1974. 16:51:19.839 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2950 ms
  1975. 16:51:22.280 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1976. 16:51:22.291 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1977. 16:51:22.292 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1978. 16:51:22.292 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1979. 16:51:22.293 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1980. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1981. NOT STARTED.
  1982. Currently in standby mode.
  1983. Number of jobs executed: 0
  1984. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1985. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1986. 16:51:22.293 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1987. 16:51:22.293 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1988. 16:51:22.293 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15ff0eb8
  1989. 16:51:24.043 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1990. 16:51:24.053 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1991. 16:51:24.216 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1992. 16:51:24.247 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1993. 16:51:24.247 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1994. 16:51:24.247 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1995. 16:51:24.270 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1996. 16:51:24.279 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1997. 16:51:24.290 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1998. 16:51:24.323 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1999. 16:51:24.372 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2000. 16:51:24.374 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2001. 16:51:24.374 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2002. 16:51:24.399 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.106 seconds (process running for 8.839)
  2003. 16:51:24.402 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2004. 16:51:24.410 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2005. 16:51:24.740 [restartedMain] INFO p6spy - 2023-08-18 16:51:24 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2006. 16:51:24.745 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@703a3be
  2007. 16:51:24.755 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2008. 16:51:24.824 [restartedMain] INFO p6spy - 2023-08-18 16:51:24 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  2009. A.job_id,
  2010. A.job_title,
  2011. A.job_desc,
  2012. A.status,
  2013. A.job_type,
  2014. A.job_code,
  2015. A.job_cron,
  2016. A.job_class_id,
  2017. B.job_class,
  2018. A.cycle_title,
  2019. A.cycle_period,
  2020. A.cycle_unit
  2021. FROM job AS A
  2022. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2023. WHERE A.deleted_flag = 0
  2024. AND A.status = 1
  2025. ORDER BY A.job_id ASC
  2026. 16:51:24.845 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2027. 16:51:24.847 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2028. 16:51:24.848 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2029. 16:51:24.848 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2030. 16:51:24.848 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2031. 16:51:24.849 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2032. 16:51:24.849 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2033. 16:51:24.849 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2034. 16:51:25.428 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2035. 16:51:25.428 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2036. 16:51:25.429 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 16:51:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2037. 16:51:25.431 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  2038. 16:51:25.439 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 16:51:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2039. 17:08:33.198 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2040. 17:08:33.199 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2041. 17:08:33.208 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2042. 17:08:33.210 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2043. 17:08:33.210 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2044. 17:08:33.210 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2045. 17:08:33.216 [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)
  2046. 17:08:33.218 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2047. 17:08:33.218 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2048. 17:08:33.218 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2049. 17:08:33.218 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2050. 17:08:33.231 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2051. 17:08:33.234 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2052. 17:13:26.394 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2053. 17:13:26.458 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 7480 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2054. 17:13:26.459 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2055. 17:13:26.536 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2056. 17:13:26.537 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2057. 17:13:28.494 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2058. 17:13:28.498 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2059. 17:13:28.591 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  2060. 17:13:28.767 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2061. 17:13:28.784 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2062. 17:13:29.572 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2063. 17:13:29.572 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3035 ms
  2064. 17:13:31.976 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2065. 17:13:31.986 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2066. 17:13:31.986 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2067. 17:13:31.987 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2068. 17:13:31.987 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2069. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2070. NOT STARTED.
  2071. Currently in standby mode.
  2072. Number of jobs executed: 0
  2073. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2074. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2075. 17:13:31.987 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2076. 17:13:31.987 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2077. 17:13:31.988 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@38bbbbff
  2078. 17:13:33.729 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2079. 17:13:33.880 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2080. 17:13:33.912 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2081. 17:13:33.912 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2082. 17:13:33.912 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2083. 17:13:33.933 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2084. 17:13:33.942 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2085. 17:13:33.952 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2086. 17:13:33.981 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2087. 17:13:34.033 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2088. 17:13:34.034 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2089. 17:13:34.035 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2090. 17:13:34.060 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.254 seconds (process running for 9.124)
  2091. 17:13:34.063 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2092. 17:13:34.070 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2093. 17:13:34.401 [restartedMain] INFO p6spy - 2023-08-18 17:13:34 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2094. 17:13:34.405 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5b047396
  2095. 17:13:34.415 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2096. 17:13:34.484 [restartedMain] INFO p6spy - 2023-08-18 17:13:34 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2097. A.job_id,
  2098. A.job_title,
  2099. A.job_desc,
  2100. A.status,
  2101. A.job_type,
  2102. A.job_code,
  2103. A.job_cron,
  2104. A.job_class_id,
  2105. B.job_class,
  2106. A.cycle_title,
  2107. A.cycle_period,
  2108. A.cycle_unit
  2109. FROM job AS A
  2110. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2111. WHERE A.deleted_flag = 0
  2112. AND A.status = 1
  2113. ORDER BY A.job_id ASC
  2114. 17:13:34.509 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2115. 17:13:34.511 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2116. 17:13:35.223 [RMI TCP Connection(9)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2117. 17:13:35.224 [RMI TCP Connection(9)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2118. 17:13:35.225 [RMI TCP Connection(8)-192.168.3.5] INFO p6spy - 2023-08-18 17:13:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2119. 17:13:35.229 [RMI TCP Connection(9)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  2120. 17:13:35.239 [RMI TCP Connection(8)-192.168.3.5] INFO p6spy - 2023-08-18 17:13:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2121. 17:14:00.007 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2122. 17:15:02.114 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 17:15:02 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  2123. 17:15:05.454 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2124. 17:43:45.341 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2125. 17:43:45.342 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2126. 17:43:45.350 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2127. 17:43:45.352 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2128. 17:43:45.352 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2129. 17:43:45.352 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2130. 17:43:45.359 [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)
  2131. 17:43:45.360 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2132. 17:43:45.360 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2133. 17:43:45.360 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2134. 17:43:45.360 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2135. 17:43:45.377 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2136. 17:43:45.383 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2137. 17:43:54.555 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2138. 17:43:54.603 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 20792 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2139. 17:43:54.604 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2140. 17:43:54.660 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2141. 17:43:54.661 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2142. 17:43:56.437 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2143. 17:43:56.440 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2144. 17:43:56.531 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  2145. 17:43:56.693 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2146. 17:43:56.709 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2147. 17:43:57.419 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2148. 17:43:57.419 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2758 ms
  2149. 17:43:59.810 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2150. 17:43:59.819 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2151. 17:43:59.819 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2152. 17:43:59.820 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2153. 17:43:59.821 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2154. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2155. NOT STARTED.
  2156. Currently in standby mode.
  2157. Number of jobs executed: 0
  2158. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2159. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2160. 17:43:59.821 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2161. 17:43:59.821 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2162. 17:43:59.821 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@22259acf
  2163. 17:44:01.402 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2164. 17:44:01.546 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2165. 17:44:01.574 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2166. 17:44:01.574 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2167. 17:44:01.574 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2168. 17:44:01.594 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2169. 17:44:01.603 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2170. 17:44:01.612 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2171. 17:44:01.642 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2172. 17:44:01.696 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2173. 17:44:01.697 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2174. 17:44:01.697 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2175. 17:44:01.721 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.666 seconds (process running for 8.375)
  2176. 17:44:01.723 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2177. 17:44:01.730 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2178. 17:44:02.037 [restartedMain] INFO p6spy - 2023-08-18 17:44:02 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2179. 17:44:02.042 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@fffb960
  2180. 17:44:02.052 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2181. 17:44:02.115 [restartedMain] INFO p6spy - 2023-08-18 17:44:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2182. A.job_id,
  2183. A.job_title,
  2184. A.job_desc,
  2185. A.status,
  2186. A.job_type,
  2187. A.job_code,
  2188. A.job_cron,
  2189. A.job_class_id,
  2190. B.job_class,
  2191. A.cycle_title,
  2192. A.cycle_period,
  2193. A.cycle_unit
  2194. FROM job AS A
  2195. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2196. WHERE A.deleted_flag = 0
  2197. AND A.status = 1
  2198. ORDER BY A.job_id ASC
  2199. 17:44:02.135 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2200. 17:44:02.137 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2201. 17:44:02.641 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2202. 17:44:02.641 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2203. 17:44:02.646 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  2204. 17:44:02.652 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-18 17:44:02 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2205. 17:44:32.074 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2206. 17:44:32.075 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2207. 17:44:32.082 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2208. 17:44:32.087 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2209. 17:44:32.087 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2210. 17:44:32.087 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2211. 17:44:32.093 [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)
  2212. 17:44:32.094 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2213. 17:44:32.094 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2214. 17:44:32.094 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2215. 17:44:32.094 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2216. 17:44:32.106 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2217. 17:44:32.109 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2218. 17:45:16.719 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2219. 17:45:16.769 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 27472 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2220. 17:45:16.770 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2221. 17:45:16.826 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2222. 17:45:16.826 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2223. 17:45:18.658 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2224. 17:45:18.661 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2225. 17:45:18.748 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  2226. 17:45:18.919 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2227. 17:45:18.935 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2228. 17:45:19.731 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2229. 17:45:19.731 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2904 ms
  2230. 17:45:22.144 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2231. 17:45:22.154 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2232. 17:45:22.155 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2233. 17:45:22.155 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2234. 17:45:22.156 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2235. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2236. NOT STARTED.
  2237. Currently in standby mode.
  2238. Number of jobs executed: 0
  2239. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2240. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2241. 17:45:22.156 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2242. 17:45:22.156 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2243. 17:45:22.156 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5fd39014
  2244. 17:45:23.877 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2245. 17:45:23.883 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2246. 17:45:24.033 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2247. 17:45:24.069 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2248. 17:45:24.069 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2249. 17:45:24.069 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2250. 17:45:24.090 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2251. 17:45:24.100 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2252. 17:45:24.110 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2253. 17:45:24.139 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2254. 17:45:24.190 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2255. 17:45:24.191 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2256. 17:45:24.191 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2257. 17:45:24.217 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.994 seconds (process running for 8.822)
  2258. 17:45:24.219 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2259. 17:45:24.226 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2260. 17:45:24.541 [restartedMain] INFO p6spy - 2023-08-18 17:45:24 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2261. 17:45:24.545 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3ffd9eef
  2262. 17:45:24.555 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2263. 17:45:24.624 [restartedMain] INFO p6spy - 2023-08-18 17:45:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2264. A.job_id,
  2265. A.job_title,
  2266. A.job_desc,
  2267. A.status,
  2268. A.job_type,
  2269. A.job_code,
  2270. A.job_cron,
  2271. A.job_class_id,
  2272. B.job_class,
  2273. A.cycle_title,
  2274. A.cycle_period,
  2275. A.cycle_unit
  2276. FROM job AS A
  2277. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2278. WHERE A.deleted_flag = 0
  2279. AND A.status = 1
  2280. ORDER BY A.job_id ASC
  2281. 17:45:24.645 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2282. 17:45:24.647 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2283. 17:45:25.215 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 17:45:25 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  2284. 17:45:25.217 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2285. 17:45:25.218 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2286. 17:45:25.221 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2287. 17:45:25.227 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 17:45:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2288. 17:46:00.009 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2289. 17:46:00.014 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 17:46:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2290. 17:46:00.030 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2291. 17:46:50.856 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2292. 17:46:50.857 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2293. 17:46:50.864 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2294. 17:46:50.867 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2295. 17:46:50.867 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2296. 17:46:50.867 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2297. 17:46:50.873 [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)
  2298. 17:46:50.874 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2299. 17:46:50.874 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2300. 17:46:50.874 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2301. 17:46:50.874 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2302. 17:46:50.887 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2303. 17:46:50.891 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2304. 17:47:31.318 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2305. 17:47:31.397 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 23912 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2306. 17:47:31.399 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2307. 17:47:31.532 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2308. 17:47:31.532 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2309. 17:47:34.028 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2310. 17:47:34.032 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2311. 17:47:34.126 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  2312. 17:47:34.298 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2313. 17:47:34.314 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2314. 17:47:35.148 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2315. 17:47:35.149 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3616 ms
  2316. 17:47:37.723 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2317. 17:47:37.733 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2318. 17:47:37.733 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2319. 17:47:37.733 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2320. 17:47:37.734 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2321. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2322. NOT STARTED.
  2323. Currently in standby mode.
  2324. Number of jobs executed: 0
  2325. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2326. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2327. 17:47:37.734 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2328. 17:47:37.734 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2329. 17:47:37.734 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  2330. 17:47:39.491 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2331. 17:47:39.652 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2332. 17:47:39.682 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2333. 17:47:39.683 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2334. 17:47:39.683 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2335. 17:47:39.708 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2336. 17:47:39.718 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2337. 17:47:39.729 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2338. 17:47:39.760 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2339. 17:47:39.811 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2340. 17:47:39.812 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2341. 17:47:39.812 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2342. 17:47:39.837 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.184 seconds (process running for 10.122)
  2343. 17:47:39.839 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2344. 17:47:39.847 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2345. 17:47:40.221 [restartedMain] INFO p6spy - 2023-08-18 17:47:40 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  2346. 17:47:40.226 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3854bde
  2347. 17:47:40.230 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2348. 17:47:40.312 [restartedMain] INFO p6spy - 2023-08-18 17:47:40 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2349. A.job_id,
  2350. A.job_title,
  2351. A.job_desc,
  2352. A.status,
  2353. A.job_type,
  2354. A.job_code,
  2355. A.job_cron,
  2356. A.job_class_id,
  2357. B.job_class,
  2358. A.cycle_title,
  2359. A.cycle_period,
  2360. A.cycle_unit
  2361. FROM job AS A
  2362. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2363. WHERE A.deleted_flag = 0
  2364. AND A.status = 1
  2365. ORDER BY A.job_id ASC
  2366. 17:47:40.351 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2367. 17:47:40.355 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2368. 17:47:40.905 [RMI TCP Connection(15)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2369. 17:47:40.906 [RMI TCP Connection(15)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2370. 17:47:40.907 [RMI TCP Connection(14)-192.168.3.5] INFO p6spy - 2023-08-18 17:47:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2371. 17:47:40.910 [RMI TCP Connection(15)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2372. 17:47:40.923 [RMI TCP Connection(14)-192.168.3.5] INFO p6spy - 2023-08-18 17:47:40 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2373. 17:48:00.007 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2374. 17:48:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 17:48:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2375. 17:48:46.096 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2376. 17:50:00.955 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2377. 17:50:00.956 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2378. 17:50:00.964 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2379. 17:50:00.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2380. 17:50:00.966 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2381. 17:50:00.966 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2382. 17:50:00.973 [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)
  2383. 17:50:00.975 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2384. 17:50:00.975 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2385. 17:50:00.975 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2386. 17:50:00.975 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2387. 17:50:00.988 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2388. 17:50:00.993 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2389. 17:55:45.274 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2390. 17:55:45.347 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13132 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2391. 17:55:45.348 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2392. 17:55:45.438 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2393. 17:55:45.439 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2394. 17:55:48.310 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2395. 17:55:48.314 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2396. 17:55:48.429 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 100 ms. Found 0 Redis repository interfaces.
  2397. 17:55:48.627 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2398. 17:55:48.643 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2399. 17:55:49.542 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2400. 17:55:49.542 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4102 ms
  2401. 17:55:52.383 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2402. 17:55:52.396 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2403. 17:55:52.396 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2404. 17:55:52.397 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2405. 17:55:52.397 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2406. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2407. NOT STARTED.
  2408. Currently in standby mode.
  2409. Number of jobs executed: 0
  2410. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2411. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2412. 17:55:52.397 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2413. 17:55:52.397 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2414. 17:55:52.398 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7c504c66
  2415. 17:55:54.442 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2416. 17:55:54.599 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2417. 17:55:54.631 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2418. 17:55:54.631 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2419. 17:55:54.631 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2420. 17:55:54.652 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2421. 17:55:54.661 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2422. 17:55:54.671 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2423. 17:55:54.700 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2424. 17:55:54.750 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2425. 17:55:54.751 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2426. 17:55:54.751 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2427. 17:55:54.776 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 10.106 seconds (process running for 11.072)
  2428. 17:55:54.778 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2429. 17:55:54.785 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2430. 17:55:55.115 [restartedMain] INFO p6spy - 2023-08-18 17:55:55 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2431. 17:55:55.120 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@fd70f4f
  2432. 17:55:55.123 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2433. 17:55:55.194 [restartedMain] INFO p6spy - 2023-08-18 17:55:55 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  2434. A.job_id,
  2435. A.job_title,
  2436. A.job_desc,
  2437. A.status,
  2438. A.job_type,
  2439. A.job_code,
  2440. A.job_cron,
  2441. A.job_class_id,
  2442. B.job_class,
  2443. A.cycle_title,
  2444. A.cycle_period,
  2445. A.cycle_unit
  2446. FROM job AS A
  2447. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2448. WHERE A.deleted_flag = 0
  2449. AND A.status = 1
  2450. ORDER BY A.job_id ASC
  2451. 17:55:55.215 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2452. 17:55:55.216 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2453. 17:55:55.725 [RMI TCP Connection(12)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2454. 17:55:55.726 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2455. 17:55:55.729 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2456. 17:55:55.750 [RMI TCP Connection(13)-192.168.3.5] INFO p6spy - 2023-08-18 17:55:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2457. 17:56:00.007 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2458. 17:56:00.012 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 17:56:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2459. 17:56:05.841 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2460. 17:59:35.307 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2461. 17:59:35.308 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2462. 17:59:35.322 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2463. 17:59:35.324 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2464. 17:59:35.324 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2465. 17:59:35.326 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2466. 17:59:35.503 [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)
  2467. 17:59:35.504 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2468. 17:59:35.504 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2469. 17:59:35.504 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2470. 17:59:35.504 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2471. 17:59:35.517 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2472. 17:59:35.522 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2473. 18:01:31.997 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2474. 18:01:32.060 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16460 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2475. 18:01:32.062 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2476. 18:01:32.147 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2477. 18:01:32.147 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2478. 18:01:34.172 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2479. 18:01:34.175 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2480. 18:01:34.272 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 83 ms. Found 0 Redis repository interfaces.
  2481. 18:01:34.437 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2482. 18:01:34.453 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2483. 18:01:35.216 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2484. 18:01:35.216 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3068 ms
  2485. 18:01:37.626 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2486. 18:01:37.636 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2487. 18:01:37.636 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2488. 18:01:37.637 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2489. 18:01:37.638 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2490. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2491. NOT STARTED.
  2492. Currently in standby mode.
  2493. Number of jobs executed: 0
  2494. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2495. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2496. 18:01:37.638 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2497. 18:01:37.638 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2498. 18:01:37.638 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@46c07b37
  2499. 18:01:39.480 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2500. 18:01:39.627 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2501. 18:01:39.658 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2502. 18:01:39.658 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2503. 18:01:39.658 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2504. 18:01:39.684 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2505. 18:01:39.693 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2506. 18:01:39.703 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2507. 18:01:39.733 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2508. 18:01:39.785 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2509. 18:01:39.787 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2510. 18:01:39.787 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2511. 18:01:39.813 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.54 seconds (process running for 9.666)
  2512. 18:01:39.815 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2513. 18:01:39.823 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2514. 18:01:40.150 [restartedMain] INFO p6spy - 2023-08-18 18:01:40 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  2515. 18:01:40.155 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@2b2287da
  2516. 18:01:40.158 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2517. 18:01:40.244 [restartedMain] INFO p6spy - 2023-08-18 18:01:40 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2518. A.job_id,
  2519. A.job_title,
  2520. A.job_desc,
  2521. A.status,
  2522. A.job_type,
  2523. A.job_code,
  2524. A.job_cron,
  2525. A.job_class_id,
  2526. B.job_class,
  2527. A.cycle_title,
  2528. A.cycle_period,
  2529. A.cycle_unit
  2530. FROM job AS A
  2531. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2532. WHERE A.deleted_flag = 0
  2533. AND A.status = 1
  2534. ORDER BY A.job_id ASC
  2535. 18:01:40.269 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2536. 18:01:40.272 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2537. 18:01:40.642 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2538. 18:01:40.643 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2539. 18:01:40.648 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  2540. 18:01:40.653 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-18 18:01:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2541. 18:01:45.926 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2542. 18:01:45.928 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2543. 18:01:45.941 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2544. 18:01:45.944 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2545. 18:01:45.944 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2546. 18:01:45.945 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2547. 18:01:46.169 [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)
  2548. 18:01:46.170 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2549. 18:01:46.170 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2550. 18:01:46.170 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2551. 18:01:46.170 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2552. 18:01:46.190 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2553. 18:01:46.198 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2554. 18:01:51.511 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2555. 18:01:51.563 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 15732 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2556. 18:01:51.563 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2557. 18:01:51.619 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2558. 18:01:51.619 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2559. 18:01:53.486 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2560. 18:01:53.489 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2561. 18:01:53.583 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  2562. 18:01:53.755 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2563. 18:01:53.771 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2564. 18:01:54.529 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2565. 18:01:54.529 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2910 ms
  2566. 18:01:56.926 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2567. 18:01:56.936 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2568. 18:01:56.937 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2569. 18:01:56.937 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2570. 18:01:56.938 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2571. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2572. NOT STARTED.
  2573. Currently in standby mode.
  2574. Number of jobs executed: 0
  2575. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2576. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2577. 18:01:56.938 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2578. 18:01:56.938 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2579. 18:01:56.938 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  2580. 18:01:59.295 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2581. 18:01:59.455 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2582. 18:01:59.491 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2583. 18:01:59.492 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2584. 18:01:59.492 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2585. 18:01:59.514 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2586. 18:01:59.527 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2587. 18:01:59.540 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2588. 18:01:59.578 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2589. 18:01:59.636 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2590. 18:01:59.637 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2591. 18:01:59.638 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2592. 18:01:59.667 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.67 seconds (process running for 9.621)
  2593. 18:01:59.669 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2594. 18:01:59.677 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2595. 18:02:00.067 [restartedMain] INFO p6spy - 2023-08-18 18:02:00 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT 1
  2596. 18:02:00.072 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3854bde
  2597. 18:02:00.076 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2598. 18:02:00.147 [restartedMain] INFO p6spy - 2023-08-18 18:02:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2599. A.job_id,
  2600. A.job_title,
  2601. A.job_desc,
  2602. A.status,
  2603. A.job_type,
  2604. A.job_code,
  2605. A.job_cron,
  2606. A.job_class_id,
  2607. B.job_class,
  2608. A.cycle_title,
  2609. A.cycle_period,
  2610. A.cycle_unit
  2611. FROM job AS A
  2612. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2613. WHERE A.deleted_flag = 0
  2614. AND A.status = 1
  2615. ORDER BY A.job_id ASC
  2616. 18:02:00.170 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2617. 18:02:00.172 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2618. 18:02:00.178 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2619. 18:02:04.107 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 18:02:04 | Time Consuming: 3 ms | Connection: rollback-0 | SQL:
  2620. 18:02:04.110 [quartzScheduler_Worker-1] INFO org.quartz.core.JobRunShell - Job DEFAULT_JOB_GROUP.Cron任务 threw a JobExecutionException:
  2621. org.quartz.JobExecutionException: null
  2622. at com.zhyc.xps.goaf.job.GoafCheckTaskJob.execute(GoafCheckTaskJob.java:29)
  2623. at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
  2624. at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)
  2625. 18:02:04.754 [RMI TCP Connection(9)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2626. 18:02:04.754 [RMI TCP Connection(9)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2627. 18:02:04.754 [RMI TCP Connection(8)-192.168.3.5] INFO p6spy - 2023-08-18 18:02:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2628. 18:02:04.757 [RMI TCP Connection(9)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2629. 18:02:04.768 [RMI TCP Connection(8)-192.168.3.5] INFO p6spy - 2023-08-18 18:02:04 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2630. 18:03:17.959 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2631. 18:03:17.960 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2632. 18:03:17.969 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2633. 18:03:17.972 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2634. 18:03:17.972 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2635. 18:03:17.972 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2636. 18:03:17.981 [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)
  2637. 18:03:17.982 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2638. 18:03:17.982 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2639. 18:03:17.982 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2640. 18:03:17.983 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2641. 18:03:17.995 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2642. 18:03:17.999 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2643. 18:03:49.046 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2644. 18:03:49.120 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 20244 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2645. 18:03:49.121 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2646. 18:03:49.204 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2647. 18:03:49.204 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2648. 18:03:51.805 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2649. 18:03:51.812 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2650. 18:03:52.105 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 254 ms. Found 0 Redis repository interfaces.
  2651. 18:03:52.794 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2652. 18:03:52.859 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2653. 18:03:55.110 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2654. 18:03:55.110 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 5905 ms
  2655. 18:03:58.776 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2656. 18:03:58.788 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2657. 18:03:58.789 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2658. 18:03:58.789 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2659. 18:03:58.790 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2660. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2661. NOT STARTED.
  2662. Currently in standby mode.
  2663. Number of jobs executed: 0
  2664. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2665. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2666. 18:03:58.790 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2667. 18:03:58.790 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2668. 18:03:58.790 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@785d32a4
  2669. 18:04:01.022 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2670. 18:04:01.205 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2671. 18:04:01.252 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2672. 18:04:01.253 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2673. 18:04:01.253 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2674. 18:04:01.285 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2675. 18:04:01.298 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2676. 18:04:01.315 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2677. 18:04:01.365 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2678. 18:04:01.431 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2679. 18:04:01.433 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2680. 18:04:01.433 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2681. 18:04:01.467 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 13.214 seconds (process running for 14.443)
  2682. 18:04:01.471 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2683. 18:04:01.481 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2684. 18:04:01.974 [restartedMain] INFO p6spy - 2023-08-18 18:04:01 | Time Consuming: 20 ms | Connection: statement-0 | SQL: SELECT 1
  2685. 18:04:01.979 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6ea9b76d
  2686. 18:04:01.986 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2687. 18:04:02.079 [restartedMain] INFO p6spy - 2023-08-18 18:04:02 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  2688. A.job_id,
  2689. A.job_title,
  2690. A.job_desc,
  2691. A.status,
  2692. A.job_type,
  2693. A.job_code,
  2694. A.job_cron,
  2695. A.job_class_id,
  2696. B.job_class,
  2697. A.cycle_title,
  2698. A.cycle_period,
  2699. A.cycle_unit
  2700. FROM job AS A
  2701. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2702. WHERE A.deleted_flag = 0
  2703. AND A.status = 1
  2704. ORDER BY A.job_id ASC
  2705. 18:04:02.109 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2706. 18:04:02.112 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2707. 18:04:02.838 [RMI TCP Connection(16)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2708. 18:04:02.839 [RMI TCP Connection(16)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2709. 18:04:02.840 [RMI TCP Connection(17)-192.168.3.5] INFO p6spy - 2023-08-18 18:04:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2710. 18:04:02.842 [RMI TCP Connection(16)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2711. 18:04:02.853 [RMI TCP Connection(17)-192.168.3.5] INFO p6spy - 2023-08-18 18:04:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2712. 18:04:12.793 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2713. 18:04:12.794 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2714. 18:04:12.801 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2715. 18:04:12.807 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2716. 18:04:12.807 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2717. 18:04:12.808 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2718. 18:04:12.817 [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)
  2719. 18:04:12.819 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2720. 18:04:12.819 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2721. 18:04:12.819 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2722. 18:04:12.819 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2723. 18:04:12.832 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2724. 18:04:12.836 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2725. 18:04:32.191 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2726. 18:04:32.331 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 22184 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2727. 18:04:32.332 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2728. 18:04:32.453 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2729. 18:04:32.453 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2730. 18:04:35.435 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2731. 18:04:35.439 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2732. 18:04:35.549 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 94 ms. Found 0 Redis repository interfaces.
  2733. 18:04:35.753 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2734. 18:04:35.782 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2735. 18:04:37.106 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2736. 18:04:37.107 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4653 ms
  2737. 18:04:40.289 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2738. 18:04:40.302 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2739. 18:04:40.302 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2740. 18:04:40.303 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2741. 18:04:40.304 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2742. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2743. NOT STARTED.
  2744. Currently in standby mode.
  2745. Number of jobs executed: 0
  2746. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2747. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2748. 18:04:40.304 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2749. 18:04:40.304 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2750. 18:04:40.304 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@98c5c12
  2751. 18:04:42.482 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2752. 18:04:42.652 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2753. 18:04:42.690 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2754. 18:04:42.690 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2755. 18:04:42.691 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2756. 18:04:42.717 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2757. 18:04:42.729 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2758. 18:04:42.740 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2759. 18:04:42.775 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2760. 18:04:42.841 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2761. 18:04:42.842 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2762. 18:04:42.842 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2763. 18:04:42.873 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 12.125 seconds (process running for 13.585)
  2764. 18:04:42.876 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2765. 18:04:42.886 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2766. 18:04:46.260 [restartedMain] INFO p6spy - 2023-08-18 18:04:46 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2767. 18:04:46.264 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@187cdb30
  2768. 18:04:46.274 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2769. 18:04:46.342 [restartedMain] INFO p6spy - 2023-08-18 18:04:46 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2770. A.job_id,
  2771. A.job_title,
  2772. A.job_desc,
  2773. A.status,
  2774. A.job_type,
  2775. A.job_code,
  2776. A.job_cron,
  2777. A.job_class_id,
  2778. B.job_class,
  2779. A.cycle_title,
  2780. A.cycle_period,
  2781. A.cycle_unit
  2782. FROM job AS A
  2783. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2784. WHERE A.deleted_flag = 0
  2785. AND A.status = 1
  2786. ORDER BY A.job_id ASC
  2787. 18:04:46.373 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2788. 18:04:46.378 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2789. 18:04:46.762 [RMI TCP Connection(12)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2790. 18:04:46.763 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2791. 18:04:46.766 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2792. 18:04:46.773 [RMI TCP Connection(13)-192.168.3.5] INFO p6spy - 2023-08-18 18:04:46 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2793. 18:05:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2794. 18:05:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 18:05:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2795. 18:05:10.124 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2796. 18:11:14.102 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2797. 18:11:14.103 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2798. 18:11:14.116 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2799. 18:11:14.118 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2800. 18:11:14.118 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2801. 18:11:14.119 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2802. 18:11:14.197 [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)
  2803. 18:11:14.198 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2804. 18:11:14.198 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2805. 18:11:14.198 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2806. 18:11:14.198 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2807. 18:11:14.210 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2808. 18:11:14.214 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2809. 18:11:21.155 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2810. 18:11:21.204 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 20008 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2811. 18:11:21.205 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2812. 18:11:21.259 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2813. 18:11:21.260 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2814. 18:11:23.732 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2815. 18:11:23.739 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2816. 18:11:23.902 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 141 ms. Found 0 Redis repository interfaces.
  2817. 18:11:24.196 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2818. 18:11:24.225 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2819. 18:11:25.196 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2820. 18:11:25.196 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3936 ms
  2821. 18:11:27.941 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2822. 18:11:27.952 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2823. 18:11:27.952 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2824. 18:11:27.953 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2825. 18:11:27.953 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2826. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2827. NOT STARTED.
  2828. Currently in standby mode.
  2829. Number of jobs executed: 0
  2830. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2831. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2832. 18:11:27.953 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2833. 18:11:27.953 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2834. 18:11:27.953 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@abef3d
  2835. 18:11:29.747 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2836. 18:11:29.905 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2837. 18:11:29.941 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2838. 18:11:29.942 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2839. 18:11:29.942 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2840. 18:11:29.966 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2841. 18:11:29.980 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2842. 18:11:29.992 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2843. 18:11:30.028 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2844. 18:11:30.091 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2845. 18:11:30.092 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2846. 18:11:30.093 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2847. 18:11:30.123 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.48 seconds (process running for 10.307)
  2848. 18:11:30.126 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2849. 18:11:30.135 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2850. 18:11:30.475 [restartedMain] INFO p6spy - 2023-08-18 18:11:30 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2851. 18:11:30.479 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3854bde
  2852. 18:11:30.491 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2853. 18:11:30.562 [restartedMain] INFO p6spy - 2023-08-18 18:11:30 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  2854. A.job_id,
  2855. A.job_title,
  2856. A.job_desc,
  2857. A.status,
  2858. A.job_type,
  2859. A.job_code,
  2860. A.job_cron,
  2861. A.job_class_id,
  2862. B.job_class,
  2863. A.cycle_title,
  2864. A.cycle_period,
  2865. A.cycle_unit
  2866. FROM job AS A
  2867. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2868. WHERE A.deleted_flag = 0
  2869. AND A.status = 1
  2870. ORDER BY A.job_id ASC
  2871. 18:11:30.584 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2872. 18:11:30.586 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2873. 18:11:31.233 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-18 18:11:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2874. 18:11:31.248 [RMI TCP Connection(12)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2875. 18:11:31.249 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2876. 18:11:31.252 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2877. 18:11:31.259 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-18 18:11:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2878. 18:12:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2879. 18:12:00.012 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 18:12:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2880. 18:12:05.071 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2881. 18:19:13.722 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:13 | Time Consuming: 5008 ms | Connection: statement-0 | SQL: SELECT 1
  2882. 18:19:18.725 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:18 | Time Consuming: 5002 ms | Connection: statement-1 | SQL: SELECT 1
  2883. 18:19:23.727 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:23 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  2884. 18:19:25.369 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:25 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  2885. 18:19:25.373 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:25 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  2886. 18:19:25.390 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:25 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT
  2887. client_id,
  2888. client_title,
  2889. client_app_id,
  2890. client_app_key,
  2891. client_app_secret,
  2892. client_desc,
  2893. status,
  2894. is_fixed
  2895. FROM client
  2896. WHERE deleted_flag = 0
  2897. AND client_app_id = '10001'
  2898. AND client_app_key = '82a8bf439373e305'
  2899. 18:19:25.404 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:25 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  2900. A.oc_id,
  2901. B.oc_type_id,
  2902. B.oc_name,
  2903. A.account_id,
  2904. A.account_name,
  2905. A.account_real_name,
  2906. A.password,
  2907. A.account_type,
  2908. A.account_staff_no,
  2909. A.account_phone,
  2910. A.account_last_ip,
  2911. A.account_loc,
  2912. A.status,
  2913. A.account_avatar,
  2914. A.account_photo,
  2915. A.account_real_name,
  2916. A.account_intro,
  2917. A.wx_id,
  2918. A.is_fixed
  2919. FROM account AS A
  2920. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2921. WHERE A.deleted_flag = 0
  2922. AND (A.account_name = 'ADMIN003'
  2923. OR A.account_phone = 'ADMIN003'
  2924. OR A.account_mail = 'ADMIN003'
  2925. OR A.account_staff_no = 'ADMIN003')
  2926. 18:19:28.728 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 5001 ms | Connection: statement-5 | SQL: SELECT 1
  2927. 18:19:28.732 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  2928. 18:19:28.740 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  2929. client_id,
  2930. client_title,
  2931. client_app_id,
  2932. client_app_key,
  2933. client_app_secret,
  2934. client_desc,
  2935. status,
  2936. is_fixed
  2937. FROM client
  2938. WHERE deleted_flag = 0
  2939. AND client_app_id = '10001'
  2940. AND client_app_key = '82a8bf439373e305'
  2941. 18:19:28.754 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  2942. A.oc_id,
  2943. B.oc_type_id,
  2944. B.oc_name,
  2945. A.account_id,
  2946. A.account_name,
  2947. A.account_real_name,
  2948. A.password,
  2949. A.account_type,
  2950. A.account_staff_no,
  2951. A.account_phone,
  2952. A.account_last_ip,
  2953. A.account_loc,
  2954. A.status,
  2955. A.account_avatar,
  2956. A.account_photo,
  2957. A.account_real_name,
  2958. A.account_intro,
  2959. A.wx_id,
  2960. A.is_fixed
  2961. FROM account AS A
  2962. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2963. WHERE A.deleted_flag = 0
  2964. AND (A.account_name = 'SXKY'
  2965. OR A.account_phone = 'SXKY'
  2966. OR A.account_mail = 'SXKY'
  2967. OR A.account_staff_no = 'SXKY')
  2968. 18:19:28.760 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  2969. A.oc_id,
  2970. A.oc_name,
  2971. A.oc_type_id,
  2972. A.root_id,
  2973. A.parent_id,
  2974. A.admin_id,
  2975. B.account_name AS admin_name,
  2976. A.group_id,
  2977. A.node_left,
  2978. A.node_right,
  2979. A.node_level,
  2980. A.is_leaf,
  2981. A.status,
  2982. A.if_lic
  2983. FROM oc AS A
  2984. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  2985. WHERE A.oc_id = 406283
  2986. 18:19:28.765 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  2987. A.rm_id,
  2988. A.role_id,
  2989. B.role_type_id,
  2990. B.role_code,
  2991. B.role_name,
  2992. A.account_id
  2993. FROM s_role_member AS A
  2994. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  2995. WHERE account_id = 406283
  2996. LIMIT 1
  2997. 18:19:28.769 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  2998. A.gm_id,
  2999. A.oc_id,
  3000. A.group_id,
  3001. B.group_name,
  3002. B.node_left ,
  3003. B.node_right,
  3004. A.account_id
  3005. FROM s_group_member AS A
  3006. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  3007. WHERE B.deleted_flag = 0
  3008. AND A.oc_id = 406283
  3009. AND A.account_id = 406283
  3010. LIMIT 1
  3011. 18:19:28.774 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  3012. A.gmp_id,
  3013. A.oc_id,
  3014. A.group_id,
  3015. B.group_name,
  3016. A.account_id,
  3017. D.account_name,
  3018. D.account_real_name,
  3019. A.position_id,
  3020. C.position_name
  3021. FROM s_group_member_position A
  3022. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  3023. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  3024. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  3025. WHERE A.deleted_flag = 0
  3026. AND A.oc_id = 406283
  3027. AND A.group_id = 406283
  3028. AND A.account_id = 406283
  3029. LIMIT 1
  3030. 18:19:28.778 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:28 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  3031. A.gmpg_id,
  3032. A.oc_id,
  3033. A.group_id,
  3034. A.account_id,
  3035. A.position_id,
  3036. A.grant_group_id,
  3037. B.group_name AS grant_group_name
  3038. FROM s_group_member_position_grant A
  3039. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  3040. WHERE A.deleted_flag = 0
  3041. AND A.oc_id = 406283
  3042. AND A.group_id = 406283
  3043. AND A.account_id = 406283
  3044. AND A.position_id = 406283
  3045. LIMIT 1
  3046. 18:19:29.067 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:29 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  3047. client_id,
  3048. client_title,
  3049. client_app_id,
  3050. client_app_key,
  3051. client_app_secret,
  3052. client_desc,
  3053. status,
  3054. is_fixed
  3055. FROM client
  3056. WHERE deleted_flag = 0
  3057. AND client_app_id = '10001'
  3058. AND client_app_key = '82a8bf439373e305'
  3059. 18:19:29.081 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:29 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  3060. A.client_id,
  3061. A.role_id,
  3062. A.permit_id,
  3063. A.permit_title,
  3064. A.permit_code,
  3065. A.permit_entry,
  3066. A.permit_desc,
  3067. A.permit_type,
  3068. A.parent_id,
  3069. A.root_id,
  3070. A.sort_no,
  3071. A.is_home
  3072. FROM s_role_permit AS A
  3073. WHERE 1 = 1
  3074. AND A.client_id = 2
  3075. AND A.role_id = 6
  3076. ORDER BY A.parent_id ASC ,A.sort_no ASC
  3077. 18:19:29.553 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:29 | Time Consuming: 27 ms | Connection: statement-6 | SQL: SELECT count(*)
  3078. FROM msg AS M
  3079. WHERE M.oc_id = 406283
  3080. AND (
  3081. EXISTS (
  3082. SELECT 1 FROM msg_to TT
  3083. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3084. ) OR
  3085. EXISTS (
  3086. SELECT 1 FROM msg_cc CC
  3087. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3088. )
  3089. )
  3090. 18:19:30.112 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:30 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3091. 18:19:30.120 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:30 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3092. FROM goaf_devinfo
  3093. where oc_id = 406283
  3094. 18:19:45.141 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:45 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3095. 18:19:45.149 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:45 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  3096. FROM goaf_devinfo
  3097. where oc_id = 406283
  3098. 18:19:46.204 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3099. 18:19:46.213 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  3100. FROM goaf_devinfo
  3101. where oc_id = 406283
  3102. 18:19:46.213 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  3103. 18:19:46.217 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  3104. 18:19:46.217 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3105. 18:19:46.217 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  3106. 18:19:46.225 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 7 ms | Connection: statement-7 | SQL: SELECT *
  3107. FROM goaf_syscfg
  3108. WHERE oc_id = 406283
  3109. 18:19:46.230 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 8 ms | Connection: statement-10 | SQL: SELECT
  3110. A.oc_id,
  3111. A.group_id,
  3112. A.group_name,
  3113. A.group_code,
  3114. A.group_cat_id,
  3115. C.group_cat_title,
  3116. A.node_left,
  3117. A.node_right,
  3118. A.parent_id,
  3119. A.root_id,
  3120. B.group_name as parent_name,
  3121. A.node_level,
  3122. A.is_leaf,
  3123. A.is_fixed,
  3124. A.group_desc
  3125. FROM s_group AS A
  3126. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  3127. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  3128. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  3129. 18:19:46.230 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 7 ms | Connection: statement-8 | SQL: SELECT *
  3130. FROM goaf_baseinfo
  3131. WHERE oc_id = 406283
  3132. 18:19:46.321 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  3133. 18:19:46.329 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:46 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT
  3134. DISTINCT(A.account_id),
  3135. A.gm_id,
  3136. A.oc_id,
  3137. A.group_id,
  3138. B.account_name,
  3139. B.account_real_name,
  3140. B.account_phone,
  3141. B.account_staff_no,
  3142. B.account_avatar,
  3143. B.status,
  3144. B.is_fixed,
  3145. C.group_name,
  3146. C.node_left,
  3147. C.node_right,
  3148. D.gmp_id,
  3149. D.position_id,
  3150. D.position_name,
  3151. E.gmpg_id,
  3152. E.grant_group_id,
  3153. F.group_name as grant_group_name
  3154. FROM
  3155. s_group_member AS A
  3156. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  3157. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  3158. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  3159. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  3160. LEFT JOIN (
  3161. SELECT
  3162. M.oc_id,
  3163. M.account_id,
  3164. M.gmp_id,
  3165. M.group_id,
  3166. M.position_id,
  3167. P.position_name,
  3168. N.gmpg_id,
  3169. N.grant_group_id,
  3170. GP.group_name as grant_group_name
  3171. FROM
  3172. s_group_member_position AS M
  3173. LEFT JOIN s_group_member_position_grant AS N ON (
  3174. M.oc_id = N.oc_id
  3175. AND M.account_id = N.account_id
  3176. AND M.group_id = N.group_id
  3177. AND M.position_id = N.position_id )
  3178. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  3179. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  3180. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  3181. WHERE B.deleted_flag = 0
  3182. AND A.oc_id = 406283
  3183. ORDER BY A.account_id, A.group_id
  3184. LIMIT 999999
  3185. 18:19:47.814 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:47 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3186. 18:19:47.825 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:47 | Time Consuming: 6 ms | Connection: statement-9 | SQL: SELECT *
  3187. FROM goaf_devinfo
  3188. where oc_id = 406283
  3189. 18:19:48.892 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:48 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  3190. 18:19:48.900 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:48 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT *
  3191. FROM goaf_devinfo
  3192. where oc_id = 406283
  3193. 18:19:49.988 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:49 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  3194. 18:19:49.998 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:49 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT *
  3195. FROM goaf_devinfo
  3196. where oc_id = 406283
  3197. 18:19:54.424 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:54 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3198. 18:19:54.432 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:54 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT *
  3199. FROM goaf_devinfo
  3200. where oc_id = 406283
  3201. 18:19:56.911 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:56 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3202. 18:19:56.920 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:56 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT *
  3203. FROM goaf_devinfo
  3204. where oc_id = 406283
  3205. 18:19:59.805 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3206. 18:19:59.805 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3207. 18:19:59.805 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  3208. 18:19:59.805 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  3209. 18:19:59.806 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  3210. 18:19:59.814 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT *
  3211. FROM goaf_devinfo
  3212. where oc_id = 406283
  3213. 18:19:59.814 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  3214. A.oc_id,
  3215. A.group_id,
  3216. A.group_name,
  3217. A.group_code,
  3218. A.group_cat_id,
  3219. C.group_cat_title,
  3220. A.node_left,
  3221. A.node_right,
  3222. A.parent_id,
  3223. A.root_id,
  3224. B.group_name as parent_name,
  3225. A.node_level,
  3226. A.is_leaf,
  3227. A.is_fixed,
  3228. A.group_desc
  3229. FROM s_group AS A
  3230. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  3231. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  3232. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  3233. 18:19:59.814 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT *
  3234. FROM goaf_syscfg
  3235. WHERE oc_id = 406283
  3236. 18:19:59.815 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  3237. FROM goaf_baseinfo
  3238. WHERE oc_id = 406283
  3239. 18:19:59.837 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  3240. 18:19:59.843 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:19:59 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  3241. DISTINCT(A.account_id),
  3242. A.gm_id,
  3243. A.oc_id,
  3244. A.group_id,
  3245. B.account_name,
  3246. B.account_real_name,
  3247. B.account_phone,
  3248. B.account_staff_no,
  3249. B.account_avatar,
  3250. B.status,
  3251. B.is_fixed,
  3252. C.group_name,
  3253. C.node_left,
  3254. C.node_right,
  3255. D.gmp_id,
  3256. D.position_id,
  3257. D.position_name,
  3258. E.gmpg_id,
  3259. E.grant_group_id,
  3260. F.group_name as grant_group_name
  3261. FROM
  3262. s_group_member AS A
  3263. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  3264. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  3265. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  3266. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  3267. LEFT JOIN (
  3268. SELECT
  3269. M.oc_id,
  3270. M.account_id,
  3271. M.gmp_id,
  3272. M.group_id,
  3273. M.position_id,
  3274. P.position_name,
  3275. N.gmpg_id,
  3276. N.grant_group_id,
  3277. GP.group_name as grant_group_name
  3278. FROM
  3279. s_group_member_position AS M
  3280. LEFT JOIN s_group_member_position_grant AS N ON (
  3281. M.oc_id = N.oc_id
  3282. AND M.account_id = N.account_id
  3283. AND M.group_id = N.group_id
  3284. AND M.position_id = N.position_id )
  3285. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  3286. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  3287. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  3288. WHERE B.deleted_flag = 0
  3289. AND A.oc_id = 406283
  3290. ORDER BY A.account_id, A.group_id
  3291. LIMIT 999999
  3292. 18:20:01.091 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:01 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3293. 18:20:01.098 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:01 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3294. FROM goaf_devinfo
  3295. where oc_id = 406283
  3296. 18:20:04.159 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3297. 18:20:04.159 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  3298. 18:20:04.159 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-9 | SQL: SELECT 1
  3299. 18:20:04.159 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  3300. 18:20:04.159 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  3301. 18:20:04.166 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  3302. oc_id,
  3303. map_id,
  3304. map_title,
  3305. map_desc,
  3306. map_cat_id,
  3307. map_raster_layer,
  3308. map_type_id
  3309. FROM ent_map
  3310. WHERE 1 = 1 AND deleted_flag = 0
  3311. AND oc_id = 406283
  3312. 18:20:04.170 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT A.*,
  3313. B.goaf_orebelt,
  3314. B.goaf_orebody,
  3315. B.goaf_oreheight,
  3316. B.goaf_name
  3317. FROM goaf_task AS A
  3318. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  3319. WHERE A.oc_id = 406283
  3320. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  3321. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  3322. 18:20:04.170 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT
  3323. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  3324. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  3325. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  3326. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  3327. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  3328. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  3329. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  3330. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  3331. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  3332. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  3333. FROM goaf_hdanger AS A
  3334. WHERE A.oc_id = 406283 AND A.status != -1
  3335. AND A.hdanger_type = '0'
  3336. ORDER BY A.submit_time DESC
  3337. 18:20:04.171 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  3338. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  3339. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  3340. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  3341. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  3342. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  3343. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  3344. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  3345. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  3346. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  3347. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  3348. FROM goaf_hdanger AS A
  3349. WHERE A.oc_id = 406283 AND A.status != -1
  3350. AND A.hdanger_type = '1'
  3351. ORDER BY A.submit_time DESC
  3352. 18:20:04.173 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT
  3353. A.hdanger_id,
  3354. A.oc_id,
  3355. A.goaf_id,
  3356. A.hdanger_title,
  3357. A.hdanger_level,
  3358. A.hdanger_type,
  3359. A.checklist_id,
  3360. A.hdanger_desc,
  3361. A.submit_group_id,
  3362. A.submit_group_name,
  3363. A.submit_position_id,
  3364. A.submit_position_name,
  3365. A.submit_account_id,
  3366. A.submit_account_name,
  3367. A.submit_time,
  3368. A.review_group_id,
  3369. A.review_group_name,
  3370. A.review_position_id,
  3371. A.review_position_name,
  3372. A.review_account_id,
  3373. A.review_account_name,
  3374. A.danger_deadline,
  3375. A.review_time,
  3376. A.review_remark,
  3377. A.rectify_group_id,
  3378. A.rectify_group_name,
  3379. A.rectify_position_id,
  3380. A.rectify_position_name,
  3381. A.rectify_account_id,
  3382. A.rectify_account_name,
  3383. A.rectify_time,
  3384. A.danger_reason,
  3385. A.rectify_measure,
  3386. A.rectify_remark,
  3387. A.accept_group_id,
  3388. A.accept_group_name,
  3389. A.accept_position_id,
  3390. A.accept_position_name,
  3391. A.accept_account_id,
  3392. A.accept_account_name,
  3393. A.accept_time,
  3394. A.accept_remark,
  3395. A.finish_time,
  3396. A.status,
  3397. B.wf_def_id,
  3398. B.wf_ins_id,
  3399. B.wf_ins_title,
  3400. B.cur_group_id,
  3401. B.cur_group_name,
  3402. B.cur_position_id,
  3403. B.cur_position_name,
  3404. B.cur_account_id,
  3405. B.cur_account_name,
  3406. B.cur_activity_ins_id,
  3407. B.cur_activity_code,
  3408. B.cur_activity_title,
  3409. B.cur_form_code,
  3410. B.cur_activity_begin_time
  3411. FROM goaf_hdanger AS A
  3412. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  3413. WHERE A.oc_id = 406283
  3414. AND A.hdanger_type = '1'
  3415. ORDER BY A.submit_time DESC
  3416. 18:20:04.184 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  3417. COUNT(*) AS 'goafDevTotalNum',
  3418. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  3419. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  3420. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  3421. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  3422. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  3423. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  3424. FROM goaf_devinfo AS A
  3425. WHERE A.oc_id = 406283
  3426. 18:20:04.202 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 2 ms | Connection: statement-6 | SQL: SELECT
  3427. COUNT(*) AS 'goafDevTotalNum',
  3428. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  3429. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  3430. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  3431. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  3432. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  3433. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  3434. FROM goaf_devinfo AS A
  3435. WHERE A.oc_id = 406283
  3436. 18:20:04.214 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT A.goaflayer_id,
  3437. A.oc_id,
  3438. A.goaf_id,
  3439. A.goaf_name,
  3440. A.map_id,
  3441. A.layer_id,
  3442. B.layer_cat_id,
  3443. B.layer_title,
  3444. B.layer_marker,
  3445. B.layer_vector,
  3446. B.layer_vector_type
  3447. FROM goaf_map_layer AS A
  3448. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  3449. WHERE A.oc_id = 406283
  3450. AND A.map_id = '406283'
  3451. 18:20:04.218 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:04 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.*,
  3452. B.goaf_orebelt,
  3453. B.goaf_orebody,
  3454. B.goaf_oreheight,
  3455. B.goaf_name
  3456. FROM goaf_check_record AS A
  3457. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  3458. WHERE A.oc_id = 406283
  3459. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  3460. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  3461. 18:20:17.204 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3462. 18:20:17.243 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:17 | Time Consuming: 34 ms | Connection: statement-6 | SQL: SELECT count(*)
  3463. FROM msg AS M
  3464. WHERE M.oc_id = 406283
  3465. AND (
  3466. EXISTS (
  3467. SELECT 1 FROM msg_to TT
  3468. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3469. ) OR
  3470. EXISTS (
  3471. SELECT 1 FROM msg_cc CC
  3472. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3473. )
  3474. )
  3475. 18:20:17.719 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3476. FROM goaf_devinfo
  3477. where oc_id = 406283
  3478. 18:20:27.928 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:27 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT 1
  3479. 18:20:27.939 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:27 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT
  3480. client_id,
  3481. client_title,
  3482. client_app_id,
  3483. client_app_key,
  3484. client_app_secret,
  3485. client_desc,
  3486. status,
  3487. is_fixed
  3488. FROM client
  3489. WHERE deleted_flag = 0
  3490. AND client_app_id = '10001'
  3491. AND client_app_key = '82a8bf439373e305'
  3492. 18:20:27.982 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:27 | Time Consuming: 11 ms | Connection: statement-6 | SQL: SELECT
  3493. A.oc_id,
  3494. B.oc_type_id,
  3495. B.oc_name,
  3496. A.account_id,
  3497. A.account_name,
  3498. A.account_real_name,
  3499. A.password,
  3500. A.account_type,
  3501. A.account_staff_no,
  3502. A.account_phone,
  3503. A.account_last_ip,
  3504. A.account_loc,
  3505. A.status,
  3506. A.account_avatar,
  3507. A.account_photo,
  3508. A.account_real_name,
  3509. A.account_intro,
  3510. A.wx_id,
  3511. A.is_fixed
  3512. FROM account AS A
  3513. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  3514. WHERE A.deleted_flag = 0
  3515. AND (A.account_name = 'sxky'
  3516. OR A.account_phone = 'sxky'
  3517. OR A.account_mail = 'sxky'
  3518. OR A.account_staff_no = 'sxky')
  3519. 18:20:27.993 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:27 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT
  3520. A.oc_id,
  3521. A.oc_name,
  3522. A.oc_type_id,
  3523. A.root_id,
  3524. A.parent_id,
  3525. A.admin_id,
  3526. B.account_name AS admin_name,
  3527. A.group_id,
  3528. A.node_left,
  3529. A.node_right,
  3530. A.node_level,
  3531. A.is_leaf,
  3532. A.status,
  3533. A.if_lic
  3534. FROM oc AS A
  3535. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  3536. WHERE A.oc_id = 406283
  3537. 18:20:28.005 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT
  3538. A.rm_id,
  3539. A.role_id,
  3540. B.role_type_id,
  3541. B.role_code,
  3542. B.role_name,
  3543. A.account_id
  3544. FROM s_role_member AS A
  3545. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  3546. WHERE account_id = 406283
  3547. LIMIT 1
  3548. 18:20:28.018 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 11 ms | Connection: statement-6 | SQL: SELECT
  3549. A.gm_id,
  3550. A.oc_id,
  3551. A.group_id,
  3552. B.group_name,
  3553. B.node_left ,
  3554. B.node_right,
  3555. A.account_id
  3556. FROM s_group_member AS A
  3557. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  3558. WHERE B.deleted_flag = 0
  3559. AND A.oc_id = 406283
  3560. AND A.account_id = 406283
  3561. LIMIT 1
  3562. 18:20:28.031 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 11 ms | Connection: statement-6 | SQL: SELECT
  3563. A.gmp_id,
  3564. A.oc_id,
  3565. A.group_id,
  3566. B.group_name,
  3567. A.account_id,
  3568. D.account_name,
  3569. D.account_real_name,
  3570. A.position_id,
  3571. C.position_name
  3572. FROM s_group_member_position A
  3573. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  3574. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  3575. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  3576. WHERE A.deleted_flag = 0
  3577. AND A.oc_id = 406283
  3578. AND A.group_id = 406283
  3579. AND A.account_id = 406283
  3580. LIMIT 1
  3581. 18:20:28.043 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT
  3582. A.gmpg_id,
  3583. A.oc_id,
  3584. A.group_id,
  3585. A.account_id,
  3586. A.position_id,
  3587. A.grant_group_id,
  3588. B.group_name AS grant_group_name
  3589. FROM s_group_member_position_grant A
  3590. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  3591. WHERE A.deleted_flag = 0
  3592. AND A.oc_id = 406283
  3593. AND A.group_id = 406283
  3594. AND A.account_id = 406283
  3595. AND A.position_id = 406283
  3596. LIMIT 1
  3597. 18:20:28.106 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT
  3598. client_id,
  3599. client_title,
  3600. client_app_id,
  3601. client_app_key,
  3602. client_app_secret,
  3603. client_desc,
  3604. status,
  3605. is_fixed
  3606. FROM client
  3607. WHERE deleted_flag = 0
  3608. AND client_app_id = '10001'
  3609. AND client_app_key = '82a8bf439373e305'
  3610. 18:20:28.147 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT
  3611. A.client_id,
  3612. A.role_id,
  3613. A.permit_id,
  3614. A.permit_title,
  3615. A.permit_code,
  3616. A.permit_entry,
  3617. A.permit_desc,
  3618. A.permit_type,
  3619. A.parent_id,
  3620. A.root_id,
  3621. A.sort_no,
  3622. A.is_home
  3623. FROM s_role_permit AS A
  3624. WHERE 1 = 1
  3625. AND A.client_id = 2
  3626. AND A.role_id = 6
  3627. ORDER BY A.parent_id ASC ,A.sort_no ASC
  3628. 18:20:28.385 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:28 | Time Consuming: 32 ms | Connection: statement-6 | SQL: SELECT count(*)
  3629. FROM msg AS M
  3630. WHERE M.oc_id = 406283
  3631. AND (
  3632. EXISTS (
  3633. SELECT 1 FROM msg_to TT
  3634. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3635. ) OR
  3636. EXISTS (
  3637. SELECT 1 FROM msg_cc CC
  3638. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3639. )
  3640. )
  3641. 18:20:29.023 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:29 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT 1
  3642. 18:20:29.043 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:29 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT *
  3643. FROM goaf_devinfo
  3644. where oc_id = 406283
  3645. 18:20:46.991 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:20:46 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT 1
  3646. 18:20:46.992 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:46 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3647. 18:20:46.992 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:20:46 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  3648. 18:20:46.992 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:20:46 | Time Consuming: 2 ms | Connection: statement-12 | SQL: SELECT 1
  3649. 18:20:46.992 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:46 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  3650. 18:20:46.992 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:20:46 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  3651. 18:20:47.001 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT
  3652. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  3653. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  3654. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  3655. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  3656. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  3657. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  3658. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  3659. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  3660. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  3661. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  3662. FROM goaf_hdanger AS A
  3663. WHERE A.oc_id = 406283 AND A.status != -1
  3664. AND A.hdanger_type = '0'
  3665. ORDER BY A.submit_time DESC
  3666. 18:20:47.006 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 9 ms | Connection: statement-12 | SQL: SELECT
  3667. COUNT(*) AS 'goafDevTotalNum',
  3668. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  3669. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  3670. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  3671. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  3672. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  3673. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  3674. FROM goaf_devinfo AS A
  3675. WHERE A.oc_id = 406283
  3676. 18:20:47.007 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 10 ms | Connection: statement-10 | SQL: SELECT
  3677. oc_id,
  3678. map_id,
  3679. map_title,
  3680. map_desc,
  3681. map_cat_id,
  3682. map_raster_layer,
  3683. map_type_id
  3684. FROM ent_map
  3685. WHERE 1 = 1 AND deleted_flag = 0
  3686. AND oc_id = 406283
  3687. 18:20:47.007 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 10 ms | Connection: statement-7 | SQL: SELECT A.*,
  3688. B.goaf_orebelt,
  3689. B.goaf_orebody,
  3690. B.goaf_oreheight,
  3691. B.goaf_name
  3692. FROM goaf_task AS A
  3693. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  3694. WHERE A.oc_id = 406283
  3695. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  3696. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  3697. 18:20:47.011 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 10 ms | Connection: statement-8 | SQL: SELECT
  3698. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  3699. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  3700. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  3701. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  3702. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  3703. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  3704. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  3705. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  3706. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  3707. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  3708. FROM goaf_hdanger AS A
  3709. WHERE A.oc_id = 406283 AND A.status != -1
  3710. AND A.hdanger_type = '1'
  3711. ORDER BY A.submit_time DESC
  3712. 18:20:47.012 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 15 ms | Connection: statement-6 | SQL: SELECT
  3713. A.hdanger_id,
  3714. A.oc_id,
  3715. A.goaf_id,
  3716. A.hdanger_title,
  3717. A.hdanger_level,
  3718. A.hdanger_type,
  3719. A.checklist_id,
  3720. A.hdanger_desc,
  3721. A.submit_group_id,
  3722. A.submit_group_name,
  3723. A.submit_position_id,
  3724. A.submit_position_name,
  3725. A.submit_account_id,
  3726. A.submit_account_name,
  3727. A.submit_time,
  3728. A.review_group_id,
  3729. A.review_group_name,
  3730. A.review_position_id,
  3731. A.review_position_name,
  3732. A.review_account_id,
  3733. A.review_account_name,
  3734. A.danger_deadline,
  3735. A.review_time,
  3736. A.review_remark,
  3737. A.rectify_group_id,
  3738. A.rectify_group_name,
  3739. A.rectify_position_id,
  3740. A.rectify_position_name,
  3741. A.rectify_account_id,
  3742. A.rectify_account_name,
  3743. A.rectify_time,
  3744. A.danger_reason,
  3745. A.rectify_measure,
  3746. A.rectify_remark,
  3747. A.accept_group_id,
  3748. A.accept_group_name,
  3749. A.accept_position_id,
  3750. A.accept_position_name,
  3751. A.accept_account_id,
  3752. A.accept_account_name,
  3753. A.accept_time,
  3754. A.accept_remark,
  3755. A.finish_time,
  3756. A.status,
  3757. B.wf_def_id,
  3758. B.wf_ins_id,
  3759. B.wf_ins_title,
  3760. B.cur_group_id,
  3761. B.cur_group_name,
  3762. B.cur_position_id,
  3763. B.cur_position_name,
  3764. B.cur_account_id,
  3765. B.cur_account_name,
  3766. B.cur_activity_ins_id,
  3767. B.cur_activity_code,
  3768. B.cur_activity_title,
  3769. B.cur_form_code,
  3770. B.cur_activity_begin_time
  3771. FROM goaf_hdanger AS A
  3772. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  3773. WHERE A.oc_id = 406283
  3774. AND A.hdanger_type = '1'
  3775. ORDER BY A.submit_time DESC
  3776. 18:20:47.073 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 20 ms | Connection: statement-9 | SQL: SELECT
  3777. COUNT(*) AS 'goafDevTotalNum',
  3778. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  3779. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  3780. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  3781. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  3782. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  3783. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  3784. FROM goaf_devinfo AS A
  3785. WHERE A.oc_id = 406283
  3786. 18:20:47.110 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 14 ms | Connection: statement-6 | SQL: SELECT A.*,
  3787. B.goaf_orebelt,
  3788. B.goaf_orebody,
  3789. B.goaf_oreheight,
  3790. B.goaf_name
  3791. FROM goaf_check_record AS A
  3792. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  3793. WHERE A.oc_id = 406283
  3794. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  3795. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  3796. 18:20:47.110 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:20:47 | Time Consuming: 14 ms | Connection: statement-7 | SQL: SELECT A.goaflayer_id,
  3797. A.oc_id,
  3798. A.goaf_id,
  3799. A.goaf_name,
  3800. A.map_id,
  3801. A.layer_id,
  3802. B.layer_cat_id,
  3803. B.layer_title,
  3804. B.layer_marker,
  3805. B.layer_vector,
  3806. B.layer_vector_type
  3807. FROM goaf_map_layer AS A
  3808. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  3809. WHERE A.oc_id = 406283
  3810. AND A.map_id = '406283'
  3811. 18:21:10.630 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  3812. 18:21:10.635 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  3813. 18:21:10.635 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT 1
  3814. 18:21:10.635 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  3815. 18:21:10.635 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  3816. 18:21:10.635 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT 1
  3817. 18:21:10.640 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  3818. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  3819. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  3820. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  3821. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  3822. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  3823. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  3824. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  3825. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  3826. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  3827. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  3828. FROM goaf_hdanger AS A
  3829. WHERE A.oc_id = 406283 AND A.status != -1
  3830. AND A.hdanger_type = '0'
  3831. ORDER BY A.submit_time DESC
  3832. 18:21:10.646 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT
  3833. oc_id,
  3834. map_id,
  3835. map_title,
  3836. map_desc,
  3837. map_cat_id,
  3838. map_raster_layer,
  3839. map_type_id
  3840. FROM ent_map
  3841. WHERE 1 = 1 AND deleted_flag = 0
  3842. AND oc_id = 406283
  3843. 18:21:10.647 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 6 ms | Connection: statement-9 | SQL: SELECT A.*,
  3844. B.goaf_orebelt,
  3845. B.goaf_orebody,
  3846. B.goaf_oreheight,
  3847. B.goaf_name
  3848. FROM goaf_task AS A
  3849. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  3850. WHERE A.oc_id = 406283
  3851. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  3852. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  3853. 18:21:10.647 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 6 ms | Connection: statement-12 | SQL: SELECT
  3854. COUNT(*) AS 'goafDevTotalNum',
  3855. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  3856. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  3857. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  3858. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  3859. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  3860. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  3861. FROM goaf_devinfo AS A
  3862. WHERE A.oc_id = 406283
  3863. 18:21:10.649 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 8 ms | Connection: statement-10 | SQL: SELECT
  3864. A.hdanger_id,
  3865. A.oc_id,
  3866. A.goaf_id,
  3867. A.hdanger_title,
  3868. A.hdanger_level,
  3869. A.hdanger_type,
  3870. A.checklist_id,
  3871. A.hdanger_desc,
  3872. A.submit_group_id,
  3873. A.submit_group_name,
  3874. A.submit_position_id,
  3875. A.submit_position_name,
  3876. A.submit_account_id,
  3877. A.submit_account_name,
  3878. A.submit_time,
  3879. A.review_group_id,
  3880. A.review_group_name,
  3881. A.review_position_id,
  3882. A.review_position_name,
  3883. A.review_account_id,
  3884. A.review_account_name,
  3885. A.danger_deadline,
  3886. A.review_time,
  3887. A.review_remark,
  3888. A.rectify_group_id,
  3889. A.rectify_group_name,
  3890. A.rectify_position_id,
  3891. A.rectify_position_name,
  3892. A.rectify_account_id,
  3893. A.rectify_account_name,
  3894. A.rectify_time,
  3895. A.danger_reason,
  3896. A.rectify_measure,
  3897. A.rectify_remark,
  3898. A.accept_group_id,
  3899. A.accept_group_name,
  3900. A.accept_position_id,
  3901. A.accept_position_name,
  3902. A.accept_account_id,
  3903. A.accept_account_name,
  3904. A.accept_time,
  3905. A.accept_remark,
  3906. A.finish_time,
  3907. A.status,
  3908. B.wf_def_id,
  3909. B.wf_ins_id,
  3910. B.wf_ins_title,
  3911. B.cur_group_id,
  3912. B.cur_group_name,
  3913. B.cur_position_id,
  3914. B.cur_position_name,
  3915. B.cur_account_id,
  3916. B.cur_account_name,
  3917. B.cur_activity_ins_id,
  3918. B.cur_activity_code,
  3919. B.cur_activity_title,
  3920. B.cur_form_code,
  3921. B.cur_activity_begin_time
  3922. FROM goaf_hdanger AS A
  3923. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  3924. WHERE A.oc_id = 406283
  3925. AND A.hdanger_type = '1'
  3926. ORDER BY A.submit_time DESC
  3927. 18:21:10.650 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 9 ms | Connection: statement-7 | SQL: SELECT
  3928. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  3929. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  3930. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  3931. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  3932. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  3933. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  3934. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  3935. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  3936. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  3937. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  3938. FROM goaf_hdanger AS A
  3939. WHERE A.oc_id = 406283 AND A.status != -1
  3940. AND A.hdanger_type = '1'
  3941. ORDER BY A.submit_time DESC
  3942. 18:21:10.671 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  3943. COUNT(*) AS 'goafDevTotalNum',
  3944. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  3945. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  3946. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  3947. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  3948. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  3949. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  3950. FROM goaf_devinfo AS A
  3951. WHERE A.oc_id = 406283
  3952. 18:21:10.680 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaflayer_id,
  3953. A.oc_id,
  3954. A.goaf_id,
  3955. A.goaf_name,
  3956. A.map_id,
  3957. A.layer_id,
  3958. B.layer_cat_id,
  3959. B.layer_title,
  3960. B.layer_marker,
  3961. B.layer_vector,
  3962. B.layer_vector_type
  3963. FROM goaf_map_layer AS A
  3964. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  3965. WHERE A.oc_id = 406283
  3966. AND A.map_id = '406283'
  3967. 18:21:10.680 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:21:10 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT A.*,
  3968. B.goaf_orebelt,
  3969. B.goaf_orebody,
  3970. B.goaf_oreheight,
  3971. B.goaf_name
  3972. FROM goaf_check_record AS A
  3973. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  3974. WHERE A.oc_id = 406283
  3975. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  3976. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  3977. 18:24:10.991 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:24:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  3978. 18:24:11.026 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:24:11 | Time Consuming: 29 ms | Connection: statement-7 | SQL: SELECT count(*)
  3979. FROM msg AS M
  3980. WHERE M.oc_id = 406283
  3981. AND (
  3982. EXISTS (
  3983. SELECT 1 FROM msg_to TT
  3984. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3985. ) OR
  3986. EXISTS (
  3987. SELECT 1 FROM msg_cc CC
  3988. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3989. )
  3990. )
  3991. 18:24:11.343 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:24:11 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  3992. FROM goaf_devinfo
  3993. where oc_id = 406283
  3994. 18:24:12.886 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  3995. 18:24:12.889 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  3996. 18:24:12.892 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 6 ms | Connection: statement-9 | SQL: SELECT 1
  3997. 18:24:12.892 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT 1
  3998. 18:24:12.892 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT 1
  3999. 18:24:12.898 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  4000. FROM goaf_devinfo
  4001. where oc_id = 406283
  4002. 18:24:12.902 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  4003. FROM goaf_syscfg
  4004. WHERE oc_id = 406283
  4005. 18:24:12.902 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  4006. FROM goaf_baseinfo
  4007. WHERE oc_id = 406283
  4008. 18:24:12.903 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 6 ms | Connection: statement-9 | SQL: SELECT
  4009. A.oc_id,
  4010. A.group_id,
  4011. A.group_name,
  4012. A.group_code,
  4013. A.group_cat_id,
  4014. C.group_cat_title,
  4015. A.node_left,
  4016. A.node_right,
  4017. A.parent_id,
  4018. A.root_id,
  4019. B.group_name as parent_name,
  4020. A.node_level,
  4021. A.is_leaf,
  4022. A.is_fixed,
  4023. A.group_desc
  4024. FROM s_group AS A
  4025. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  4026. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4027. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  4028. 18:24:12.929 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 7 ms | Connection: statement-8 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  4029. 18:24:12.935 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:24:12 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT
  4030. DISTINCT(A.account_id),
  4031. A.gm_id,
  4032. A.oc_id,
  4033. A.group_id,
  4034. B.account_name,
  4035. B.account_real_name,
  4036. B.account_phone,
  4037. B.account_staff_no,
  4038. B.account_avatar,
  4039. B.status,
  4040. B.is_fixed,
  4041. C.group_name,
  4042. C.node_left,
  4043. C.node_right,
  4044. D.gmp_id,
  4045. D.position_id,
  4046. D.position_name,
  4047. E.gmpg_id,
  4048. E.grant_group_id,
  4049. F.group_name as grant_group_name
  4050. FROM
  4051. s_group_member AS A
  4052. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  4053. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  4054. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  4055. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  4056. LEFT JOIN (
  4057. SELECT
  4058. M.oc_id,
  4059. M.account_id,
  4060. M.gmp_id,
  4061. M.group_id,
  4062. M.position_id,
  4063. P.position_name,
  4064. N.gmpg_id,
  4065. N.grant_group_id,
  4066. GP.group_name as grant_group_name
  4067. FROM
  4068. s_group_member_position AS M
  4069. LEFT JOIN s_group_member_position_grant AS N ON (
  4070. M.oc_id = N.oc_id
  4071. AND M.account_id = N.account_id
  4072. AND M.group_id = N.group_id
  4073. AND M.position_id = N.position_id )
  4074. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  4075. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  4076. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  4077. WHERE B.deleted_flag = 0
  4078. AND A.oc_id = 406283
  4079. ORDER BY A.account_id, A.group_id
  4080. LIMIT 999999
  4081. 18:25:29.364 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:25:29 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT 1
  4082. 18:25:29.375 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:25:29 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT *
  4083. FROM goaf_devinfo
  4084. where oc_id = 406283
  4085. 18:25:30.840 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  4086. 18:25:30.841 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  4087. 18:25:30.844 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT 1
  4088. 18:25:30.844 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  4089. 18:25:30.844 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT 1
  4090. 18:25:30.849 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT *
  4091. FROM goaf_devinfo
  4092. where oc_id = 406283
  4093. 18:25:30.850 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT *
  4094. FROM goaf_syscfg
  4095. WHERE oc_id = 406283
  4096. 18:25:30.852 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  4097. FROM goaf_baseinfo
  4098. WHERE oc_id = 406283
  4099. 18:25:30.853 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT
  4100. A.oc_id,
  4101. A.group_id,
  4102. A.group_name,
  4103. A.group_code,
  4104. A.group_cat_id,
  4105. C.group_cat_title,
  4106. A.node_left,
  4107. A.node_right,
  4108. A.parent_id,
  4109. A.root_id,
  4110. B.group_name as parent_name,
  4111. A.node_level,
  4112. A.is_leaf,
  4113. A.is_fixed,
  4114. A.group_desc
  4115. FROM s_group AS A
  4116. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  4117. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4118. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  4119. 18:25:30.880 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  4120. 18:25:30.887 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:30 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT
  4121. DISTINCT(A.account_id),
  4122. A.gm_id,
  4123. A.oc_id,
  4124. A.group_id,
  4125. B.account_name,
  4126. B.account_real_name,
  4127. B.account_phone,
  4128. B.account_staff_no,
  4129. B.account_avatar,
  4130. B.status,
  4131. B.is_fixed,
  4132. C.group_name,
  4133. C.node_left,
  4134. C.node_right,
  4135. D.gmp_id,
  4136. D.position_id,
  4137. D.position_name,
  4138. E.gmpg_id,
  4139. E.grant_group_id,
  4140. F.group_name as grant_group_name
  4141. FROM
  4142. s_group_member AS A
  4143. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  4144. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  4145. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  4146. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  4147. LEFT JOIN (
  4148. SELECT
  4149. M.oc_id,
  4150. M.account_id,
  4151. M.gmp_id,
  4152. M.group_id,
  4153. M.position_id,
  4154. P.position_name,
  4155. N.gmpg_id,
  4156. N.grant_group_id,
  4157. GP.group_name as grant_group_name
  4158. FROM
  4159. s_group_member_position AS M
  4160. LEFT JOIN s_group_member_position_grant AS N ON (
  4161. M.oc_id = N.oc_id
  4162. AND M.account_id = N.account_id
  4163. AND M.group_id = N.group_id
  4164. AND M.position_id = N.position_id )
  4165. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  4166. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  4167. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  4168. WHERE B.deleted_flag = 0
  4169. AND A.oc_id = 406283
  4170. ORDER BY A.account_id, A.group_id
  4171. LIMIT 999999
  4172. 18:25:37.567 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:37 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  4173. 18:25:37.580 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:37 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT *
  4174. FROM goaf_devinfo
  4175. where oc_id = 406283
  4176. 18:25:38.817 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  4177. 18:25:38.817 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  4178. 18:25:38.819 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  4179. 18:25:38.822 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  4180. 18:25:38.822 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  4181. 18:25:38.826 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT *
  4182. FROM goaf_syscfg
  4183. WHERE oc_id = 406283
  4184. 18:25:38.827 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  4185. FROM goaf_devinfo
  4186. where oc_id = 406283
  4187. 18:25:38.831 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  4188. FROM goaf_baseinfo
  4189. WHERE oc_id = 406283
  4190. 18:25:38.833 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT
  4191. A.oc_id,
  4192. A.group_id,
  4193. A.group_name,
  4194. A.group_code,
  4195. A.group_cat_id,
  4196. C.group_cat_title,
  4197. A.node_left,
  4198. A.node_right,
  4199. A.parent_id,
  4200. A.root_id,
  4201. B.group_name as parent_name,
  4202. A.node_level,
  4203. A.is_leaf,
  4204. A.is_fixed,
  4205. A.group_desc
  4206. FROM s_group AS A
  4207. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  4208. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4209. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  4210. 18:25:38.887 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 7 ms | Connection: statement-9 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283) table_count
  4211. 18:25:38.895 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:25:38 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT
  4212. DISTINCT(A.account_id),
  4213. A.gm_id,
  4214. A.oc_id,
  4215. A.group_id,
  4216. B.account_name,
  4217. B.account_real_name,
  4218. B.account_phone,
  4219. B.account_staff_no,
  4220. B.account_avatar,
  4221. B.status,
  4222. B.is_fixed,
  4223. C.group_name,
  4224. C.node_left,
  4225. C.node_right,
  4226. D.gmp_id,
  4227. D.position_id,
  4228. D.position_name,
  4229. E.gmpg_id,
  4230. E.grant_group_id,
  4231. F.group_name as grant_group_name
  4232. FROM
  4233. s_group_member AS A
  4234. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  4235. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  4236. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  4237. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  4238. LEFT JOIN (
  4239. SELECT
  4240. M.oc_id,
  4241. M.account_id,
  4242. M.gmp_id,
  4243. M.group_id,
  4244. M.position_id,
  4245. P.position_name,
  4246. N.gmpg_id,
  4247. N.grant_group_id,
  4248. GP.group_name as grant_group_name
  4249. FROM
  4250. s_group_member_position AS M
  4251. LEFT JOIN s_group_member_position_grant AS N ON (
  4252. M.oc_id = N.oc_id
  4253. AND M.account_id = N.account_id
  4254. AND M.group_id = N.group_id
  4255. AND M.position_id = N.position_id )
  4256. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  4257. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  4258. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  4259. WHERE B.deleted_flag = 0
  4260. AND A.oc_id = 406283
  4261. ORDER BY A.account_id, A.group_id
  4262. LIMIT 999999
  4263. 18:26:00.139 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT 1
  4264. 18:26:00.139 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  4265. 18:26:00.139 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  4266. 18:26:00.140 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  4267. 18:26:00.142 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT 1
  4268. 18:26:00.152 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT
  4269. oc_id,
  4270. map_id,
  4271. map_title,
  4272. map_desc,
  4273. map_cat_id,
  4274. map_raster_layer,
  4275. map_type_id
  4276. FROM ent_map
  4277. WHERE 1 = 1 AND deleted_flag = 0
  4278. AND oc_id = 406283
  4279. 18:26:00.152 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT A.*,
  4280. B.goaf_orebelt,
  4281. B.goaf_orebody,
  4282. B.goaf_oreheight,
  4283. B.goaf_name
  4284. FROM goaf_task AS A
  4285. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4286. WHERE A.oc_id = 406283
  4287. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  4288. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  4289. 18:26:00.152 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT
  4290. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4291. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4292. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4293. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4294. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4295. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4296. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4297. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4298. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4299. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4300. FROM goaf_hdanger AS A
  4301. WHERE A.oc_id = 406283 AND A.status != -1
  4302. AND A.hdanger_type = '0'
  4303. ORDER BY A.submit_time DESC
  4304. 18:26:00.152 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT
  4305. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4306. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4307. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4308. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4309. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4310. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4311. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4312. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4313. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4314. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4315. FROM goaf_hdanger AS A
  4316. WHERE A.oc_id = 406283 AND A.status != -1
  4317. AND A.hdanger_type = '1'
  4318. ORDER BY A.submit_time DESC
  4319. 18:26:00.156 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 8 ms | Connection: statement-7 | SQL: SELECT
  4320. A.hdanger_id,
  4321. A.oc_id,
  4322. A.goaf_id,
  4323. A.hdanger_title,
  4324. A.hdanger_level,
  4325. A.hdanger_type,
  4326. A.checklist_id,
  4327. A.hdanger_desc,
  4328. A.submit_group_id,
  4329. A.submit_group_name,
  4330. A.submit_position_id,
  4331. A.submit_position_name,
  4332. A.submit_account_id,
  4333. A.submit_account_name,
  4334. A.submit_time,
  4335. A.review_group_id,
  4336. A.review_group_name,
  4337. A.review_position_id,
  4338. A.review_position_name,
  4339. A.review_account_id,
  4340. A.review_account_name,
  4341. A.danger_deadline,
  4342. A.review_time,
  4343. A.review_remark,
  4344. A.rectify_group_id,
  4345. A.rectify_group_name,
  4346. A.rectify_position_id,
  4347. A.rectify_position_name,
  4348. A.rectify_account_id,
  4349. A.rectify_account_name,
  4350. A.rectify_time,
  4351. A.danger_reason,
  4352. A.rectify_measure,
  4353. A.rectify_remark,
  4354. A.accept_group_id,
  4355. A.accept_group_name,
  4356. A.accept_position_id,
  4357. A.accept_position_name,
  4358. A.accept_account_id,
  4359. A.accept_account_name,
  4360. A.accept_time,
  4361. A.accept_remark,
  4362. A.finish_time,
  4363. A.status,
  4364. B.wf_def_id,
  4365. B.wf_ins_id,
  4366. B.wf_ins_title,
  4367. B.cur_group_id,
  4368. B.cur_group_name,
  4369. B.cur_position_id,
  4370. B.cur_position_name,
  4371. B.cur_account_id,
  4372. B.cur_account_name,
  4373. B.cur_activity_ins_id,
  4374. B.cur_activity_code,
  4375. B.cur_activity_title,
  4376. B.cur_form_code,
  4377. B.cur_activity_begin_time
  4378. FROM goaf_hdanger AS A
  4379. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  4380. WHERE A.oc_id = 406283
  4381. AND A.hdanger_type = '1'
  4382. ORDER BY A.submit_time DESC
  4383. 18:26:00.171 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  4384. COUNT(*) AS 'goafDevTotalNum',
  4385. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4386. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4387. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4388. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4389. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4390. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4391. FROM goaf_devinfo AS A
  4392. WHERE A.oc_id = 406283
  4393. 18:26:00.186 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT A.*,
  4394. B.goaf_orebelt,
  4395. B.goaf_orebody,
  4396. B.goaf_oreheight,
  4397. B.goaf_name
  4398. FROM goaf_check_record AS A
  4399. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4400. WHERE A.oc_id = 406283
  4401. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  4402. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  4403. 18:26:00.192 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT A.goaflayer_id,
  4404. A.oc_id,
  4405. A.goaf_id,
  4406. A.goaf_name,
  4407. A.map_id,
  4408. A.layer_id,
  4409. B.layer_cat_id,
  4410. B.layer_title,
  4411. B.layer_marker,
  4412. B.layer_vector,
  4413. B.layer_vector_type
  4414. FROM goaf_map_layer AS A
  4415. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  4416. WHERE A.oc_id = 406283
  4417. AND A.map_id = '406283'
  4418. 18:26:00.208 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:26:00 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  4419. COUNT(*) AS 'goafDevTotalNum',
  4420. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4421. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4422. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4423. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4424. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4425. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4426. FROM goaf_devinfo AS A
  4427. WHERE A.oc_id = 406283
  4428. 18:29:31.448 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:29:31 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  4429. 18:29:31.448 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:29:31 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT 1
  4430. 18:29:31.459 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:29:31 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  4431. COUNT(*) AS 'goafDevTotalNum',
  4432. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4433. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4434. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4435. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4436. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4437. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4438. FROM goaf_devinfo AS A
  4439. WHERE A.oc_id = 406283
  4440. 18:29:31.459 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:29:31 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT
  4441. COUNT(*) AS 'goafDevTotalNum',
  4442. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4443. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4444. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4445. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4446. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4447. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4448. FROM goaf_devinfo AS A
  4449. WHERE A.oc_id = 406283
  4450. 18:29:56.638 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:29:56 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  4451. 18:29:56.645 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:29:56 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  4452. 18:29:56.647 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:29:56 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT
  4453. COUNT(*) AS 'goafDevTotalNum',
  4454. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4455. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4456. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4457. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4458. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4459. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4460. FROM goaf_devinfo AS A
  4461. WHERE A.oc_id = 406283
  4462. 18:29:56.655 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:29:56 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT
  4463. COUNT(*) AS 'goafDevTotalNum',
  4464. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4465. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4466. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4467. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4468. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4469. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4470. FROM goaf_devinfo AS A
  4471. WHERE A.oc_id = 406283
  4472. 18:30:00.083 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT 1
  4473. 18:30:00.094 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  4474. client_id,
  4475. client_title,
  4476. client_app_id,
  4477. client_app_key,
  4478. client_app_secret,
  4479. client_desc,
  4480. status,
  4481. is_fixed
  4482. FROM client
  4483. WHERE deleted_flag = 0
  4484. AND client_app_id = '10001'
  4485. AND client_app_key = '82a8bf439373e305'
  4486. 18:30:00.114 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 6 ms | Connection: statement-16 | SQL: SELECT
  4487. A.client_id,
  4488. A.role_id,
  4489. A.permit_id,
  4490. A.permit_title,
  4491. A.permit_code,
  4492. A.permit_entry,
  4493. A.permit_desc,
  4494. A.permit_type,
  4495. A.parent_id,
  4496. A.root_id,
  4497. A.sort_no,
  4498. A.is_home
  4499. FROM s_role_permit AS A
  4500. WHERE 1 = 1
  4501. AND A.client_id = 2
  4502. AND A.role_id = 6
  4503. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4504. 18:30:00.315 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  4505. 18:30:00.316 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  4506. 18:30:00.318 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 6 ms | Connection: statement-18 | SQL: SELECT 1
  4507. 18:30:00.318 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 6 ms | Connection: statement-20 | SQL: SELECT 1
  4508. 18:30:00.320 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  4509. oc_id,
  4510. map_id,
  4511. map_title,
  4512. map_desc,
  4513. map_cat_id,
  4514. map_raster_layer,
  4515. map_type_id
  4516. FROM ent_map
  4517. WHERE 1 = 1 AND deleted_flag = 0
  4518. AND oc_id = 406283
  4519. 18:30:00.328 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT A.*,
  4520. B.goaf_orebelt,
  4521. B.goaf_orebody,
  4522. B.goaf_oreheight,
  4523. B.goaf_name
  4524. FROM goaf_task AS A
  4525. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4526. WHERE A.oc_id = 406283
  4527. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  4528. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  4529. 18:30:00.330 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 6 ms | Connection: statement-17 | SQL: SELECT
  4530. COUNT(*) AS 'goafDevTotalNum',
  4531. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4532. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4533. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4534. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4535. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4536. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4537. FROM goaf_devinfo AS A
  4538. WHERE A.oc_id = 406283
  4539. 18:30:00.331 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 7 ms | Connection: statement-20 | SQL: SELECT
  4540. A.hdanger_id,
  4541. A.oc_id,
  4542. A.goaf_id,
  4543. A.hdanger_title,
  4544. A.hdanger_level,
  4545. A.hdanger_type,
  4546. A.checklist_id,
  4547. A.hdanger_desc,
  4548. A.submit_group_id,
  4549. A.submit_group_name,
  4550. A.submit_position_id,
  4551. A.submit_position_name,
  4552. A.submit_account_id,
  4553. A.submit_account_name,
  4554. A.submit_time,
  4555. A.review_group_id,
  4556. A.review_group_name,
  4557. A.review_position_id,
  4558. A.review_position_name,
  4559. A.review_account_id,
  4560. A.review_account_name,
  4561. A.danger_deadline,
  4562. A.review_time,
  4563. A.review_remark,
  4564. A.rectify_group_id,
  4565. A.rectify_group_name,
  4566. A.rectify_position_id,
  4567. A.rectify_position_name,
  4568. A.rectify_account_id,
  4569. A.rectify_account_name,
  4570. A.rectify_time,
  4571. A.danger_reason,
  4572. A.rectify_measure,
  4573. A.rectify_remark,
  4574. A.accept_group_id,
  4575. A.accept_group_name,
  4576. A.accept_position_id,
  4577. A.accept_position_name,
  4578. A.accept_account_id,
  4579. A.accept_account_name,
  4580. A.accept_time,
  4581. A.accept_remark,
  4582. A.finish_time,
  4583. A.status,
  4584. B.wf_def_id,
  4585. B.wf_ins_id,
  4586. B.wf_ins_title,
  4587. B.cur_group_id,
  4588. B.cur_group_name,
  4589. B.cur_position_id,
  4590. B.cur_position_name,
  4591. B.cur_account_id,
  4592. B.cur_account_name,
  4593. B.cur_activity_ins_id,
  4594. B.cur_activity_code,
  4595. B.cur_activity_title,
  4596. B.cur_form_code,
  4597. B.cur_activity_begin_time
  4598. FROM goaf_hdanger AS A
  4599. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  4600. WHERE A.oc_id = 406283
  4601. AND A.hdanger_type = '1'
  4602. ORDER BY A.submit_time DESC
  4603. 18:30:00.334 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 10 ms | Connection: statement-18 | SQL: SELECT
  4604. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4605. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4606. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4607. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4608. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4609. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4610. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4611. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4612. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4613. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4614. FROM goaf_hdanger AS A
  4615. WHERE A.oc_id = 406283 AND A.status != -1
  4616. AND A.hdanger_type = '1'
  4617. ORDER BY A.submit_time DESC
  4618. 18:30:00.345 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT
  4619. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4620. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4621. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4622. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4623. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4624. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4625. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4626. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4627. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4628. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4629. FROM goaf_hdanger AS A
  4630. WHERE A.oc_id = 406283 AND A.status != -1
  4631. AND A.hdanger_type = '0'
  4632. ORDER BY A.submit_time DESC
  4633. 18:30:00.372 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 20 ms | Connection: statement-18 | SQL: SELECT
  4634. COUNT(*) AS 'goafDevTotalNum',
  4635. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4636. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4637. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4638. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4639. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4640. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4641. FROM goaf_devinfo AS A
  4642. WHERE A.oc_id = 406283
  4643. 18:30:00.407 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 4 ms | Connection: statement-18 | SQL: SELECT A.*,
  4644. B.goaf_orebelt,
  4645. B.goaf_orebody,
  4646. B.goaf_oreheight,
  4647. B.goaf_name
  4648. FROM goaf_check_record AS A
  4649. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4650. WHERE A.oc_id = 406283
  4651. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  4652. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  4653. 18:30:00.407 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:30:00 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT A.goaflayer_id,
  4654. A.oc_id,
  4655. A.goaf_id,
  4656. A.goaf_name,
  4657. A.map_id,
  4658. A.layer_id,
  4659. B.layer_cat_id,
  4660. B.layer_title,
  4661. B.layer_marker,
  4662. B.layer_vector,
  4663. B.layer_vector_type
  4664. FROM goaf_map_layer AS A
  4665. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  4666. WHERE A.oc_id = 406283
  4667. AND A.map_id = '406283'
  4668. 18:30:23.691 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:30:23 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  4669. 18:30:23.704 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:30:23 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  4670. COUNT(*) AS 'goafDevTotalNum',
  4671. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4672. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4673. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4674. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4675. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4676. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4677. FROM goaf_devinfo AS A
  4678. WHERE A.oc_id = 406283
  4679. 18:30:23.706 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:23 | Time Consuming: 4 ms | Connection: statement-18 | SQL: SELECT 1
  4680. 18:30:23.717 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:23 | Time Consuming: 4 ms | Connection: statement-18 | SQL: SELECT
  4681. COUNT(*) AS 'goafDevTotalNum',
  4682. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4683. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4684. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4685. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4686. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4687. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4688. FROM goaf_devinfo AS A
  4689. WHERE A.oc_id = 406283
  4690. 18:30:27.218 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 3 ms | Connection: statement-18 | SQL: SELECT 1
  4691. 18:30:27.226 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 3 ms | Connection: statement-18 | SQL: SELECT
  4692. client_id,
  4693. client_title,
  4694. client_app_id,
  4695. client_app_key,
  4696. client_app_secret,
  4697. client_desc,
  4698. status,
  4699. is_fixed
  4700. FROM client
  4701. WHERE deleted_flag = 0
  4702. AND client_app_id = '10001'
  4703. AND client_app_key = '82a8bf439373e305'
  4704. 18:30:27.240 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-18 | SQL: SELECT
  4705. A.client_id,
  4706. A.role_id,
  4707. A.permit_id,
  4708. A.permit_title,
  4709. A.permit_code,
  4710. A.permit_entry,
  4711. A.permit_desc,
  4712. A.permit_type,
  4713. A.parent_id,
  4714. A.root_id,
  4715. A.sort_no,
  4716. A.is_home
  4717. FROM s_role_permit AS A
  4718. WHERE 1 = 1
  4719. AND A.client_id = 2
  4720. AND A.role_id = 6
  4721. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4722. 18:30:27.422 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  4723. 18:30:27.422 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  4724. 18:30:27.422 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  4725. 18:30:27.422 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  4726. 18:30:27.422 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  4727. 18:30:27.427 [XNIO-1 task-2] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-18 | SQL: SELECT
  4728. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4729. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4730. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4731. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4732. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4733. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4734. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4735. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4736. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4737. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4738. FROM goaf_hdanger AS A
  4739. WHERE A.oc_id = 406283 AND A.status != -1
  4740. AND A.hdanger_type = '0'
  4741. ORDER BY A.submit_time DESC
  4742. 18:30:27.433 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 5 ms | Connection: statement-21 | SQL: SELECT
  4743. COUNT(*) AS 'goafDevTotalNum',
  4744. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4745. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4746. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4747. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4748. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4749. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4750. FROM goaf_devinfo AS A
  4751. WHERE A.oc_id = 406283
  4752. 18:30:27.433 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT
  4753. oc_id,
  4754. map_id,
  4755. map_title,
  4756. map_desc,
  4757. map_cat_id,
  4758. map_raster_layer,
  4759. map_type_id
  4760. FROM ent_map
  4761. WHERE 1 = 1 AND deleted_flag = 0
  4762. AND oc_id = 406283
  4763. 18:30:27.434 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 7 ms | Connection: statement-20 | SQL: SELECT A.*,
  4764. B.goaf_orebelt,
  4765. B.goaf_orebody,
  4766. B.goaf_oreheight,
  4767. B.goaf_name
  4768. FROM goaf_task AS A
  4769. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4770. WHERE A.oc_id = 406283
  4771. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  4772. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  4773. 18:30:27.434 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 6 ms | Connection: statement-16 | SQL: SELECT
  4774. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4775. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4776. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4777. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4778. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4779. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4780. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4781. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4782. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4783. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4784. FROM goaf_hdanger AS A
  4785. WHERE A.oc_id = 406283 AND A.status != -1
  4786. AND A.hdanger_type = '1'
  4787. ORDER BY A.submit_time DESC
  4788. 18:30:27.435 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 7 ms | Connection: statement-17 | SQL: SELECT
  4789. A.hdanger_id,
  4790. A.oc_id,
  4791. A.goaf_id,
  4792. A.hdanger_title,
  4793. A.hdanger_level,
  4794. A.hdanger_type,
  4795. A.checklist_id,
  4796. A.hdanger_desc,
  4797. A.submit_group_id,
  4798. A.submit_group_name,
  4799. A.submit_position_id,
  4800. A.submit_position_name,
  4801. A.submit_account_id,
  4802. A.submit_account_name,
  4803. A.submit_time,
  4804. A.review_group_id,
  4805. A.review_group_name,
  4806. A.review_position_id,
  4807. A.review_position_name,
  4808. A.review_account_id,
  4809. A.review_account_name,
  4810. A.danger_deadline,
  4811. A.review_time,
  4812. A.review_remark,
  4813. A.rectify_group_id,
  4814. A.rectify_group_name,
  4815. A.rectify_position_id,
  4816. A.rectify_position_name,
  4817. A.rectify_account_id,
  4818. A.rectify_account_name,
  4819. A.rectify_time,
  4820. A.danger_reason,
  4821. A.rectify_measure,
  4822. A.rectify_remark,
  4823. A.accept_group_id,
  4824. A.accept_group_name,
  4825. A.accept_position_id,
  4826. A.accept_position_name,
  4827. A.accept_account_id,
  4828. A.accept_account_name,
  4829. A.accept_time,
  4830. A.accept_remark,
  4831. A.finish_time,
  4832. A.status,
  4833. B.wf_def_id,
  4834. B.wf_ins_id,
  4835. B.wf_ins_title,
  4836. B.cur_group_id,
  4837. B.cur_group_name,
  4838. B.cur_position_id,
  4839. B.cur_position_name,
  4840. B.cur_account_id,
  4841. B.cur_account_name,
  4842. B.cur_activity_ins_id,
  4843. B.cur_activity_code,
  4844. B.cur_activity_title,
  4845. B.cur_form_code,
  4846. B.cur_activity_begin_time
  4847. FROM goaf_hdanger AS A
  4848. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  4849. WHERE A.oc_id = 406283
  4850. AND A.hdanger_type = '1'
  4851. ORDER BY A.submit_time DESC
  4852. 18:30:27.458 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT
  4853. COUNT(*) AS 'goafDevTotalNum',
  4854. IFNULL(SUM( CASE WHEN goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorNum',
  4855. IFNULL(SUM( CASE WHEN goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorNum',
  4856. IFNULL(SUM( CASE WHEN goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorNum',
  4857. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '压力传感器' THEN 1 ELSE 0 END ), 0) AS 'pressureSensorOnlineNum',
  4858. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '位移传感器' THEN 1 ELSE 0 END ), 0) AS 'displacementSensorOnlineNum',
  4859. IFNULL(SUM( CASE WHEN goaf_dev_status = 1 AND goaf_dev_typename = '有害气体传感器' THEN 1 ELSE 0 END ), 0) AS 'harmfulGasSensorOnlineNum'
  4860. FROM goaf_devinfo AS A
  4861. WHERE A.oc_id = 406283
  4862. 18:30:27.499 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT A.*,
  4863. B.goaf_orebelt,
  4864. B.goaf_orebody,
  4865. B.goaf_oreheight,
  4866. B.goaf_name
  4867. FROM goaf_check_record AS A
  4868. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4869. WHERE A.oc_id = 406283
  4870. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  4871. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  4872. 18:30:27.507 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:30:27 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT A.goaflayer_id,
  4873. A.oc_id,
  4874. A.goaf_id,
  4875. A.goaf_name,
  4876. A.map_id,
  4877. A.layer_id,
  4878. B.layer_cat_id,
  4879. B.layer_title,
  4880. B.layer_marker,
  4881. B.layer_vector,
  4882. B.layer_vector_type
  4883. FROM goaf_map_layer AS A
  4884. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  4885. WHERE A.oc_id = 406283
  4886. AND A.map_id = '406283'
  4887. 18:31:01.935 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:31:01 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  4888. 18:31:01.943 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:31:01 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT
  4889. client_id,
  4890. client_title,
  4891. client_app_id,
  4892. client_app_key,
  4893. client_app_secret,
  4894. client_desc,
  4895. status,
  4896. is_fixed
  4897. FROM client
  4898. WHERE deleted_flag = 0
  4899. AND client_app_id = '10001'
  4900. AND client_app_key = '82a8bf439373e305'
  4901. 18:31:01.960 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:31:01 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT
  4902. A.client_id,
  4903. A.role_id,
  4904. A.permit_id,
  4905. A.permit_title,
  4906. A.permit_code,
  4907. A.permit_entry,
  4908. A.permit_desc,
  4909. A.permit_type,
  4910. A.parent_id,
  4911. A.root_id,
  4912. A.sort_no,
  4913. A.is_home
  4914. FROM s_role_permit AS A
  4915. WHERE 1 = 1
  4916. AND A.client_id = 2
  4917. AND A.role_id = 6
  4918. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4919. 18:31:02.145 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT 1
  4920. 18:31:02.145 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  4921. 18:31:02.146 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  4922. 18:31:02.146 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT 1
  4923. 18:31:02.152 [XNIO-1 task-3] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT
  4924. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4925. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4926. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4927. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4928. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4929. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4930. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4931. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4932. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4933. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4934. FROM goaf_hdanger AS A
  4935. WHERE A.oc_id = 406283 AND A.status != -1
  4936. AND A.hdanger_type = '1'
  4937. ORDER BY A.submit_time DESC
  4938. 18:31:02.154 [XNIO-1 task-7] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT
  4939. oc_id,
  4940. map_id,
  4941. map_title,
  4942. map_desc,
  4943. map_cat_id,
  4944. map_raster_layer,
  4945. map_type_id
  4946. FROM ent_map
  4947. WHERE 1 = 1 AND deleted_flag = 0
  4948. AND oc_id = 406283
  4949. 18:31:02.155 [XNIO-1 task-6] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT A.*,
  4950. B.goaf_orebelt,
  4951. B.goaf_orebody,
  4952. B.goaf_oreheight,
  4953. B.goaf_name
  4954. FROM goaf_task AS A
  4955. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  4956. WHERE A.oc_id = 406283
  4957. AND A.expected_end_date >= '2023-08-17T16:00:00.000Z'
  4958. AND A.expected_end_date <= '2023-08-17T16:00:00.000Z'
  4959. 18:31:02.156 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  4960. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  4961. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  4962. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  4963. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  4964. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  4965. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  4966. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  4967. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  4968. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  4969. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  4970. FROM goaf_hdanger AS A
  4971. WHERE A.oc_id = 406283 AND A.status != -1
  4972. AND A.hdanger_type = '0'
  4973. ORDER BY A.submit_time DESC
  4974. 18:31:02.159 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 7 ms | Connection: statement-21 | SQL: SELECT
  4975. A.hdanger_id,
  4976. A.oc_id,
  4977. A.goaf_id,
  4978. A.hdanger_title,
  4979. A.hdanger_level,
  4980. A.hdanger_type,
  4981. A.checklist_id,
  4982. A.hdanger_desc,
  4983. A.submit_group_id,
  4984. A.submit_group_name,
  4985. A.submit_position_id,
  4986. A.submit_position_name,
  4987. A.submit_account_id,
  4988. A.submit_account_name,
  4989. A.submit_time,
  4990. A.review_group_id,
  4991. A.review_group_name,
  4992. A.review_position_id,
  4993. A.review_position_name,
  4994. A.review_account_id,
  4995. A.review_account_name,
  4996. A.danger_deadline,
  4997. A.review_time,
  4998. A.review_remark,
  4999. A.rectify_group_id,
  5000. A.rectify_group_name,
  5001. A.rectify_position_id,
  5002. A.rectify_position_name,
  5003. A.rectify_account_id,
  5004. A.rectify_account_name,
  5005. A.rectify_time,
  5006. A.danger_reason,
  5007. A.rectify_measure,
  5008. A.rectify_remark,
  5009. A.accept_group_id,
  5010. A.accept_group_name,
  5011. A.accept_position_id,
  5012. A.accept_position_name,
  5013. A.accept_account_id,
  5014. A.accept_account_name,
  5015. A.accept_time,
  5016. A.accept_remark,
  5017. A.finish_time,
  5018. A.status,
  5019. B.wf_def_id,
  5020. B.wf_ins_id,
  5021. B.wf_ins_title,
  5022. B.cur_group_id,
  5023. B.cur_group_name,
  5024. B.cur_position_id,
  5025. B.cur_position_name,
  5026. B.cur_account_id,
  5027. B.cur_account_name,
  5028. B.cur_activity_ins_id,
  5029. B.cur_activity_code,
  5030. B.cur_activity_title,
  5031. B.cur_form_code,
  5032. B.cur_activity_begin_time
  5033. FROM goaf_hdanger AS A
  5034. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  5035. WHERE A.oc_id = 406283
  5036. AND A.hdanger_type = '1'
  5037. ORDER BY A.submit_time DESC
  5038. 18:31:02.196 [XNIO-1 task-4] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 4 ms | Connection: statement-21 | SQL: SELECT A.*,
  5039. B.goaf_orebelt,
  5040. B.goaf_orebody,
  5041. B.goaf_oreheight,
  5042. B.goaf_name
  5043. FROM goaf_check_record AS A
  5044. LEFT JOIN goaf_baseinfo AS B ON A.goaf_id = B.goaf_id
  5045. WHERE A.oc_id = 406283
  5046. AND A.check_time >= '2023-08-17T16:00:00.000Z'
  5047. AND A.check_time <= '2023-08-17T16:00:00.000Z'
  5048. 18:31:02.204 [XNIO-1 task-5] INFO p6spy - 2023-08-18 18:31:02 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT A.goaflayer_id,
  5049. A.oc_id,
  5050. A.goaf_id,
  5051. A.goaf_name,
  5052. A.map_id,
  5053. A.layer_id,
  5054. B.layer_cat_id,
  5055. B.layer_title,
  5056. B.layer_marker,
  5057. B.layer_vector,
  5058. B.layer_vector_type
  5059. FROM goaf_map_layer AS A
  5060. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  5061. WHERE A.oc_id = 406283
  5062. AND A.map_id = '406283'
  5063. 18:31:52.566 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5064. 18:31:52.568 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5065. 18:31:52.576 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5066. 18:31:52.580 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5067. 18:31:52.580 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5068. 18:31:52.580 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5069. 18:31:52.586 [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)
  5070. 18:31:52.587 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5071. 18:31:52.587 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5072. 18:31:52.587 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5073. 18:31:52.587 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5074. 18:31:52.603 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5075. 18:31:52.607 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5076. 18:33:19.410 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5077. 18:33:19.482 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 23944 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5078. 18:33:19.483 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5079. 18:33:19.567 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5080. 18:33:19.568 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5081. 18:33:22.557 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5082. 18:33:22.562 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5083. 18:33:22.678 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 97 ms. Found 0 Redis repository interfaces.
  5084. 18:33:22.865 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5085. 18:33:22.887 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5086. 18:33:23.770 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5087. 18:33:23.771 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4203 ms
  5088. 18:33:26.512 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5089. 18:33:26.522 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5090. 18:33:26.523 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5091. 18:33:26.523 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5092. 18:33:26.524 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5093. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5094. NOT STARTED.
  5095. Currently in standby mode.
  5096. Number of jobs executed: 0
  5097. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5098. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5099. 18:33:26.524 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5100. 18:33:26.524 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5101. 18:33:26.525 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3c53b136
  5102. 18:33:28.329 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5103. 18:33:28.479 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5104. 18:33:28.510 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5105. 18:33:28.511 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5106. 18:33:28.511 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5107. 18:33:28.532 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5108. 18:33:28.541 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5109. 18:33:28.552 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5110. 18:33:28.584 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5111. 18:33:28.636 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5112. 18:33:28.638 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5113. 18:33:28.638 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5114. 18:33:28.664 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.918 seconds (process running for 10.865)
  5115. 18:33:28.666 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5116. 18:33:28.674 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5117. 18:33:29.036 [restartedMain] INFO p6spy - 2023-08-18 18:33:29 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  5118. 18:33:29.040 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@226c77e3
  5119. 18:33:29.052 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5120. 18:33:29.137 [restartedMain] INFO p6spy - 2023-08-18 18:33:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5121. A.job_id,
  5122. A.job_title,
  5123. A.job_desc,
  5124. A.status,
  5125. A.job_type,
  5126. A.job_code,
  5127. A.job_cron,
  5128. A.job_class_id,
  5129. B.job_class,
  5130. A.cycle_title,
  5131. A.cycle_period,
  5132. A.cycle_unit
  5133. FROM job AS A
  5134. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5135. WHERE A.deleted_flag = 0
  5136. AND A.status = 1
  5137. ORDER BY A.job_id ASC
  5138. 18:33:29.163 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5139. 18:33:29.166 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5140. 18:33:29.761 [RMI TCP Connection(19)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5141. 18:33:29.761 [RMI TCP Connection(19)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5142. 18:33:29.762 [RMI TCP Connection(18)-192.168.3.5] INFO p6spy - 2023-08-18 18:33:29 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5143. 18:33:29.765 [RMI TCP Connection(19)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  5144. 18:33:29.774 [RMI TCP Connection(18)-192.168.3.5] INFO p6spy - 2023-08-18 18:33:29 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5145. 18:34:00.009 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  5146. 18:34:00.014 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-18 18:34:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5147. 18:34:05.625 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  5148. 19:31:30.658 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5149. 19:31:30.659 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5150. 19:31:30.665 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5151. 19:31:30.667 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5152. 19:31:30.668 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5153. 19:31:30.668 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5154. 19:31:30.676 [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)
  5155. 19:31:30.677 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5156. 19:31:30.677 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5157. 19:31:30.677 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5158. 19:31:30.678 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5159. 19:31:30.697 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5160. 19:31:32.379 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5161. 19:57:59.384 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5162. 19:57:59.438 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 25420 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5163. 19:57:59.439 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5164. 19:57:59.497 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5165. 19:57:59.497 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5166. 19:58:01.370 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5167. 19:58:01.373 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5168. 19:58:01.466 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  5169. 19:58:01.648 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5170. 19:58:01.666 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5171. 19:58:02.424 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5172. 19:58:02.424 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2926 ms
  5173. 19:58:04.842 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5174. 19:58:04.851 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5175. 19:58:04.851 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5176. 19:58:04.852 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5177. 19:58:04.852 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5178. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5179. NOT STARTED.
  5180. Currently in standby mode.
  5181. Number of jobs executed: 0
  5182. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5183. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5184. 19:58:04.852 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5185. 19:58:04.852 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5186. 19:58:04.852 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@38bbbbff
  5187. 19:58:06.615 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5188. 19:58:06.767 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5189. 19:58:06.797 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5190. 19:58:06.798 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5191. 19:58:06.798 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5192. 19:58:06.818 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5193. 19:58:06.827 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5194. 19:58:06.838 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5195. 19:58:06.866 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5196. 19:58:06.918 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5197. 19:58:06.920 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5198. 19:58:06.920 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5199. 19:58:06.945 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.062 seconds (process running for 8.927)
  5200. 19:58:06.947 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5201. 19:58:06.955 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5202. 19:58:07.107 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5203. 19:58:07.107 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5204. 19:58:07.111 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  5205. 19:58:07.296 [restartedMain] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  5206. 19:58:07.300 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@fe6e9e1
  5207. 19:58:07.304 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5208. 19:58:07.379 [restartedMain] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  5209. A.job_id,
  5210. A.job_title,
  5211. A.job_desc,
  5212. A.status,
  5213. A.job_type,
  5214. A.job_code,
  5215. A.job_cron,
  5216. A.job_class_id,
  5217. B.job_class,
  5218. A.cycle_title,
  5219. A.cycle_period,
  5220. A.cycle_unit
  5221. FROM job AS A
  5222. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5223. WHERE A.deleted_flag = 0
  5224. AND A.status = 1
  5225. ORDER BY A.job_id ASC
  5226. 19:58:07.401 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5227. 19:58:07.403 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5228. 19:58:07.425 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5229. client_id,
  5230. client_title,
  5231. client_app_id,
  5232. client_app_key,
  5233. client_app_secret,
  5234. client_desc,
  5235. status,
  5236. is_fixed
  5237. FROM client
  5238. WHERE deleted_flag = 0
  5239. AND client_app_id = '10001'
  5240. AND client_app_key = '82a8bf439373e305'
  5241. 19:58:07.439 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5242. A.oc_id,
  5243. B.oc_type_id,
  5244. B.oc_name,
  5245. A.account_id,
  5246. A.account_name,
  5247. A.account_real_name,
  5248. A.password,
  5249. A.account_type,
  5250. A.account_staff_no,
  5251. A.account_phone,
  5252. A.account_last_ip,
  5253. A.account_loc,
  5254. A.status,
  5255. A.account_avatar,
  5256. A.account_photo,
  5257. A.account_real_name,
  5258. A.account_intro,
  5259. A.wx_id,
  5260. A.is_fixed
  5261. FROM account AS A
  5262. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  5263. WHERE A.deleted_flag = 0
  5264. AND (A.account_name = 'system'
  5265. OR A.account_phone = 'system'
  5266. OR A.account_mail = 'system'
  5267. OR A.account_staff_no = 'system')
  5268. 19:58:07.445 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5269. A.oc_id,
  5270. A.oc_name,
  5271. A.oc_type_id,
  5272. A.root_id,
  5273. A.parent_id,
  5274. A.admin_id,
  5275. B.account_name AS admin_name,
  5276. A.group_id,
  5277. A.node_left,
  5278. A.node_right,
  5279. A.node_level,
  5280. A.is_leaf,
  5281. A.status,
  5282. A.if_lic
  5283. FROM oc AS A
  5284. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  5285. WHERE A.oc_id = 1
  5286. 19:58:07.450 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5287. A.rm_id,
  5288. A.role_id,
  5289. B.role_type_id,
  5290. B.role_code,
  5291. B.role_name,
  5292. A.account_id
  5293. FROM s_role_member AS A
  5294. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  5295. WHERE account_id = 1
  5296. LIMIT 1
  5297. 19:58:07.454 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5298. A.gm_id,
  5299. A.oc_id,
  5300. A.group_id,
  5301. B.group_name,
  5302. B.node_left ,
  5303. B.node_right,
  5304. A.account_id
  5305. FROM s_group_member AS A
  5306. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  5307. WHERE B.deleted_flag = 0
  5308. AND A.oc_id = 1
  5309. AND A.account_id = 1
  5310. LIMIT 1
  5311. 19:58:07.461 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5312. A.gmp_id,
  5313. A.oc_id,
  5314. A.group_id,
  5315. B.group_name,
  5316. A.account_id,
  5317. D.account_name,
  5318. D.account_real_name,
  5319. A.position_id,
  5320. C.position_name
  5321. FROM s_group_member_position A
  5322. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  5323. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  5324. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  5325. WHERE A.deleted_flag = 0
  5326. AND A.oc_id = 1
  5327. AND A.group_id = 1
  5328. AND A.account_id = 1
  5329. LIMIT 1
  5330. 19:58:07.467 [XNIO-1 task-2] INFO p6spy - 2023-08-18 19:58:07 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5331. A.gmpg_id,
  5332. A.oc_id,
  5333. A.group_id,
  5334. A.account_id,
  5335. A.position_id,
  5336. A.grant_group_id,
  5337. B.group_name AS grant_group_name
  5338. FROM s_group_member_position_grant A
  5339. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  5340. WHERE A.deleted_flag = 0
  5341. AND A.oc_id = 1
  5342. AND A.group_id = 1
  5343. AND A.account_id = 1
  5344. AND A.position_id = 1
  5345. LIMIT 1
  5346. 19:58:08.162 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-18 19:58:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5347. 19:58:08.243 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5348. client_id,
  5349. client_title,
  5350. client_app_id,
  5351. client_app_key,
  5352. client_app_secret,
  5353. client_desc,
  5354. status,
  5355. is_fixed
  5356. FROM client
  5357. WHERE deleted_flag = 0
  5358. AND client_app_id = '10001'
  5359. AND client_app_key = '82a8bf439373e305'
  5360. 19:58:08.260 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5361. A.client_id,
  5362. A.role_id,
  5363. A.permit_id,
  5364. A.permit_title,
  5365. A.permit_code,
  5366. A.permit_entry,
  5367. A.permit_desc,
  5368. A.permit_type,
  5369. A.parent_id,
  5370. A.root_id,
  5371. A.sort_no,
  5372. A.is_home
  5373. FROM s_role_permit AS A
  5374. WHERE 1 = 1
  5375. AND A.client_id = 2
  5376. AND A.role_id = 1
  5377. ORDER BY A.parent_id ASC ,A.sort_no ASC
  5378. 19:58:08.670 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:08 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT count(*)
  5379. FROM msg AS M
  5380. WHERE M.oc_id = 1
  5381. AND (
  5382. EXISTS (
  5383. SELECT 1 FROM msg_to TT
  5384. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  5385. ) OR
  5386. EXISTS (
  5387. SELECT 1 FROM msg_cc CC
  5388. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  5389. )
  5390. )
  5391. 19:58:09.184 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:09 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5392. 19:58:09.194 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:09 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5393. FROM goaf_devinfo
  5394. where oc_id = 1
  5395. 19:58:14.654 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5396. 19:58:14.721 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:14 | 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
  5397. 19:58:14.726 [XNIO-1 task-3] INFO p6spy - 2023-08-18 19:58:14 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  5398. A.job_id,
  5399. A.job_title,
  5400. A.job_desc,
  5401. A.status,
  5402. A.job_type,
  5403. A.job_code,
  5404. A.job_cron,
  5405. A.job_class_id,
  5406. B.job_class,
  5407. A.cycle_title,
  5408. A.cycle_period,
  5409. A.cycle_unit
  5410. FROM job AS A
  5411. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5412. WHERE A.deleted_flag = 0
  5413. ORDER BY A.job_id ASC
  5414. LIMIT 10