info.2023-08-22.log 375 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031
  1. 17:50:11.812 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2. 17:50:11.867 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 12996 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3. 17:50:11.868 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4. 17:50:11.923 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5. 17:50:11.924 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6. 17:50:13.962 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  7. 17:50:13.965 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8. 17:50:14.054 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 0 Redis repository interfaces.
  9. 17:50:14.227 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10. 17:50:14.248 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  11. 17:50:15.048 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  12. 17:50:15.048 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3124 ms
  13. 17:50:17.524 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  14. 17:50:17.534 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  15. 17:50:17.535 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  16. 17:50:17.535 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  17. 17:50:17.536 [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. 17:50:17.536 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  25. 17:50:17.536 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  26. 17:50:17.536 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2fc17387
  27. 17:50:19.226 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  28. 17:50:19.232 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  29. 17:50:19.377 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  30. 17:50:19.410 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  31. 17:50:19.410 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  32. 17:50:19.410 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  33. 17:50:19.437 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  34. 17:50:19.448 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  35. 17:50:19.459 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  36. 17:50:19.499 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  37. 17:50:19.551 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  38. 17:50:19.552 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  39. 17:50:19.552 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  40. 17:50:19.579 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.265 seconds (process running for 9.704)
  41. 17:50:19.582 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  42. 17:50:19.589 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  43. 17:50:20.000 [restartedMain] INFO p6spy - 2023-08-22 17:50:20 | Time Consuming: 20 ms | Connection: statement-0 | SQL: SELECT 1
  44. 17:50:20.005 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6fcb55ff
  45. 17:50:20.009 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  46. 17:50:20.077 [restartedMain] INFO p6spy - 2023-08-22 17:50:20 | Time Consuming: 8 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. 17:50:20.098 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  65. 17:50:20.100 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  66. 17:50:20.970 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-22 17:50:20 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  67. 17:50:20.981 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  68. 17:50:20.982 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  69. 17:50:20.986 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  70. 17:50:21.015 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-22 17:50:21 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  71. 17:51:55.974 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  72. 17:51:55.975 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  73. 17:51:55.991 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  74. 17:51:55.994 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  75. 17:51:55.994 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  76. 17:51:55.994 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  77. 17:51:56.018 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  78. 17:51:56.021 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  79. 17:51:56.021 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  80. 17:51:56.021 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  81. 17:51:56.021 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  82. 17:51:56.083 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  83. 17:51:56.145 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  84. 17:52:01.920 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  85. 17:52:01.968 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 2980 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  86. 17:52:01.969 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  87. 17:52:02.023 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  88. 17:52:02.024 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  89. 17:52:03.828 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  90. 17:52:03.831 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  91. 17:52:03.920 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  92. 17:52:04.093 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  93. 17:52:04.109 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  94. 17:52:05.122 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  95. 17:52:05.123 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3099 ms
  96. 17:52:07.604 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  97. 17:52:07.614 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  98. 17:52:07.614 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  99. 17:52:07.615 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  100. 17:52:07.615 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  101. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  102. NOT STARTED.
  103. Currently in standby mode.
  104. Number of jobs executed: 0
  105. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  106. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  107. 17:52:07.615 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  108. 17:52:07.615 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  109. 17:52:07.616 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1f2300d1
  110. 17:52:09.764 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  111. 17:52:09.770 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  112. 17:52:09.925 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  113. 17:52:09.958 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  114. 17:52:09.959 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  115. 17:52:09.959 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  116. 17:52:09.980 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  117. 17:52:09.990 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  118. 17:52:10.001 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  119. 17:52:10.031 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  120. 17:52:10.084 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  121. 17:52:10.084 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  122. 17:52:10.084 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  123. 17:52:10.110 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.678 seconds (process running for 9.597)
  124. 17:52:10.112 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  125. 17:52:10.120 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  126. 17:52:10.445 [restartedMain] INFO p6spy - 2023-08-22 17:52:10 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  127. 17:52:10.449 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3f0b67d
  128. 17:52:10.466 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  129. 17:52:10.534 [restartedMain] INFO p6spy - 2023-08-22 17:52:10 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  130. A.job_id,
  131. A.job_title,
  132. A.job_desc,
  133. A.status,
  134. A.job_type,
  135. A.job_code,
  136. A.job_cron,
  137. A.job_class_id,
  138. B.job_class,
  139. A.cycle_title,
  140. A.cycle_period,
  141. A.cycle_unit
  142. FROM job AS A
  143. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  144. WHERE A.deleted_flag = 0
  145. AND A.status = 1
  146. ORDER BY A.job_id ASC
  147. 17:52:10.554 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  148. 17:52:10.555 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  149. 17:52:11.088 [RMI TCP Connection(11)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  150. 17:52:11.088 [RMI TCP Connection(11)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  151. 17:52:11.089 [RMI TCP Connection(10)-192.168.3.5] INFO p6spy - 2023-08-22 17:52:11 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  152. 17:52:11.092 [RMI TCP Connection(11)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  153. 17:52:11.124 [RMI TCP Connection(10)-192.168.3.5] INFO p6spy - 2023-08-22 17:52:11 | Time Consuming: 22 ms | Connection: statement-0 | SQL: SELECT 1
  154. 17:59:13.681 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  155. 17:59:13.683 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  156. 17:59:13.693 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  157. 17:59:13.695 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  158. 17:59:13.695 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  159. 17:59:13.696 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  160. 17:59:13.704 [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)
  161. 17:59:13.705 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  162. 17:59:13.705 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  163. 17:59:13.705 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  164. 17:59:13.705 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  165. 17:59:13.800 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  166. 17:59:13.807 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  167. 17:59:17.994 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  168. 17:59:18.044 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14620 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  169. 17:59:18.044 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  170. 17:59:18.097 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  171. 17:59:18.097 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  172. 17:59:19.936 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  173. 17:59:19.940 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  174. 17:59:20.025 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  175. 17:59:20.195 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  176. 17:59:20.212 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  177. 17:59:20.952 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  178. 17:59:20.952 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2854 ms
  179. 17:59:24.126 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  180. 17:59:24.138 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  181. 17:59:24.138 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  182. 17:59:24.138 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  183. 17:59:24.139 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  184. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  185. NOT STARTED.
  186. Currently in standby mode.
  187. Number of jobs executed: 0
  188. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  189. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  190. 17:59:24.139 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  191. 17:59:24.139 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  192. 17:59:24.140 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54a923e7
  193. 17:59:25.952 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  194. 17:59:25.957 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  195. 17:59:26.100 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  196. 17:59:26.131 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  197. 17:59:26.131 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  198. 17:59:26.131 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  199. 17:59:26.151 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  200. 17:59:26.160 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  201. 17:59:26.169 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  202. 17:59:26.197 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  203. 17:59:26.248 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  204. 17:59:26.249 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  205. 17:59:26.249 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  206. 17:59:26.272 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.805 seconds (process running for 9.69)
  207. 17:59:26.274 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  208. 17:59:26.281 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  209. 17:59:26.623 [restartedMain] INFO p6spy - 2023-08-22 17:59:26 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  210. 17:59:26.627 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@2445717f
  211. 17:59:26.638 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  212. 17:59:26.709 [restartedMain] INFO p6spy - 2023-08-22 17:59:26 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  213. A.job_id,
  214. A.job_title,
  215. A.job_desc,
  216. A.status,
  217. A.job_type,
  218. A.job_code,
  219. A.job_cron,
  220. A.job_class_id,
  221. B.job_class,
  222. A.cycle_title,
  223. A.cycle_period,
  224. A.cycle_unit
  225. FROM job AS A
  226. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  227. WHERE A.deleted_flag = 0
  228. AND A.status = 1
  229. ORDER BY A.job_id ASC
  230. 17:59:26.741 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  231. 17:59:26.743 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  232. 17:59:27.482 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-22 17:59:27 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  233. 17:59:27.497 [RMI TCP Connection(10)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  234. 17:59:27.497 [RMI TCP Connection(10)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  235. 17:59:27.502 [RMI TCP Connection(10)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  236. 17:59:27.513 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-22 17:59:27 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  237. 18:00:00.022 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  238. 18:00:00.026 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 18:00:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  239. 18:00:00.043 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  240. 18:01:33.483 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:01:33 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  241. 18:01:33.507 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:01:33 | Time Consuming: 21 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  242. ( frequency_x,
  243. frequency_y,
  244. frequency_z,
  245. acc_x,
  246. acc_y,
  247. acc_z,
  248. vel_x,
  249. vel_y,
  250. vel_z,
  251. dis_x,
  252. dis_y,
  253. dis_z,
  254. sensor_temperature,
  255. ang_x,
  256. ang_y,
  257. ang_z,
  258. f_alarm_acc_x,
  259. f_alarm_acc_y,
  260. f_alarm_acc_z,
  261. f_alarm_vel_x,
  262. f_alarm_vel_y,
  263. f_alarm_vel_z,
  264. f_alarm_dis_x,
  265. f_alarm_dis_y,
  266. f_alarm_dis_z,
  267. f_alarm_temperature )
  268. values ( 0,
  269. 0,
  270. 0,
  271. 1,
  272. 0,
  273. 1,
  274. 6,
  275. 5,
  276. 8,
  277. 1,
  278. 1,
  279. 2,
  280. 321,
  281. 11,
  282. 93,
  283. 56630,
  284. 0,
  285. 0,
  286. 0,
  287. 0,
  288. 0,
  289. 0,
  290. 0,
  291. 0,
  292. 0,
  293. 0 )
  294. 18:10:00.778 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  295. 18:10:00.790 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  296. client_id,
  297. client_title,
  298. client_app_id,
  299. client_app_key,
  300. client_app_secret,
  301. client_desc,
  302. status,
  303. is_fixed
  304. FROM client
  305. WHERE deleted_flag = 0
  306. AND client_app_id = '10001'
  307. AND client_app_key = '82a8bf439373e305'
  308. 18:10:00.806 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  309. A.oc_id,
  310. B.oc_type_id,
  311. B.oc_name,
  312. A.account_id,
  313. A.account_name,
  314. A.account_real_name,
  315. A.password,
  316. A.account_type,
  317. A.account_staff_no,
  318. A.account_phone,
  319. A.account_last_ip,
  320. A.account_loc,
  321. A.status,
  322. A.account_avatar,
  323. A.account_photo,
  324. A.account_real_name,
  325. A.account_intro,
  326. A.wx_id,
  327. A.is_fixed
  328. FROM account AS A
  329. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  330. WHERE A.deleted_flag = 0
  331. AND (A.account_name = 'sxky'
  332. OR A.account_phone = 'sxky'
  333. OR A.account_mail = 'sxky'
  334. OR A.account_staff_no = 'sxky')
  335. 18:10:00.812 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  336. A.oc_id,
  337. A.oc_name,
  338. A.oc_type_id,
  339. A.root_id,
  340. A.parent_id,
  341. A.admin_id,
  342. B.account_name AS admin_name,
  343. A.group_id,
  344. A.node_left,
  345. A.node_right,
  346. A.node_level,
  347. A.is_leaf,
  348. A.status,
  349. A.if_lic
  350. FROM oc AS A
  351. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  352. WHERE A.oc_id = 406283
  353. 18:10:00.817 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  354. A.rm_id,
  355. A.role_id,
  356. B.role_type_id,
  357. B.role_code,
  358. B.role_name,
  359. A.account_id
  360. FROM s_role_member AS A
  361. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  362. WHERE account_id = 406283
  363. LIMIT 1
  364. 18:10:00.822 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  365. A.gm_id,
  366. A.oc_id,
  367. A.group_id,
  368. B.group_name,
  369. B.node_left ,
  370. B.node_right,
  371. A.account_id
  372. FROM s_group_member AS A
  373. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  374. WHERE B.deleted_flag = 0
  375. AND A.oc_id = 406283
  376. AND A.account_id = 406283
  377. LIMIT 1
  378. 18:10:00.827 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  379. A.gmp_id,
  380. A.oc_id,
  381. A.group_id,
  382. B.group_name,
  383. A.account_id,
  384. D.account_name,
  385. D.account_real_name,
  386. A.position_id,
  387. C.position_name
  388. FROM s_group_member_position A
  389. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  390. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  391. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  392. WHERE A.deleted_flag = 0
  393. AND A.oc_id = 406283
  394. AND A.group_id = 406283
  395. AND A.account_id = 406283
  396. LIMIT 1
  397. 18:10:00.845 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  398. A.gmpg_id,
  399. A.oc_id,
  400. A.group_id,
  401. A.account_id,
  402. A.position_id,
  403. A.grant_group_id,
  404. B.group_name AS grant_group_name
  405. FROM s_group_member_position_grant A
  406. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  407. WHERE A.deleted_flag = 0
  408. AND A.oc_id = 406283
  409. AND A.group_id = 406283
  410. AND A.account_id = 406283
  411. AND A.position_id = 406283
  412. LIMIT 1
  413. 18:10:01.112 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  414. client_id,
  415. client_title,
  416. client_app_id,
  417. client_app_key,
  418. client_app_secret,
  419. client_desc,
  420. status,
  421. is_fixed
  422. FROM client
  423. WHERE deleted_flag = 0
  424. AND client_app_id = '10001'
  425. AND client_app_key = '82a8bf439373e305'
  426. 18:10:01.129 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  427. A.client_id,
  428. A.role_id,
  429. A.permit_id,
  430. A.permit_title,
  431. A.permit_code,
  432. A.permit_entry,
  433. A.permit_desc,
  434. A.permit_type,
  435. A.parent_id,
  436. A.root_id,
  437. A.sort_no,
  438. A.is_home
  439. FROM s_role_permit AS A
  440. WHERE 1 = 1
  441. AND A.client_id = 2
  442. AND A.role_id = 6
  443. ORDER BY A.parent_id ASC ,A.sort_no ASC
  444. 18:10:01.457 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:01 | Time Consuming: 28 ms | Connection: statement-5 | SQL: SELECT count(*)
  445. FROM msg AS M
  446. WHERE M.oc_id = 406283
  447. AND (
  448. EXISTS (
  449. SELECT 1 FROM msg_to TT
  450. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  451. ) OR
  452. EXISTS (
  453. SELECT 1 FROM msg_cc CC
  454. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  455. )
  456. )
  457. 18:10:02.022 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  458. 18:10:02.031 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  459. FROM goaf_devinfo
  460. where oc_id = 406283
  461. 18:10:06.252 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:06 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  462. 18:10:14.147 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT 1
  463. 18:10:14.155 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  464. client_id,
  465. client_title,
  466. client_app_id,
  467. client_app_key,
  468. client_app_secret,
  469. client_desc,
  470. status,
  471. is_fixed
  472. FROM client
  473. WHERE deleted_flag = 0
  474. AND client_app_id = '10001'
  475. AND client_app_key = '82a8bf439373e305'
  476. 18:10:14.169 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  477. A.oc_id,
  478. B.oc_type_id,
  479. B.oc_name,
  480. A.account_id,
  481. A.account_name,
  482. A.account_real_name,
  483. A.password,
  484. A.account_type,
  485. A.account_staff_no,
  486. A.account_phone,
  487. A.account_last_ip,
  488. A.account_loc,
  489. A.status,
  490. A.account_avatar,
  491. A.account_photo,
  492. A.account_real_name,
  493. A.account_intro,
  494. A.wx_id,
  495. A.is_fixed
  496. FROM account AS A
  497. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  498. WHERE A.deleted_flag = 0
  499. AND (A.account_name = 'system'
  500. OR A.account_phone = 'system'
  501. OR A.account_mail = 'system'
  502. OR A.account_staff_no = 'system')
  503. 18:10:14.174 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  504. A.oc_id,
  505. A.oc_name,
  506. A.oc_type_id,
  507. A.root_id,
  508. A.parent_id,
  509. A.admin_id,
  510. B.account_name AS admin_name,
  511. A.group_id,
  512. A.node_left,
  513. A.node_right,
  514. A.node_level,
  515. A.is_leaf,
  516. A.status,
  517. A.if_lic
  518. FROM oc AS A
  519. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  520. WHERE A.oc_id = 1
  521. 18:10:14.178 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  522. A.rm_id,
  523. A.role_id,
  524. B.role_type_id,
  525. B.role_code,
  526. B.role_name,
  527. A.account_id
  528. FROM s_role_member AS A
  529. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  530. WHERE account_id = 1
  531. LIMIT 1
  532. 18:10:14.182 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  533. A.gm_id,
  534. A.oc_id,
  535. A.group_id,
  536. B.group_name,
  537. B.node_left ,
  538. B.node_right,
  539. A.account_id
  540. FROM s_group_member AS A
  541. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  542. WHERE B.deleted_flag = 0
  543. AND A.oc_id = 1
  544. AND A.account_id = 1
  545. LIMIT 1
  546. 18:10:14.186 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  547. A.gmp_id,
  548. A.oc_id,
  549. A.group_id,
  550. B.group_name,
  551. A.account_id,
  552. D.account_name,
  553. D.account_real_name,
  554. A.position_id,
  555. C.position_name
  556. FROM s_group_member_position A
  557. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  558. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  559. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  560. WHERE A.deleted_flag = 0
  561. AND A.oc_id = 1
  562. AND A.group_id = 1
  563. AND A.account_id = 1
  564. LIMIT 1
  565. 18:10:14.190 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  566. A.gmpg_id,
  567. A.oc_id,
  568. A.group_id,
  569. A.account_id,
  570. A.position_id,
  571. A.grant_group_id,
  572. B.group_name AS grant_group_name
  573. FROM s_group_member_position_grant A
  574. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  575. WHERE A.deleted_flag = 0
  576. AND A.oc_id = 1
  577. AND A.group_id = 1
  578. AND A.account_id = 1
  579. AND A.position_id = 1
  580. LIMIT 1
  581. 18:10:14.224 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  582. client_id,
  583. client_title,
  584. client_app_id,
  585. client_app_key,
  586. client_app_secret,
  587. client_desc,
  588. status,
  589. is_fixed
  590. FROM client
  591. WHERE deleted_flag = 0
  592. AND client_app_id = '10001'
  593. AND client_app_key = '82a8bf439373e305'
  594. 18:10:14.238 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  595. A.client_id,
  596. A.role_id,
  597. A.permit_id,
  598. A.permit_title,
  599. A.permit_code,
  600. A.permit_entry,
  601. A.permit_desc,
  602. A.permit_type,
  603. A.parent_id,
  604. A.root_id,
  605. A.sort_no,
  606. A.is_home
  607. FROM s_role_permit AS A
  608. WHERE 1 = 1
  609. AND A.client_id = 2
  610. AND A.role_id = 1
  611. ORDER BY A.parent_id ASC ,A.sort_no ASC
  612. 18:10:14.362 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:14 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT count(*)
  613. FROM msg AS M
  614. WHERE M.oc_id = 1
  615. AND (
  616. EXISTS (
  617. SELECT 1 FROM msg_to TT
  618. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  619. ) OR
  620. EXISTS (
  621. SELECT 1 FROM msg_cc CC
  622. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  623. )
  624. )
  625. 18:10:17.235 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:17 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  626. 18:10:17.241 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:17 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  627. 18:10:17.245 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:17 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  628. art_cat_id,
  629. art_cat_title,
  630. art_cat_desc,
  631. parent_id,
  632. is_fixed,
  633. root_id,
  634. node_left,
  635. node_right,
  636. node_level,
  637. is_leaf
  638. FROM art_cat
  639. WHERE 1 = 1
  640. AND oc_id = 1
  641. AND art_cat_id = 0
  642. 18:10:17.249 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:17 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  643. art_cat_id,
  644. art_cat_title,
  645. art_cat_desc,
  646. parent_id,
  647. is_fixed,
  648. root_id,
  649. node_left,
  650. node_right,
  651. node_level,
  652. is_leaf
  653. FROM art_cat
  654. WHERE 1 = 1
  655. AND oc_id = 1
  656. AND art_cat_id = 1
  657. 18:10:17.254 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  658. art_cat_id,
  659. art_cat_title,
  660. art_cat_desc,
  661. parent_id,
  662. is_fixed,
  663. root_id,
  664. node_left,
  665. node_right,
  666. node_level,
  667. is_leaf
  668. FROM art_cat
  669. WHERE 1 = 1 AND deleted_flag = 0
  670. AND oc_id = 1
  671. 18:10:17.321 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:17 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT count(0) FROM art AS A LEFT JOIN art_cat AS B ON (A.oc_id = B.oc_id AND A.art_cat_id = B.art_cat_id) LEFT JOIN account AS C ON (A.oc_id = C.oc_id AND A.editor_id = C.account_id) WHERE A.deleted_flag = 0 AND A.oc_id = 1 AND A.art_cat_id = '0'
  672. 18:10:21.331 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  673. 18:10:21.360 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM ent AS A LEFT JOIN oc AS B ON (A.oc_id = B.oc_id) LEFT JOIN account AS C ON (B.oc_id = C.oc_id AND B.admin_id = C.account_id) LEFT JOIN ent_cat AS D ON (A.ent_cat_id = D.ent_cat_id) WHERE 1 = 1 AND A.deleted_flag = 0
  674. 18:10:21.366 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:21 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  675. A.oc_id,
  676. A.ent_name,
  677. A.ent_cat_id,
  678. D.ent_cat_title,
  679. A.ent_zch,
  680. A.ent_tyshxydm,
  681. A.ent_clrq,
  682. A.ent_fddbr,
  683. A.ent_lxdh,
  684. A.ent_dzyx,
  685. A.ent_zcdz,
  686. A.ent_yzbm,
  687. A.ent_jjlxdm,
  688. A.ent_xzqhdm,
  689. A.ent_xzqhmc,
  690. A.ent_jyfw,
  691. A.ent_qyzt,
  692. A.ent_qywzjd,
  693. A.ent_qywzwd,
  694. A.ent_scjydz,
  695. A.ent_gmqk,
  696. A.ent_qygm,
  697. A.ent_zyfzr,
  698. A.ent_zyfzrgddhhm,
  699. A.ent_zyfzryddhhm,
  700. A.ent_zyfzrdzyx,
  701. A.ent_aqfzr,
  702. A.ent_aqfzrgddhhm,
  703. A.ent_aqfzryddhhm,
  704. A.ent_aqfzrdzyx,
  705. A.ent_aqjgszqk,
  706. A.ent_cyrysl,
  707. A.ent_tzzyrysl,
  708. A.ent_zzaqscglrys,
  709. A.ent_zzyjglrys,
  710. A.ent_zcaqgcsrys,
  711. A.ent_aqjgjcjg,
  712. B.parent_id,
  713. B.root_id,
  714. B.admin_id,
  715. C.account_name AS admin_name,
  716. B.group_id,
  717. B.node_left,
  718. B.node_right,
  719. B.node_level,
  720. B.is_leaf,
  721. B.status
  722. FROM ent AS A
  723. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id)
  724. LEFT JOIN account AS C ON (B.oc_id = C.oc_id AND B.admin_id = C.account_id)
  725. LEFT JOIN ent_cat AS D ON (A.ent_cat_id = D.ent_cat_id)
  726. WHERE 1 = 1 AND A.deleted_flag = 0
  727. ORDER BY A.oc_id DESC
  728. LIMIT 10
  729. 18:10:22.741 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:22 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  730. 18:10:22.749 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:22 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  731. A.oc_id,
  732. A.org_name,
  733. A.org_code,
  734. A.org_cat_id,
  735. A.org_lxr,
  736. A.org_lxdh,
  737. A.org_dzyx,
  738. D.org_cat_title,
  739. A.org_area_code,
  740. A.org_area_name,
  741. A.org_address,
  742. A.org_wzjd,
  743. A.org_wzwd,
  744. A.org_desc,
  745. B.parent_id,
  746. B.root_id,
  747. B.admin_id,
  748. C.account_name AS admin_name,
  749. B.group_id,
  750. B.node_left,
  751. B.node_right,
  752. B.node_level,
  753. B.is_leaf,
  754. B.status
  755. FROM org AS A
  756. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id)
  757. LEFT JOIN account AS C ON (B.oc_id = C.oc_id AND B.admin_id = C.account_id)
  758. LEFT JOIN org_cat AS D ON (A.org_cat_id = D.org_cat_id)
  759. WHERE 1 = 1 AND A.deleted_flag = 0
  760. ORDER BY A.oc_id DESC
  761. 18:10:25.511 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  762. 18:10:25.511 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:25 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  763. 18:10:25.518 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  764. client_id,
  765. client_title,
  766. client_app_id,
  767. client_app_key,
  768. client_app_secret,
  769. client_desc,
  770. status,
  771. is_fixed
  772. FROM client
  773. WHERE deleted_flag = 0
  774. 18:10:25.520 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:25 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  775. role_id,
  776. role_name,
  777. role_code,
  778. role_desc,
  779. role_type_id,
  780. sort_no,
  781. is_fixed
  782. FROM s_role
  783. WHERE deleted_flag = 0
  784. ORDER BY role_id ASC
  785. 18:10:25.579 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  786. A.client_id,
  787. A.role_id,
  788. A.permit_id,
  789. A.permit_title,
  790. A.permit_code,
  791. A.permit_entry,
  792. A.permit_desc,
  793. A.permit_type,
  794. A.parent_id,
  795. A.root_id,
  796. A.sort_no,
  797. A.is_home
  798. FROM s_role_permit AS A
  799. WHERE 1 = 1
  800. AND A.client_id = 1
  801. AND A.role_id = 1
  802. ORDER BY A.parent_id ASC ,A.sort_no ASC
  803. 18:10:34.213 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  804. 18:10:34.225 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  805. A.oc_id,
  806. A.group_id,
  807. A.group_name,
  808. A.group_code,
  809. A.group_cat_id,
  810. C.group_cat_title,
  811. A.node_left,
  812. A.node_right,
  813. A.parent_id,
  814. A.root_id,
  815. B.group_name as parent_name,
  816. A.node_level,
  817. A.is_leaf,
  818. A.is_fixed,
  819. A.group_desc
  820. FROM s_group AS A
  821. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  822. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  823. WHERE A.oc_id = 1 AND A.deleted_flag = 0
  824. 18:10:34.284 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  825. A.oc_id,
  826. A.group_id,
  827. A.group_name,
  828. A.group_code,
  829. A.group_cat_id,
  830. C.group_cat_title,
  831. A.node_left,
  832. A.node_right,
  833. A.parent_id,
  834. A.root_id,
  835. B.group_name as parent_name,
  836. A.node_level,
  837. A.is_leaf,
  838. A.is_fixed,
  839. A.group_desc
  840. FROM s_group AS A
  841. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  842. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  843. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 1
  844. 18:10:34.335 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:34 | Time Consuming: 4 ms | Connection: statement-5 | 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 = 1 AND C.node_left >= 45 AND C.node_right <= 46) table_count
  845. 18:10:34.342 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  846. DISTINCT(A.account_id),
  847. A.gm_id,
  848. A.oc_id,
  849. A.group_id,
  850. B.account_name,
  851. B.account_real_name,
  852. B.account_phone,
  853. B.account_staff_no,
  854. B.account_avatar,
  855. B.status,
  856. B.is_fixed,
  857. C.group_name,
  858. C.node_left,
  859. C.node_right,
  860. D.gmp_id,
  861. D.position_id,
  862. D.position_name,
  863. E.gmpg_id,
  864. E.grant_group_id,
  865. F.group_name as grant_group_name
  866. FROM
  867. s_group_member AS A
  868. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  869. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  870. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  871. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  872. LEFT JOIN (
  873. SELECT
  874. M.oc_id,
  875. M.account_id,
  876. M.gmp_id,
  877. M.group_id,
  878. M.position_id,
  879. P.position_name,
  880. N.gmpg_id,
  881. N.grant_group_id,
  882. GP.group_name as grant_group_name
  883. FROM
  884. s_group_member_position AS M
  885. LEFT JOIN s_group_member_position_grant AS N ON (
  886. M.oc_id = N.oc_id
  887. AND M.account_id = N.account_id
  888. AND M.group_id = N.group_id
  889. AND M.position_id = N.position_id )
  890. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  891. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  892. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  893. WHERE B.deleted_flag = 0
  894. AND A.oc_id = 1
  895. AND C.node_left >= 45
  896. AND C.node_right <= 46
  897. ORDER BY A.account_id, A.group_id
  898. LIMIT 10
  899. 18:10:43.840 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:43 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  900. 18:10:43.840 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:43 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  901. 18:10:43.848 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:43 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  902. ent_cat_id,
  903. ent_cat_title,
  904. ent_cat_desc
  905. FROM ent_cat
  906. WHERE deleted_flag = 0
  907. 18:10:43.851 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:43 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  908. A.oc_id,
  909. A.ent_name,
  910. A.ent_cat_id,
  911. D.ent_cat_title,
  912. A.ent_zch,
  913. A.ent_tyshxydm,
  914. A.ent_clrq,
  915. A.ent_fddbr,
  916. A.ent_lxdh,
  917. A.ent_dzyx,
  918. A.ent_zcdz,
  919. A.ent_yzbm,
  920. A.ent_jjlxdm,
  921. A.ent_xzqhdm,
  922. A.ent_xzqhmc,
  923. A.ent_jyfw,
  924. A.ent_qyzt,
  925. A.ent_qywzjd,
  926. A.ent_qywzwd,
  927. A.ent_scjydz,
  928. A.ent_gmqk,
  929. A.ent_qygm,
  930. A.ent_zyfzr,
  931. A.ent_zyfzrgddhhm,
  932. A.ent_zyfzryddhhm,
  933. A.ent_zyfzrdzyx,
  934. A.ent_aqfzr,
  935. A.ent_aqfzrgddhhm,
  936. A.ent_aqfzryddhhm,
  937. A.ent_aqfzrdzyx,
  938. A.ent_aqjgszqk,
  939. A.ent_cyrysl,
  940. A.ent_tzzyrysl,
  941. A.ent_zzaqscglrys,
  942. A.ent_zzyjglrys,
  943. A.ent_zcaqgcsrys,
  944. A.ent_aqjgjcjg,
  945. B.parent_id,
  946. B.root_id,
  947. B.admin_id,
  948. C.account_name AS admin_name,
  949. B.group_id,
  950. B.node_left,
  951. B.node_right,
  952. B.node_level,
  953. B.is_leaf,
  954. B.status
  955. FROM ent AS A
  956. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id)
  957. LEFT JOIN account AS C ON (B.oc_id = C.oc_id AND B.admin_id = C.account_id)
  958. LEFT JOIN ent_cat AS D ON (A.ent_cat_id = D.ent_cat_id)
  959. WHERE 1 = 1 AND A.deleted_flag = 0
  960. AND A.oc_id = 1
  961. 18:10:45.529 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  962. 18:10:45.539 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:45 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  963. A.oc_id,
  964. A.group_id,
  965. A.group_name,
  966. A.group_code,
  967. A.group_cat_id,
  968. C.group_cat_title,
  969. A.node_left,
  970. A.node_right,
  971. A.parent_id,
  972. A.root_id,
  973. B.group_name as parent_name,
  974. A.node_level,
  975. A.is_leaf,
  976. A.is_fixed,
  977. A.group_desc
  978. FROM s_group AS A
  979. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  980. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  981. WHERE A.oc_id = 1 AND A.deleted_flag = 0
  982. 18:10:45.576 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  983. A.oc_id,
  984. A.group_id,
  985. A.group_name,
  986. A.group_code,
  987. A.group_cat_id,
  988. C.group_cat_title,
  989. A.node_left,
  990. A.node_right,
  991. A.parent_id,
  992. A.root_id,
  993. B.group_name as parent_name,
  994. A.node_level,
  995. A.is_leaf,
  996. A.is_fixed,
  997. A.group_desc
  998. FROM s_group AS A
  999. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1000. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1001. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 1
  1002. 18:10:45.605 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:45 | Time Consuming: 4 ms | Connection: statement-5 | 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 = 1 AND C.node_left >= 45 AND C.node_right <= 46) table_count
  1003. 18:10:45.610 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:45 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1004. DISTINCT(A.account_id),
  1005. A.gm_id,
  1006. A.oc_id,
  1007. A.group_id,
  1008. B.account_name,
  1009. B.account_real_name,
  1010. B.account_phone,
  1011. B.account_staff_no,
  1012. B.account_avatar,
  1013. B.status,
  1014. B.is_fixed,
  1015. C.group_name,
  1016. C.node_left,
  1017. C.node_right,
  1018. D.gmp_id,
  1019. D.position_id,
  1020. D.position_name,
  1021. E.gmpg_id,
  1022. E.grant_group_id,
  1023. F.group_name as grant_group_name
  1024. FROM
  1025. s_group_member AS A
  1026. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  1027. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  1028. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  1029. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  1030. LEFT JOIN (
  1031. SELECT
  1032. M.oc_id,
  1033. M.account_id,
  1034. M.gmp_id,
  1035. M.group_id,
  1036. M.position_id,
  1037. P.position_name,
  1038. N.gmpg_id,
  1039. N.grant_group_id,
  1040. GP.group_name as grant_group_name
  1041. FROM
  1042. s_group_member_position AS M
  1043. LEFT JOIN s_group_member_position_grant AS N ON (
  1044. M.oc_id = N.oc_id
  1045. AND M.account_id = N.account_id
  1046. AND M.group_id = N.group_id
  1047. AND M.position_id = N.position_id )
  1048. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  1049. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  1050. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  1051. WHERE B.deleted_flag = 0
  1052. AND A.oc_id = 1
  1053. AND C.node_left >= 45
  1054. AND C.node_right <= 46
  1055. ORDER BY A.account_id, A.group_id
  1056. LIMIT 10
  1057. 18:10:53.025 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:53 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1058. 18:10:53.025 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:53 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1059. 18:10:53.032 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:10:53 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1060. client_id,
  1061. client_title,
  1062. client_app_id,
  1063. client_app_key,
  1064. client_app_secret,
  1065. client_desc,
  1066. status,
  1067. is_fixed
  1068. FROM client
  1069. WHERE deleted_flag = 0
  1070. 18:10:53.032 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:53 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1071. role_id,
  1072. role_name,
  1073. role_code,
  1074. role_desc,
  1075. role_type_id,
  1076. sort_no,
  1077. is_fixed
  1078. FROM s_role
  1079. WHERE deleted_flag = 0
  1080. ORDER BY role_id ASC
  1081. 18:10:53.067 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:53 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1082. A.client_id,
  1083. A.role_id,
  1084. A.permit_id,
  1085. A.permit_title,
  1086. A.permit_code,
  1087. A.permit_entry,
  1088. A.permit_desc,
  1089. A.permit_type,
  1090. A.parent_id,
  1091. A.root_id,
  1092. A.sort_no,
  1093. A.is_home
  1094. FROM s_role_permit AS A
  1095. WHERE 1 = 1
  1096. AND A.client_id = 1
  1097. AND A.role_id = 1
  1098. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1099. 18:10:57.390 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:57 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1100. 18:10:57.398 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:57 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1101. role_id,
  1102. role_name,
  1103. role_code,
  1104. role_desc,
  1105. role_type_id,
  1106. sort_no,
  1107. is_fixed
  1108. FROM s_role
  1109. WHERE deleted_flag = 0
  1110. ORDER BY role_id ASC
  1111. 18:10:57.436 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:10:57 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1112. A.client_id,
  1113. A.role_id,
  1114. A.permit_id,
  1115. A.permit_title,
  1116. A.permit_code,
  1117. A.permit_entry,
  1118. A.permit_desc,
  1119. A.permit_type,
  1120. A.parent_id,
  1121. A.root_id,
  1122. A.sort_no,
  1123. A.is_home
  1124. FROM s_role_permit AS A
  1125. WHERE 1 = 1
  1126. AND A.client_id = 2
  1127. AND A.role_id = 1
  1128. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1129. 18:11:02.832 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:02 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1130. 18:11:02.840 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:02 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1131. role_id,
  1132. role_name,
  1133. role_code,
  1134. role_desc,
  1135. role_type_id,
  1136. sort_no,
  1137. is_fixed
  1138. FROM s_role
  1139. WHERE deleted_flag = 0
  1140. ORDER BY role_id ASC
  1141. 18:11:02.884 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:02 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1142. A.client_id,
  1143. A.role_id,
  1144. A.permit_id,
  1145. A.permit_title,
  1146. A.permit_code,
  1147. A.permit_entry,
  1148. A.permit_desc,
  1149. A.permit_type,
  1150. A.parent_id,
  1151. A.root_id,
  1152. A.sort_no,
  1153. A.is_home
  1154. FROM s_role_permit AS A
  1155. WHERE 1 = 1
  1156. AND A.client_id = 3
  1157. AND A.role_id = 1
  1158. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1159. 18:11:06.652 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:06 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1160. 18:11:06.660 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:06 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1161. A.oc_id,
  1162. A.group_id,
  1163. A.group_name,
  1164. A.group_code,
  1165. A.group_cat_id,
  1166. C.group_cat_title,
  1167. A.node_left,
  1168. A.node_right,
  1169. A.parent_id,
  1170. A.root_id,
  1171. B.group_name as parent_name,
  1172. A.node_level,
  1173. A.is_leaf,
  1174. A.is_fixed,
  1175. A.group_desc
  1176. FROM s_group AS A
  1177. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  1178. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1179. WHERE A.oc_id = 1 AND A.deleted_flag = 0
  1180. 18:11:06.722 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:06 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1181. A.oc_id,
  1182. A.group_id,
  1183. A.group_name,
  1184. A.group_code,
  1185. A.group_cat_id,
  1186. C.group_cat_title,
  1187. A.node_left,
  1188. A.node_right,
  1189. A.parent_id,
  1190. A.root_id,
  1191. B.group_name as parent_name,
  1192. A.node_level,
  1193. A.is_leaf,
  1194. A.is_fixed,
  1195. A.group_desc
  1196. FROM s_group AS A
  1197. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1198. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1199. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 1
  1200. 18:11:06.754 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:06 | 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 = 1 AND C.node_left >= 45 AND C.node_right <= 46) table_count
  1201. 18:11:06.760 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:06 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1202. DISTINCT(A.account_id),
  1203. A.gm_id,
  1204. A.oc_id,
  1205. A.group_id,
  1206. B.account_name,
  1207. B.account_real_name,
  1208. B.account_phone,
  1209. B.account_staff_no,
  1210. B.account_avatar,
  1211. B.status,
  1212. B.is_fixed,
  1213. C.group_name,
  1214. C.node_left,
  1215. C.node_right,
  1216. D.gmp_id,
  1217. D.position_id,
  1218. D.position_name,
  1219. E.gmpg_id,
  1220. E.grant_group_id,
  1221. F.group_name as grant_group_name
  1222. FROM
  1223. s_group_member AS A
  1224. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  1225. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  1226. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  1227. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  1228. LEFT JOIN (
  1229. SELECT
  1230. M.oc_id,
  1231. M.account_id,
  1232. M.gmp_id,
  1233. M.group_id,
  1234. M.position_id,
  1235. P.position_name,
  1236. N.gmpg_id,
  1237. N.grant_group_id,
  1238. GP.group_name as grant_group_name
  1239. FROM
  1240. s_group_member_position AS M
  1241. LEFT JOIN s_group_member_position_grant AS N ON (
  1242. M.oc_id = N.oc_id
  1243. AND M.account_id = N.account_id
  1244. AND M.group_id = N.group_id
  1245. AND M.position_id = N.position_id )
  1246. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  1247. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  1248. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  1249. WHERE B.deleted_flag = 0
  1250. AND A.oc_id = 1
  1251. AND C.node_left >= 45
  1252. AND C.node_right <= 46
  1253. ORDER BY A.account_id, A.group_id
  1254. LIMIT 10
  1255. 18:11:08.047 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:08 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1256. 18:11:08.055 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:08 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1257. A.oc_id,
  1258. A.group_id,
  1259. A.group_name,
  1260. A.group_code,
  1261. A.group_cat_id,
  1262. C.group_cat_title,
  1263. A.node_left,
  1264. A.node_right,
  1265. A.parent_id,
  1266. A.root_id,
  1267. B.group_name as parent_name,
  1268. A.node_level,
  1269. A.is_leaf,
  1270. A.is_fixed,
  1271. A.group_desc
  1272. FROM s_group AS A
  1273. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1274. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1275. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 406194
  1276. 18:11:08.085 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:08 | 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 = 1 AND C.node_left >= 7 AND C.node_right <= 8) table_count
  1277. 18:11:08.819 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:08 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1278. 18:11:08.826 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:08 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1279. A.oc_id,
  1280. A.group_id,
  1281. A.group_name,
  1282. A.group_code,
  1283. A.group_cat_id,
  1284. C.group_cat_title,
  1285. A.node_left,
  1286. A.node_right,
  1287. A.parent_id,
  1288. A.root_id,
  1289. B.group_name as parent_name,
  1290. A.node_level,
  1291. A.is_leaf,
  1292. A.is_fixed,
  1293. A.group_desc
  1294. FROM s_group AS A
  1295. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1296. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1297. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 406194
  1298. 18:11:08.856 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:08 | 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 = 1 AND C.node_left >= 7 AND C.node_right <= 8) table_count
  1299. 18:11:09.781 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:09 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1300. 18:11:09.789 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:09 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1301. A.oc_id,
  1302. A.group_id,
  1303. A.group_name,
  1304. A.group_code,
  1305. A.group_cat_id,
  1306. C.group_cat_title,
  1307. A.node_left,
  1308. A.node_right,
  1309. A.parent_id,
  1310. A.root_id,
  1311. B.group_name as parent_name,
  1312. A.node_level,
  1313. A.is_leaf,
  1314. A.is_fixed,
  1315. A.group_desc
  1316. FROM s_group AS A
  1317. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1318. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1319. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 406207
  1320. 18:11:09.817 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:09 | 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 = 1 AND C.node_left >= 5 AND C.node_right <= 6) table_count
  1321. 18:11:10.386 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1322. 18:11:10.394 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1323. A.oc_id,
  1324. A.group_id,
  1325. A.group_name,
  1326. A.group_code,
  1327. A.group_cat_id,
  1328. C.group_cat_title,
  1329. A.node_left,
  1330. A.node_right,
  1331. A.parent_id,
  1332. A.root_id,
  1333. B.group_name as parent_name,
  1334. A.node_level,
  1335. A.is_leaf,
  1336. A.is_fixed,
  1337. A.group_desc
  1338. FROM s_group AS A
  1339. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1340. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1341. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 406226
  1342. 18:11:10.448 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:10 | 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 = 1 AND C.node_left >= 3 AND C.node_right <= 4) table_count
  1343. 18:11:11.330 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:11 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1344. 18:11:11.338 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:11 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1345. A.oc_id,
  1346. A.group_id,
  1347. A.group_name,
  1348. A.group_code,
  1349. A.group_cat_id,
  1350. C.group_cat_title,
  1351. A.node_left,
  1352. A.node_right,
  1353. A.parent_id,
  1354. A.root_id,
  1355. B.group_name as parent_name,
  1356. A.node_level,
  1357. A.is_leaf,
  1358. A.is_fixed,
  1359. A.group_desc
  1360. FROM s_group AS A
  1361. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1362. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1363. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 406243
  1364. 18:11:11.368 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:11 | 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 = 1 AND C.node_left >= 11 AND C.node_right <= 12) table_count
  1365. 18:11:12.035 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:12 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1366. 18:11:12.043 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:12 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1367. A.oc_id,
  1368. A.group_id,
  1369. A.group_name,
  1370. A.group_code,
  1371. A.group_cat_id,
  1372. C.group_cat_title,
  1373. A.node_left,
  1374. A.node_right,
  1375. A.parent_id,
  1376. A.root_id,
  1377. B.group_name as parent_name,
  1378. A.node_level,
  1379. A.is_leaf,
  1380. A.is_fixed,
  1381. A.group_desc
  1382. FROM s_group AS A
  1383. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1384. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1385. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 406245
  1386. 18:11:12.081 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:12 | 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 = 1 AND C.node_left >= 15 AND C.node_right <= 16) table_count
  1387. 18:11:13.787 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:13 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1388. 18:11:13.796 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:13 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1389. A.oc_id,
  1390. A.group_id,
  1391. A.group_name,
  1392. A.group_code,
  1393. A.group_cat_id,
  1394. C.group_cat_title,
  1395. A.node_left,
  1396. A.node_right,
  1397. A.parent_id,
  1398. A.root_id,
  1399. B.group_name as parent_name,
  1400. A.node_level,
  1401. A.is_leaf,
  1402. A.is_fixed,
  1403. A.group_desc
  1404. FROM s_group AS A
  1405. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  1406. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  1407. WHERE A.oc_id = 1 AND A.deleted_flag = 0 AND A.group_id = 1
  1408. 18:11:13.827 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:13 | 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 = 1 AND C.node_left >= 45 AND C.node_right <= 46) table_count
  1409. 18:11:13.833 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:13 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT
  1410. DISTINCT(A.account_id),
  1411. A.gm_id,
  1412. A.oc_id,
  1413. A.group_id,
  1414. B.account_name,
  1415. B.account_real_name,
  1416. B.account_phone,
  1417. B.account_staff_no,
  1418. B.account_avatar,
  1419. B.status,
  1420. B.is_fixed,
  1421. C.group_name,
  1422. C.node_left,
  1423. C.node_right,
  1424. D.gmp_id,
  1425. D.position_id,
  1426. D.position_name,
  1427. E.gmpg_id,
  1428. E.grant_group_id,
  1429. F.group_name as grant_group_name
  1430. FROM
  1431. s_group_member AS A
  1432. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  1433. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  1434. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  1435. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  1436. LEFT JOIN (
  1437. SELECT
  1438. M.oc_id,
  1439. M.account_id,
  1440. M.gmp_id,
  1441. M.group_id,
  1442. M.position_id,
  1443. P.position_name,
  1444. N.gmpg_id,
  1445. N.grant_group_id,
  1446. GP.group_name as grant_group_name
  1447. FROM
  1448. s_group_member_position AS M
  1449. LEFT JOIN s_group_member_position_grant AS N ON (
  1450. M.oc_id = N.oc_id
  1451. AND M.account_id = N.account_id
  1452. AND M.group_id = N.group_id
  1453. AND M.position_id = N.position_id )
  1454. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  1455. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  1456. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  1457. WHERE B.deleted_flag = 0
  1458. AND A.oc_id = 1
  1459. AND C.node_left >= 45
  1460. AND C.node_right <= 46
  1461. ORDER BY A.account_id, A.group_id
  1462. LIMIT 10
  1463. 18:11:23.949 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:23 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1464. 18:11:23.962 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:23 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT count(0) FROM s_position AS A WHERE A.deleted_flag = 0 AND A.oc_id = 1
  1465. 18:11:23.969 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:23 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT
  1466. A.oc_id,
  1467. A.position_id,
  1468. A.position_name,
  1469. A.position_desc,
  1470. A.is_fixed
  1471. FROM s_position AS A
  1472. WHERE A.deleted_flag = 0
  1473. AND A.oc_id = 1
  1474. order by A.position_id ASC
  1475. LIMIT 10
  1476. 18:11:43.752 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:43 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1477. 18:11:43.762 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:43 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT
  1478. A.industry_id,
  1479. A.industry_code,
  1480. A.industry_name,
  1481. A.parent_id,
  1482. B.industry_name as parent_name,
  1483. A.root_id,
  1484. A.industry_logo,
  1485. A.industry_type_id,
  1486. A.industry_desc,
  1487. A.sort_no,
  1488. A.node_left,
  1489. A.node_right,
  1490. A.node_level,
  1491. A.is_leaf,
  1492. A.created_by,
  1493. A.updated_by,
  1494. A.created_at,
  1495. A.updated_at
  1496. FROM industry AS A
  1497. LEFT JOIN industry AS B ON (A.parent_id = B.industry_id)
  1498. WHERE A.deleted_flag = 0
  1499. ORDER BY A.sort_no ASC
  1500. 18:11:47.298 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:47 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1501. 18:11:47.298 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:47 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1502. 18:11:47.306 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:11:47 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT
  1503. client_id,
  1504. client_title,
  1505. client_app_id,
  1506. client_app_key,
  1507. client_app_secret,
  1508. client_desc,
  1509. status,
  1510. is_fixed
  1511. FROM client
  1512. WHERE deleted_flag = 0
  1513. 18:11:47.306 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:47 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1514. role_id,
  1515. role_name,
  1516. role_code,
  1517. role_desc,
  1518. role_type_id,
  1519. sort_no,
  1520. is_fixed
  1521. FROM s_role
  1522. WHERE deleted_flag = 0
  1523. ORDER BY role_id ASC
  1524. 18:11:47.342 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:47 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1525. A.client_id,
  1526. A.role_id,
  1527. A.permit_id,
  1528. A.permit_title,
  1529. A.permit_code,
  1530. A.permit_entry,
  1531. A.permit_desc,
  1532. A.permit_type,
  1533. A.parent_id,
  1534. A.root_id,
  1535. A.sort_no,
  1536. A.is_home
  1537. FROM s_role_permit AS A
  1538. WHERE 1 = 1
  1539. AND A.client_id = 1
  1540. AND A.role_id = 1
  1541. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1542. 18:11:51.162 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1543. 18:11:51.170 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1544. A.client_id,
  1545. A.role_id,
  1546. A.permit_id,
  1547. A.permit_title,
  1548. A.permit_code,
  1549. A.permit_entry,
  1550. A.permit_desc,
  1551. A.permit_type,
  1552. A.parent_id,
  1553. A.root_id,
  1554. A.sort_no,
  1555. A.is_home
  1556. FROM s_role_permit AS A
  1557. WHERE 1 = 1
  1558. AND A.client_id = 1
  1559. AND A.role_id = 2
  1560. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1561. 18:11:51.860 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1562. 18:11:51.869 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1563. A.client_id,
  1564. A.role_id,
  1565. A.permit_id,
  1566. A.permit_title,
  1567. A.permit_code,
  1568. A.permit_entry,
  1569. A.permit_desc,
  1570. A.permit_type,
  1571. A.parent_id,
  1572. A.root_id,
  1573. A.sort_no,
  1574. A.is_home
  1575. FROM s_role_permit AS A
  1576. WHERE 1 = 1
  1577. AND A.client_id = 1
  1578. AND A.role_id = 3
  1579. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1580. 18:11:52.472 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:52 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  1581. 18:11:52.481 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:52 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1582. A.client_id,
  1583. A.role_id,
  1584. A.permit_id,
  1585. A.permit_title,
  1586. A.permit_code,
  1587. A.permit_entry,
  1588. A.permit_desc,
  1589. A.permit_type,
  1590. A.parent_id,
  1591. A.root_id,
  1592. A.sort_no,
  1593. A.is_home
  1594. FROM s_role_permit AS A
  1595. WHERE 1 = 1
  1596. AND A.client_id = 1
  1597. AND A.role_id = 4
  1598. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1599. 18:11:52.991 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:52 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1600. A.client_id,
  1601. A.role_id,
  1602. A.permit_id,
  1603. A.permit_title,
  1604. A.permit_code,
  1605. A.permit_entry,
  1606. A.permit_desc,
  1607. A.permit_type,
  1608. A.parent_id,
  1609. A.root_id,
  1610. A.sort_no,
  1611. A.is_home
  1612. FROM s_role_permit AS A
  1613. WHERE 1 = 1
  1614. AND A.client_id = 1
  1615. AND A.role_id = 5
  1616. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1617. 18:11:53.595 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:53 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1618. 18:11:53.604 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:53 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  1619. A.client_id,
  1620. A.role_id,
  1621. A.permit_id,
  1622. A.permit_title,
  1623. A.permit_code,
  1624. A.permit_entry,
  1625. A.permit_desc,
  1626. A.permit_type,
  1627. A.parent_id,
  1628. A.root_id,
  1629. A.sort_no,
  1630. A.is_home
  1631. FROM s_role_permit AS A
  1632. WHERE 1 = 1
  1633. AND A.client_id = 1
  1634. AND A.role_id = 6
  1635. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1636. 18:11:54.574 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:54 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1637. 18:11:54.583 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:54 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1638. A.client_id,
  1639. A.role_id,
  1640. A.permit_id,
  1641. A.permit_title,
  1642. A.permit_code,
  1643. A.permit_entry,
  1644. A.permit_desc,
  1645. A.permit_type,
  1646. A.parent_id,
  1647. A.root_id,
  1648. A.sort_no,
  1649. A.is_home
  1650. FROM s_role_permit AS A
  1651. WHERE 1 = 1
  1652. AND A.client_id = 1
  1653. AND A.role_id = 8
  1654. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1655. 18:11:55.106 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:55 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1656. 18:11:55.116 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:55 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  1657. A.client_id,
  1658. A.role_id,
  1659. A.permit_id,
  1660. A.permit_title,
  1661. A.permit_code,
  1662. A.permit_entry,
  1663. A.permit_desc,
  1664. A.permit_type,
  1665. A.parent_id,
  1666. A.root_id,
  1667. A.sort_no,
  1668. A.is_home
  1669. FROM s_role_permit AS A
  1670. WHERE 1 = 1
  1671. AND A.client_id = 1
  1672. AND A.role_id = 9
  1673. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1674. 18:11:56.710 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:56 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1675. 18:11:56.718 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:56 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1676. role_id,
  1677. role_name,
  1678. role_code,
  1679. role_desc,
  1680. role_type_id,
  1681. sort_no,
  1682. is_fixed
  1683. FROM s_role
  1684. WHERE deleted_flag = 0
  1685. ORDER BY role_id ASC
  1686. 18:11:56.748 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:56 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1687. A.client_id,
  1688. A.role_id,
  1689. A.permit_id,
  1690. A.permit_title,
  1691. A.permit_code,
  1692. A.permit_entry,
  1693. A.permit_desc,
  1694. A.permit_type,
  1695. A.parent_id,
  1696. A.root_id,
  1697. A.sort_no,
  1698. A.is_home
  1699. FROM s_role_permit AS A
  1700. WHERE 1 = 1
  1701. AND A.client_id = 2
  1702. AND A.role_id = 1
  1703. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1704. 18:11:59.999 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:11:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1705. 18:12:00.007 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1706. role_id,
  1707. role_name,
  1708. role_code,
  1709. role_desc,
  1710. role_type_id,
  1711. sort_no,
  1712. is_fixed
  1713. FROM s_role
  1714. WHERE deleted_flag = 0
  1715. ORDER BY role_id ASC
  1716. 18:12:00.053 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:00 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  1717. A.client_id,
  1718. A.role_id,
  1719. A.permit_id,
  1720. A.permit_title,
  1721. A.permit_code,
  1722. A.permit_entry,
  1723. A.permit_desc,
  1724. A.permit_type,
  1725. A.parent_id,
  1726. A.root_id,
  1727. A.sort_no,
  1728. A.is_home
  1729. FROM s_role_permit AS A
  1730. WHERE 1 = 1
  1731. AND A.client_id = 3
  1732. AND A.role_id = 1
  1733. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1734. 18:12:02.557 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1735. 18:12:02.564 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1736. role_id,
  1737. role_name,
  1738. role_code,
  1739. role_desc,
  1740. role_type_id,
  1741. sort_no,
  1742. is_fixed
  1743. FROM s_role
  1744. WHERE deleted_flag = 0
  1745. ORDER BY role_id ASC
  1746. 18:12:02.603 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1747. A.client_id,
  1748. A.role_id,
  1749. A.permit_id,
  1750. A.permit_title,
  1751. A.permit_code,
  1752. A.permit_entry,
  1753. A.permit_desc,
  1754. A.permit_type,
  1755. A.parent_id,
  1756. A.root_id,
  1757. A.sort_no,
  1758. A.is_home
  1759. FROM s_role_permit AS A
  1760. WHERE 1 = 1
  1761. AND A.client_id = 4
  1762. AND A.role_id = 1
  1763. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1764. 18:12:04.492 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:04 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1765. 18:12:04.500 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:04 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1766. role_id,
  1767. role_name,
  1768. role_code,
  1769. role_desc,
  1770. role_type_id,
  1771. sort_no,
  1772. is_fixed
  1773. FROM s_role
  1774. WHERE deleted_flag = 0
  1775. ORDER BY role_id ASC
  1776. 18:12:04.540 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:04 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1777. A.client_id,
  1778. A.role_id,
  1779. A.permit_id,
  1780. A.permit_title,
  1781. A.permit_code,
  1782. A.permit_entry,
  1783. A.permit_desc,
  1784. A.permit_type,
  1785. A.parent_id,
  1786. A.root_id,
  1787. A.sort_no,
  1788. A.is_home
  1789. FROM s_role_permit AS A
  1790. WHERE 1 = 1
  1791. AND A.client_id = 5
  1792. AND A.role_id = 1
  1793. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1794. 18:12:06.257 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:06 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT 1
  1795. 18:12:06.264 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:06 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1796. role_id,
  1797. role_name,
  1798. role_code,
  1799. role_desc,
  1800. role_type_id,
  1801. sort_no,
  1802. is_fixed
  1803. FROM s_role
  1804. WHERE deleted_flag = 0
  1805. ORDER BY role_id ASC
  1806. 18:12:06.299 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:06 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1807. A.client_id,
  1808. A.role_id,
  1809. A.permit_id,
  1810. A.permit_title,
  1811. A.permit_code,
  1812. A.permit_entry,
  1813. A.permit_desc,
  1814. A.permit_type,
  1815. A.parent_id,
  1816. A.root_id,
  1817. A.sort_no,
  1818. A.is_home
  1819. FROM s_role_permit AS A
  1820. WHERE 1 = 1
  1821. AND A.client_id = 6
  1822. AND A.role_id = 1
  1823. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1824. 18:12:08.523 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:08 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1825. 18:12:08.530 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:08 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1826. role_id,
  1827. role_name,
  1828. role_code,
  1829. role_desc,
  1830. role_type_id,
  1831. sort_no,
  1832. is_fixed
  1833. FROM s_role
  1834. WHERE deleted_flag = 0
  1835. ORDER BY role_id ASC
  1836. 18:12:08.571 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:08 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  1837. A.client_id,
  1838. A.role_id,
  1839. A.permit_id,
  1840. A.permit_title,
  1841. A.permit_code,
  1842. A.permit_entry,
  1843. A.permit_desc,
  1844. A.permit_type,
  1845. A.parent_id,
  1846. A.root_id,
  1847. A.sort_no,
  1848. A.is_home
  1849. FROM s_role_permit AS A
  1850. WHERE 1 = 1
  1851. AND A.client_id = 7
  1852. AND A.role_id = 1
  1853. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1854. 18:12:11.190 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:11 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1855. 18:12:11.198 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:11 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1856. role_id,
  1857. role_name,
  1858. role_code,
  1859. role_desc,
  1860. role_type_id,
  1861. sort_no,
  1862. is_fixed
  1863. FROM s_role
  1864. WHERE deleted_flag = 0
  1865. ORDER BY role_id ASC
  1866. 18:12:11.239 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:11 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  1867. A.client_id,
  1868. A.role_id,
  1869. A.permit_id,
  1870. A.permit_title,
  1871. A.permit_code,
  1872. A.permit_entry,
  1873. A.permit_desc,
  1874. A.permit_type,
  1875. A.parent_id,
  1876. A.root_id,
  1877. A.sort_no,
  1878. A.is_home
  1879. FROM s_role_permit AS A
  1880. WHERE 1 = 1
  1881. AND A.client_id = 8
  1882. AND A.role_id = 1
  1883. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1884. 18:12:16.387 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1885. 18:12:24.331 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1886. 18:12:24.338 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1887. client_id,
  1888. client_title,
  1889. client_app_id,
  1890. client_app_key,
  1891. client_app_secret,
  1892. client_desc,
  1893. status,
  1894. is_fixed
  1895. FROM client
  1896. WHERE deleted_flag = 0
  1897. AND client_app_id = '10001'
  1898. AND client_app_key = '82a8bf439373e305'
  1899. 18:12:24.352 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1900. A.oc_id,
  1901. B.oc_type_id,
  1902. B.oc_name,
  1903. A.account_id,
  1904. A.account_name,
  1905. A.account_real_name,
  1906. A.password,
  1907. A.account_type,
  1908. A.account_staff_no,
  1909. A.account_phone,
  1910. A.account_last_ip,
  1911. A.account_loc,
  1912. A.status,
  1913. A.account_avatar,
  1914. A.account_photo,
  1915. A.account_real_name,
  1916. A.account_intro,
  1917. A.wx_id,
  1918. A.is_fixed
  1919. FROM account AS A
  1920. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1921. WHERE A.deleted_flag = 0
  1922. AND (A.account_name = 'sxky'
  1923. OR A.account_phone = 'sxky'
  1924. OR A.account_mail = 'sxky'
  1925. OR A.account_staff_no = 'sxky')
  1926. 18:12:24.356 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1927. A.oc_id,
  1928. A.oc_name,
  1929. A.oc_type_id,
  1930. A.root_id,
  1931. A.parent_id,
  1932. A.admin_id,
  1933. B.account_name AS admin_name,
  1934. A.group_id,
  1935. A.node_left,
  1936. A.node_right,
  1937. A.node_level,
  1938. A.is_leaf,
  1939. A.status,
  1940. A.if_lic
  1941. FROM oc AS A
  1942. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  1943. WHERE A.oc_id = 406283
  1944. 18:12:24.360 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1945. A.rm_id,
  1946. A.role_id,
  1947. B.role_type_id,
  1948. B.role_code,
  1949. B.role_name,
  1950. A.account_id
  1951. FROM s_role_member AS A
  1952. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  1953. WHERE account_id = 406283
  1954. LIMIT 1
  1955. 18:12:24.364 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1956. A.gm_id,
  1957. A.oc_id,
  1958. A.group_id,
  1959. B.group_name,
  1960. B.node_left ,
  1961. B.node_right,
  1962. A.account_id
  1963. FROM s_group_member AS A
  1964. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1965. WHERE B.deleted_flag = 0
  1966. AND A.oc_id = 406283
  1967. AND A.account_id = 406283
  1968. LIMIT 1
  1969. 18:12:24.368 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1970. A.gmp_id,
  1971. A.oc_id,
  1972. A.group_id,
  1973. B.group_name,
  1974. A.account_id,
  1975. D.account_name,
  1976. D.account_real_name,
  1977. A.position_id,
  1978. C.position_name
  1979. FROM s_group_member_position A
  1980. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1981. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  1982. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  1983. WHERE A.deleted_flag = 0
  1984. AND A.oc_id = 406283
  1985. AND A.group_id = 406283
  1986. AND A.account_id = 406283
  1987. LIMIT 1
  1988. 18:12:24.373 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1989. A.gmpg_id,
  1990. A.oc_id,
  1991. A.group_id,
  1992. A.account_id,
  1993. A.position_id,
  1994. A.grant_group_id,
  1995. B.group_name AS grant_group_name
  1996. FROM s_group_member_position_grant A
  1997. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  1998. WHERE A.deleted_flag = 0
  1999. AND A.oc_id = 406283
  2000. AND A.group_id = 406283
  2001. AND A.account_id = 406283
  2002. AND A.position_id = 406283
  2003. LIMIT 1
  2004. 18:12:24.405 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2005. client_id,
  2006. client_title,
  2007. client_app_id,
  2008. client_app_key,
  2009. client_app_secret,
  2010. client_desc,
  2011. status,
  2012. is_fixed
  2013. FROM client
  2014. WHERE deleted_flag = 0
  2015. AND client_app_id = '10001'
  2016. AND client_app_key = '82a8bf439373e305'
  2017. 18:12:24.419 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2018. A.client_id,
  2019. A.role_id,
  2020. A.permit_id,
  2021. A.permit_title,
  2022. A.permit_code,
  2023. A.permit_entry,
  2024. A.permit_desc,
  2025. A.permit_type,
  2026. A.parent_id,
  2027. A.root_id,
  2028. A.sort_no,
  2029. A.is_home
  2030. FROM s_role_permit AS A
  2031. WHERE 1 = 1
  2032. AND A.client_id = 2
  2033. AND A.role_id = 6
  2034. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2035. 18:12:24.688 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:24 | Time Consuming: 30 ms | Connection: statement-5 | SQL: SELECT count(*)
  2036. FROM msg AS M
  2037. WHERE M.oc_id = 406283
  2038. AND (
  2039. EXISTS (
  2040. SELECT 1 FROM msg_to TT
  2041. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  2042. ) OR
  2043. EXISTS (
  2044. SELECT 1 FROM msg_cc CC
  2045. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  2046. )
  2047. )
  2048. 18:12:25.053 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2049. FROM goaf_devinfo
  2050. where oc_id = 406283
  2051. 18:12:30.516 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:30 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2052. 18:12:30.523 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:30 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2053. FROM goaf_devinfo
  2054. where oc_id = 406283
  2055. 18:12:35.660 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:35 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2056. 18:12:35.667 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:12:35 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2057. FROM goaf_devinfo
  2058. where oc_id = 406283
  2059. 18:13:07.531 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:13:07 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2060. 18:13:07.538 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:13:07 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2061. FROM goaf_devinfo
  2062. where oc_id = 406283
  2063. 18:14:44.283 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2064. 18:14:44.284 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2065. 18:14:44.287 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2066. 18:14:44.290 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2067. 18:14:44.290 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2068. 18:14:44.290 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2069. 18:14:44.298 [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)
  2070. 18:14:44.300 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2071. 18:14:44.300 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2072. 18:14:44.300 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2073. 18:14:44.300 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2074. 18:14:44.319 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2075. 18:14:44.323 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2076. 18:16:54.171 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2077. 18:16:54.243 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16196 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2078. 18:16:54.244 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2079. 18:16:54.325 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2080. 18:16:54.326 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2081. 18:16:56.431 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2082. 18:16:56.435 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2083. 18:16:56.542 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 91 ms. Found 0 Redis repository interfaces.
  2084. 18:16:56.725 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2085. 18:16:56.742 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2086. 18:16:57.669 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2087. 18:16:57.670 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3343 ms
  2088. 18:17:00.055 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2089. 18:17:00.065 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2090. 18:17:00.065 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2091. 18:17:00.066 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2092. 18:17:00.066 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2093. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2094. NOT STARTED.
  2095. Currently in standby mode.
  2096. Number of jobs executed: 0
  2097. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2098. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2099. 18:17:00.067 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2100. 18:17:00.067 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2101. 18:17:00.067 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@44072e5e
  2102. 18:17:01.786 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2103. 18:17:01.791 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2104. 18:17:01.936 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2105. 18:17:01.969 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2106. 18:17:01.969 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2107. 18:17:01.969 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2108. 18:17:01.990 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2109. 18:17:01.999 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2110. 18:17:02.009 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2111. 18:17:02.038 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2112. 18:17:02.090 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2113. 18:17:02.091 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2114. 18:17:02.092 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2115. 18:17:02.116 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.603 seconds (process running for 9.584)
  2116. 18:17:02.118 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2117. 18:17:02.126 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2118. 18:17:02.456 [restartedMain] INFO p6spy - 2023-08-22 18:17:02 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  2119. 18:17:02.461 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5726682b
  2120. 18:17:02.472 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2121. 18:17:02.540 [restartedMain] INFO p6spy - 2023-08-22 18:17:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2122. A.job_id,
  2123. A.job_title,
  2124. A.job_desc,
  2125. A.status,
  2126. A.job_type,
  2127. A.job_code,
  2128. A.job_cron,
  2129. A.job_class_id,
  2130. B.job_class,
  2131. A.cycle_title,
  2132. A.cycle_period,
  2133. A.cycle_unit
  2134. FROM job AS A
  2135. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2136. WHERE A.deleted_flag = 0
  2137. AND A.status = 1
  2138. ORDER BY A.job_id ASC
  2139. 18:17:02.560 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2140. 18:17:02.562 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2141. 18:17:03.112 [RMI TCP Connection(12)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2142. 18:17:03.113 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2143. 18:17:03.115 [RMI TCP Connection(13)-192.168.3.5] INFO p6spy - 2023-08-22 18:17:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2144. 18:17:03.117 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  2145. 18:17:03.131 [RMI TCP Connection(13)-192.168.3.5] INFO p6spy - 2023-08-22 18:17:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2146. 18:17:09.473 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2147. 18:17:09.474 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2148. 18:17:09.493 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2149. 18:17:09.497 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2150. 18:17:09.498 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2151. 18:17:09.498 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2152. 18:17:09.520 [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)
  2153. 18:17:09.522 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2154. 18:17:09.522 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2155. 18:17:09.522 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2156. 18:17:09.523 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2157. 18:17:09.618 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2158. 18:17:09.639 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2159. 18:17:27.673 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2160. 18:17:27.767 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 2664 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2161. 18:17:27.768 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2162. 18:17:27.847 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2163. 18:17:27.847 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2164. 18:17:29.972 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2165. 18:17:29.975 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2166. 18:17:30.079 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 88 ms. Found 0 Redis repository interfaces.
  2167. 18:17:30.277 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2168. 18:17:30.294 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2169. 18:17:31.200 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2170. 18:17:31.200 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3352 ms
  2171. 18:17:33.826 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2172. 18:17:33.836 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2173. 18:17:33.837 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2174. 18:17:33.837 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2175. 18:17:33.838 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2176. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2177. NOT STARTED.
  2178. Currently in standby mode.
  2179. Number of jobs executed: 0
  2180. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2181. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2182. 18:17:33.838 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2183. 18:17:33.838 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2184. 18:17:33.838 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6b6ccb6e
  2185. 18:17:35.521 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2186. 18:17:35.527 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2187. 18:17:35.673 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2188. 18:17:35.704 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2189. 18:17:35.704 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2190. 18:17:35.705 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2191. 18:17:35.725 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2192. 18:17:35.737 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2193. 18:17:35.747 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2194. 18:17:35.776 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2195. 18:17:35.826 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2196. 18:17:35.827 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2197. 18:17:35.828 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2198. 18:17:35.851 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.8 seconds (process running for 9.761)
  2199. 18:17:35.854 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2200. 18:17:35.861 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2201. 18:17:36.194 [restartedMain] INFO p6spy - 2023-08-22 18:17:36 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2202. 18:17:36.199 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@727864e1
  2203. 18:17:36.210 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2204. 18:17:36.288 [restartedMain] INFO p6spy - 2023-08-22 18:17:36 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  2205. A.job_id,
  2206. A.job_title,
  2207. A.job_desc,
  2208. A.status,
  2209. A.job_type,
  2210. A.job_code,
  2211. A.job_cron,
  2212. A.job_class_id,
  2213. B.job_class,
  2214. A.cycle_title,
  2215. A.cycle_period,
  2216. A.cycle_unit
  2217. FROM job AS A
  2218. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2219. WHERE A.deleted_flag = 0
  2220. AND A.status = 1
  2221. ORDER BY A.job_id ASC
  2222. 18:17:36.310 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2223. 18:17:36.313 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2224. 18:17:37.119 [RMI TCP Connection(8)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2225. 18:17:37.120 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2226. 18:17:37.122 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-08-22 18:17:37 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2227. 18:17:37.125 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2228. 18:17:37.134 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-08-22 18:17:37 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2229. 18:18:00.009 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2230. 18:18:00.013 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 18:18:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2231. 18:18:00.030 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2232. 18:19:00.270 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2233. 18:19:00.272 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2234. 18:19:00.316 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2235. 18:19:00.320 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2236. 18:19:00.320 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2237. 18:19:00.320 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2238. 18:19:00.337 [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)
  2239. 18:19:00.338 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2240. 18:19:00.338 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2241. 18:19:00.338 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2242. 18:19:00.338 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2243. 18:19:00.369 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2244. 18:19:00.376 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2245. 18:29:46.808 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2246. 18:29:46.926 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 5076 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2247. 18:29:46.927 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2248. 18:29:47.035 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2249. 18:29:47.035 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2250. 18:29:49.664 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2251. 18:29:49.667 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2252. 18:29:49.761 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  2253. 18:29:49.938 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2254. 18:29:49.955 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2255. 18:29:50.734 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2256. 18:29:50.735 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3698 ms
  2257. 18:29:53.122 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2258. 18:29:53.132 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2259. 18:29:53.132 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2260. 18:29:53.133 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2261. 18:29:53.134 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2262. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2263. NOT STARTED.
  2264. Currently in standby mode.
  2265. Number of jobs executed: 0
  2266. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2267. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2268. 18:29:53.134 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2269. 18:29:53.134 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2270. 18:29:53.134 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6093fb32
  2271. 18:29:54.856 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2272. 18:29:54.862 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2273. 18:29:55.005 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2274. 18:29:55.037 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2275. 18:29:55.037 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2276. 18:29:55.037 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2277. 18:29:55.058 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2278. 18:29:55.067 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2279. 18:29:55.077 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2280. 18:29:55.104 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2281. 18:29:55.153 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2282. 18:29:55.155 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2283. 18:29:55.155 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2284. 18:29:55.179 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.181 seconds (process running for 10.318)
  2285. 18:29:55.182 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2286. 18:29:55.189 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2287. 18:29:55.538 [restartedMain] INFO p6spy - 2023-08-22 18:29:55 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2288. 18:29:55.543 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@33caa29
  2289. 18:29:55.547 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2290. 18:29:55.612 [restartedMain] INFO p6spy - 2023-08-22 18:29:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2291. A.job_id,
  2292. A.job_title,
  2293. A.job_desc,
  2294. A.status,
  2295. A.job_type,
  2296. A.job_code,
  2297. A.job_cron,
  2298. A.job_class_id,
  2299. B.job_class,
  2300. A.cycle_title,
  2301. A.cycle_period,
  2302. A.cycle_unit
  2303. FROM job AS A
  2304. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2305. WHERE A.deleted_flag = 0
  2306. AND A.status = 1
  2307. ORDER BY A.job_id ASC
  2308. 18:29:55.633 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2309. 18:29:55.635 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2310. 18:29:56.385 [RMI TCP Connection(14)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2311. 18:29:56.385 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2312. 18:29:56.386 [RMI TCP Connection(15)-192.168.3.5] INFO p6spy - 2023-08-22 18:29:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2313. 18:29:56.388 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  2314. 18:29:56.397 [RMI TCP Connection(15)-192.168.3.5] INFO p6spy - 2023-08-22 18:29:56 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2315. 18:30:00.007 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2316. 18:30:00.013 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 18:30:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2317. 18:30:00.032 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2318. 18:31:06.990 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:31:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2319. 18:31:07.012 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:31:07 | Time Consuming: 21 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  2320. 18:31:07.016 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:31:07 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  2321. 18:32:11.373 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:32:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2322. 18:32:11.399 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:32:11 | Time Consuming: 22 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  2323. ( oc_id,
  2324. goaf_sensor_id,
  2325. frequency_x,
  2326. frequency_y,
  2327. frequency_z,
  2328. acc_x,
  2329. acc_y,
  2330. acc_z,
  2331. vel_x,
  2332. vel_y,
  2333. vel_z,
  2334. dis_x,
  2335. dis_y,
  2336. dis_z,
  2337. sensor_temperature,
  2338. ang_x,
  2339. ang_y,
  2340. ang_z,
  2341. f_alarm_acc_x,
  2342. f_alarm_acc_y,
  2343. f_alarm_acc_z,
  2344. f_alarm_vel_x,
  2345. f_alarm_vel_y,
  2346. f_alarm_vel_z,
  2347. f_alarm_dis_x,
  2348. f_alarm_dis_y,
  2349. f_alarm_dis_z,
  2350. f_alarm_temperature,
  2351. td_wave_value_x,
  2352. td_wave_value_y,
  2353. td_wave_value_z )
  2354. values ( 406283,
  2355. 442092,
  2356. 0,
  2357. 0,
  2358. 0,
  2359. 1,
  2360. 1,
  2361. 1,
  2362. 3,
  2363. 5,
  2364. 5,
  2365. 1,
  2366. 2,
  2367. 1,
  2368. 321,
  2369. 11,
  2370. 87,
  2371. 56625,
  2372. 0,
  2373. 3,
  2374. 2,
  2375. 7,
  2376. 1,
  2377. 65534,
  2378. 2,
  2379. 5,
  2380. 7,
  2381. 4,
  2382. '9,65535,0,3,2,7,1,65534,2,5,7,4,9,5,1,1,1,4,65528,65533,65532,65533,0,65533,7,0,65532,7,1,0,65532,0,10,2,5,8,5,0,2,5,65534,65532,65534,2,1,0,3,0,0,7,0,4,0,65530,4,3,0,0,65535,65529,0,65534,65535,1,5,5,4,4,6,5,65531,65531,65534,65529,65534,3,6,10,4,0,0,0,1,65533,65526,0,1,65534,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  2383. '18,10,10,9,12,15,10,18,19,17,16,18,21,13,9,13,14,20,21,13,24,29,13,10,17,18,16,12,10,17,12,15,16,17,27,20,12,15,18,13,11,15,21,22,18,19,21,21,21,20,21,9,10,12,7,14,15,13,20,22,18,13,11,10,14,17,15,16,10,14,21,22,21,21,20,12,13,12,13,19,20,23,23,23,12,10,20,17,11,12,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  2384. '64560,64555,64545,64546,64549,64547,64544,64552,64548,64550,64553,64552,64557,64556,64547,64542,64549,64557,64554,64554,64558,64552,64548,64551,64551,64550,64553,64553,64552,64552,64557,64560,64555,64552,64549,64548,64553,64555,64548,64548,64551,64550,64549,64551,64548,64548,64551,64547,64547,64546,64548,64553,64558,64559,64553,64549,64549,64549,64551,64546,64548,64554,64553,64549,64547,64552,64551,64550,64550,64545,64547,64555,64548,64546,64551,64553,64546,64548,64548,64553,64558,64549,64549,64545,64543,64543,64553,64558,64551,64558,64558,64552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,' )
  2385. 18:37:12.298 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:12 | Time Consuming: 5005 ms | Connection: statement-0 | SQL: SELECT 1
  2386. 18:37:12.845 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:37:12 | Time Consuming: 5002 ms | Connection: statement-1 | SQL: SELECT 1
  2387. 18:37:17.302 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:17 | Time Consuming: 5002 ms | Connection: statement-2 | SQL: SELECT 1
  2388. 18:37:17.848 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:37:17 | Time Consuming: 5002 ms | Connection: statement-3 | SQL: SELECT 1
  2389. 18:37:17.853 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:37:17 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2390. 18:37:17.867 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:37:17 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  2391. client_id,
  2392. client_title,
  2393. client_app_id,
  2394. client_app_key,
  2395. client_app_secret,
  2396. client_desc,
  2397. status,
  2398. is_fixed
  2399. FROM client
  2400. WHERE deleted_flag = 0
  2401. AND client_app_id = '10001'
  2402. AND client_app_key = '82a8bf439373e305'
  2403. 18:37:17.886 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:37:17 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2404. A.client_id,
  2405. A.role_id,
  2406. A.permit_id,
  2407. A.permit_title,
  2408. A.permit_code,
  2409. A.permit_entry,
  2410. A.permit_desc,
  2411. A.permit_type,
  2412. A.parent_id,
  2413. A.root_id,
  2414. A.sort_no,
  2415. A.is_home
  2416. FROM s_role_permit AS A
  2417. WHERE 1 = 1
  2418. AND A.client_id = 2
  2419. AND A.role_id = 1
  2420. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2421. 18:37:18.060 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:37:18 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT count(*)
  2422. FROM msg AS M
  2423. WHERE M.oc_id = 1
  2424. AND (
  2425. EXISTS (
  2426. SELECT 1 FROM msg_to TT
  2427. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  2428. ) OR
  2429. EXISTS (
  2430. SELECT 1 FROM msg_cc CC
  2431. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  2432. )
  2433. )
  2434. 18:37:22.306 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:22 | Time Consuming: 5003 ms | Connection: statement-4 | SQL: SELECT 1
  2435. 18:37:22.312 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:22 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2436. 18:37:22.326 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:22 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2437. client_id,
  2438. client_title,
  2439. client_app_id,
  2440. client_app_key,
  2441. client_app_secret,
  2442. client_desc,
  2443. status,
  2444. is_fixed
  2445. FROM client
  2446. WHERE deleted_flag = 0
  2447. AND client_app_id = '10001'
  2448. AND client_app_key = '82a8bf439373e305'
  2449. 18:37:22.347 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:22 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT
  2450. A.client_id,
  2451. A.role_id,
  2452. A.permit_id,
  2453. A.permit_title,
  2454. A.permit_code,
  2455. A.permit_entry,
  2456. A.permit_desc,
  2457. A.permit_type,
  2458. A.parent_id,
  2459. A.root_id,
  2460. A.sort_no,
  2461. A.is_home
  2462. FROM s_role_permit AS A
  2463. WHERE 1 = 1
  2464. AND A.client_id = 2
  2465. AND A.role_id = 1
  2466. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2467. 18:37:24.651 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2468. 18:37:24.659 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2469. client_id,
  2470. client_title,
  2471. client_app_id,
  2472. client_app_key,
  2473. client_app_secret,
  2474. client_desc,
  2475. status,
  2476. is_fixed
  2477. FROM client
  2478. WHERE deleted_flag = 0
  2479. AND client_app_id = '10001'
  2480. AND client_app_key = '82a8bf439373e305'
  2481. 18:37:24.674 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  2482. A.oc_id,
  2483. B.oc_type_id,
  2484. B.oc_name,
  2485. A.account_id,
  2486. A.account_name,
  2487. A.account_real_name,
  2488. A.password,
  2489. A.account_type,
  2490. A.account_staff_no,
  2491. A.account_phone,
  2492. A.account_last_ip,
  2493. A.account_loc,
  2494. A.status,
  2495. A.account_avatar,
  2496. A.account_photo,
  2497. A.account_real_name,
  2498. A.account_intro,
  2499. A.wx_id,
  2500. A.is_fixed
  2501. FROM account AS A
  2502. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2503. WHERE A.deleted_flag = 0
  2504. AND (A.account_name = 'sxky'
  2505. OR A.account_phone = 'sxky'
  2506. OR A.account_mail = 'sxky'
  2507. OR A.account_staff_no = 'sxky')
  2508. 18:37:24.681 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2509. A.oc_id,
  2510. A.oc_name,
  2511. A.oc_type_id,
  2512. A.root_id,
  2513. A.parent_id,
  2514. A.admin_id,
  2515. B.account_name AS admin_name,
  2516. A.group_id,
  2517. A.node_left,
  2518. A.node_right,
  2519. A.node_level,
  2520. A.is_leaf,
  2521. A.status,
  2522. A.if_lic
  2523. FROM oc AS A
  2524. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  2525. WHERE A.oc_id = 406283
  2526. 18:37:24.685 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2527. A.rm_id,
  2528. A.role_id,
  2529. B.role_type_id,
  2530. B.role_code,
  2531. B.role_name,
  2532. A.account_id
  2533. FROM s_role_member AS A
  2534. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  2535. WHERE account_id = 406283
  2536. LIMIT 1
  2537. 18:37:24.690 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2538. A.gm_id,
  2539. A.oc_id,
  2540. A.group_id,
  2541. B.group_name,
  2542. B.node_left ,
  2543. B.node_right,
  2544. A.account_id
  2545. FROM s_group_member AS A
  2546. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2547. WHERE B.deleted_flag = 0
  2548. AND A.oc_id = 406283
  2549. AND A.account_id = 406283
  2550. LIMIT 1
  2551. 18:37:24.695 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2552. A.gmp_id,
  2553. A.oc_id,
  2554. A.group_id,
  2555. B.group_name,
  2556. A.account_id,
  2557. D.account_name,
  2558. D.account_real_name,
  2559. A.position_id,
  2560. C.position_name
  2561. FROM s_group_member_position A
  2562. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2563. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  2564. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  2565. WHERE A.deleted_flag = 0
  2566. AND A.oc_id = 406283
  2567. AND A.group_id = 406283
  2568. AND A.account_id = 406283
  2569. LIMIT 1
  2570. 18:37:24.701 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2571. A.gmpg_id,
  2572. A.oc_id,
  2573. A.group_id,
  2574. A.account_id,
  2575. A.position_id,
  2576. A.grant_group_id,
  2577. B.group_name AS grant_group_name
  2578. FROM s_group_member_position_grant A
  2579. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  2580. WHERE A.deleted_flag = 0
  2581. AND A.oc_id = 406283
  2582. AND A.group_id = 406283
  2583. AND A.account_id = 406283
  2584. AND A.position_id = 406283
  2585. LIMIT 1
  2586. 18:37:24.768 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2587. client_id,
  2588. client_title,
  2589. client_app_id,
  2590. client_app_key,
  2591. client_app_secret,
  2592. client_desc,
  2593. status,
  2594. is_fixed
  2595. FROM client
  2596. WHERE deleted_flag = 0
  2597. AND client_app_id = '10001'
  2598. AND client_app_key = '82a8bf439373e305'
  2599. 18:37:24.785 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:24 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  2600. A.client_id,
  2601. A.role_id,
  2602. A.permit_id,
  2603. A.permit_title,
  2604. A.permit_code,
  2605. A.permit_entry,
  2606. A.permit_desc,
  2607. A.permit_type,
  2608. A.parent_id,
  2609. A.root_id,
  2610. A.sort_no,
  2611. A.is_home
  2612. FROM s_role_permit AS A
  2613. WHERE 1 = 1
  2614. AND A.client_id = 2
  2615. AND A.role_id = 6
  2616. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2617. 18:37:25.124 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:25 | Time Consuming: 32 ms | Connection: statement-5 | SQL: SELECT count(*)
  2618. FROM msg AS M
  2619. WHERE M.oc_id = 406283
  2620. AND (
  2621. EXISTS (
  2622. SELECT 1 FROM msg_to TT
  2623. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  2624. ) OR
  2625. EXISTS (
  2626. SELECT 1 FROM msg_cc CC
  2627. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  2628. )
  2629. )
  2630. 18:37:25.692 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2631. 18:37:25.709 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:25 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT *
  2632. FROM goaf_devinfo
  2633. where oc_id = 406283
  2634. 18:37:29.639 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:29 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2635. 18:37:29.652 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:37:29 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2636. FROM goaf_devinfo
  2637. where oc_id = 406283
  2638. 18:38:15.397 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:38:15 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2639. 18:38:15.397 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:38:15 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  2640. 18:38:15.436 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:38:15 | Time Consuming: 34 ms | Connection: statement-5 | SQL: SELECT count(*)
  2641. FROM msg AS M
  2642. WHERE M.oc_id = 406283
  2643. AND (
  2644. EXISTS (
  2645. SELECT 1 FROM msg_to TT
  2646. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  2647. ) OR
  2648. EXISTS (
  2649. SELECT 1 FROM msg_cc CC
  2650. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  2651. )
  2652. )
  2653. 18:38:15.595 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:38:15 | Time Consuming: 78 ms | Connection: statement-6 | SQL: SELECT count(0) FROM msg AS M LEFT JOIN account AS A ON (M.oc_id = A.oc_id AND M.msg_fr_id = A.account_id) LEFT JOIN msg_to AS B ON (M.oc_id = B.oc_id AND M.msg_id = B.msg_id AND B.msg_to_id = 406283) LEFT JOIN msg_cc AS C ON (M.oc_id = C.oc_id AND M.msg_id = C.msg_id AND C.msg_cc_id = 406283) LEFT JOIN msg_cat AS MC ON (MC.msg_cat_id = M.msg_cat_id) WHERE M.deleted_flag = 0 AND M.oc_id = 406283 AND (EXISTS (SELECT 1 FROM msg_to TT WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283) OR EXISTS (SELECT 1 FROM msg_cc CC WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283))
  2654. 18:38:15.741 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:38:15 | Time Consuming: 140 ms | Connection: statement-6 | SQL: SELECT
  2655. M.oc_id,
  2656. M.msg_id,
  2657. M.msg_fr_id,
  2658. A.account_name AS msg_fr_name,
  2659. A.account_real_name AS msg_fr_real_name,
  2660. A.account_avatar AS msg_fr_avatar,
  2661. M.msg_to_group,
  2662. M.msg_cc,
  2663. M.msg_to,
  2664. M.msg_content,
  2665. M.msg_cat_id,
  2666. MC.msg_cat_title,
  2667. MC.is_link,
  2668. MC.msg_cat_link,
  2669. MC.msg_cat_link_params,
  2670. M.msg_params,
  2671. MC.is_detailed,
  2672. M.status,
  2673. IFNULL(CASE WHEN B.status > 0 THEN B.status ELSE C.status END, 0) AS is_read,
  2674. M.msg_time
  2675. FROM msg AS M
  2676. LEFT JOIN account AS A ON ( M.oc_id = A.oc_id AND M.msg_fr_id = A.account_id)
  2677. LEFT JOIN msg_to AS B ON ( M.oc_id = B.oc_id AND M.msg_id = B.msg_id AND B.msg_to_id=406283)
  2678. LEFT JOIN msg_cc AS C ON ( M.oc_id = C.oc_id AND M.msg_id = C.msg_id AND C.msg_cc_id=406283)
  2679. LEFT JOIN msg_cat AS MC ON ( MC.msg_cat_id = M.msg_cat_id)
  2680. WHERE M.deleted_flag = 0
  2681. AND M.oc_id = 406283
  2682. AND (
  2683. EXISTS (
  2684. SELECT 1 FROM msg_to TT
  2685. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283
  2686. ) OR
  2687. EXISTS (
  2688. SELECT 1 FROM msg_cc CC
  2689. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283
  2690. )
  2691. )
  2692. ORDER BY M.created_at DESC
  2693. LIMIT 10
  2694. 18:38:19.211 [XNIO-1 task-5] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  2695. 18:38:19.211 [XNIO-1 task-4] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  2696. 18:38:19.211 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  2697. 18:38:19.212 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT 1
  2698. 18:38:19.227 [XNIO-1 task-2] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 7 ms | Connection: statement-7 | SQL: SELECT
  2699. oc_id,
  2700. map_id,
  2701. map_title,
  2702. map_desc,
  2703. map_cat_id,
  2704. map_raster_layer,
  2705. map_type_id
  2706. FROM ent_map
  2707. WHERE 1 = 1 AND deleted_flag = 0
  2708. AND oc_id = 406283
  2709. 18:38:19.232 [XNIO-1 task-5] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT
  2710. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  2711. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  2712. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  2713. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  2714. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  2715. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  2716. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  2717. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  2718. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  2719. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  2720. FROM goaf_hdanger AS A
  2721. WHERE A.oc_id = 406283 AND A.status != -1
  2722. AND A.hdanger_type = '0'
  2723. ORDER BY A.submit_time DESC
  2724. 18:38:19.232 [XNIO-1 task-4] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT
  2725. IFNULL(SUM( CASE WHEN hdanger_level = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelLowerNum',
  2726. IFNULL(SUM( CASE WHEN hdanger_level = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelGeneralNum',
  2727. IFNULL(SUM( CASE WHEN hdanger_level = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelMajorNum',
  2728. IFNULL(SUM( CASE WHEN hdanger_level = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerLevelSeriousNum',
  2729. IFNULL(SUM( CASE WHEN status = 0 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTosubmitNum',
  2730. IFNULL(SUM( CASE WHEN status = 1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToforreviewlNum',
  2731. IFNULL(SUM( CASE WHEN status = 2 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusTorectifyNum',
  2732. IFNULL(SUM( CASE WHEN status = 3 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusToacceptNum',
  2733. IFNULL(SUM( CASE WHEN status = 4 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCompleteNum',
  2734. IFNULL(SUM( CASE WHEN status = -1 THEN 1 ELSE 0 END ), 0) AS 'goafHdangerStatusCancelNum'
  2735. FROM goaf_hdanger AS A
  2736. WHERE A.oc_id = 406283 AND A.status != -1
  2737. AND A.hdanger_type = '1'
  2738. ORDER BY A.submit_time DESC
  2739. 18:38:19.233 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 10 ms | Connection: statement-8 | SQL: SELECT
  2740. A.hdanger_id,
  2741. A.oc_id,
  2742. A.goaf_id,
  2743. A.hdanger_title,
  2744. A.hdanger_level,
  2745. A.hdanger_type,
  2746. A.checklist_id,
  2747. A.hdanger_desc,
  2748. A.submit_group_id,
  2749. A.submit_group_name,
  2750. A.submit_position_id,
  2751. A.submit_position_name,
  2752. A.submit_account_id,
  2753. A.submit_account_name,
  2754. A.submit_time,
  2755. A.review_group_id,
  2756. A.review_group_name,
  2757. A.review_position_id,
  2758. A.review_position_name,
  2759. A.review_account_id,
  2760. A.review_account_name,
  2761. A.danger_deadline,
  2762. A.review_time,
  2763. A.review_remark,
  2764. A.rectify_group_id,
  2765. A.rectify_group_name,
  2766. A.rectify_position_id,
  2767. A.rectify_position_name,
  2768. A.rectify_account_id,
  2769. A.rectify_account_name,
  2770. A.rectify_time,
  2771. A.danger_reason,
  2772. A.rectify_measure,
  2773. A.rectify_remark,
  2774. A.accept_group_id,
  2775. A.accept_group_name,
  2776. A.accept_position_id,
  2777. A.accept_position_name,
  2778. A.accept_account_id,
  2779. A.accept_account_name,
  2780. A.accept_time,
  2781. A.accept_remark,
  2782. A.finish_time,
  2783. A.status,
  2784. B.wf_def_id,
  2785. B.wf_ins_id,
  2786. B.wf_ins_title,
  2787. B.cur_group_id,
  2788. B.cur_group_name,
  2789. B.cur_position_id,
  2790. B.cur_position_name,
  2791. B.cur_account_id,
  2792. B.cur_account_name,
  2793. B.cur_activity_ins_id,
  2794. B.cur_activity_code,
  2795. B.cur_activity_title,
  2796. B.cur_form_code,
  2797. B.cur_activity_begin_time
  2798. FROM goaf_hdanger AS A
  2799. LEFT JOIN wf_ins AS B ON A.hdanger_id = B.wf_ins_id
  2800. WHERE A.oc_id = 406283
  2801. AND A.hdanger_type = '1'
  2802. ORDER BY A.submit_time DESC
  2803. 18:38:19.275 [XNIO-1 task-3] INFO p6spy - 2023-08-22 18:38:19 | Time Consuming: 7 ms | Connection: statement-8 | SQL: SELECT A.goaflayer_id,
  2804. A.oc_id,
  2805. A.goaf_id,
  2806. A.goaf_name,
  2807. A.map_id,
  2808. A.layer_id,
  2809. B.layer_cat_id,
  2810. B.layer_title,
  2811. B.layer_marker,
  2812. B.layer_vector,
  2813. B.layer_vector_type
  2814. FROM goaf_map_layer AS A
  2815. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  2816. WHERE A.oc_id = 406283
  2817. AND A.map_id = '406283'
  2818. 18:47:38.857 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2819. 18:47:38.859 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2820. 18:47:38.864 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2821. 18:47:38.867 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2822. 18:47:38.867 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2823. 18:47:38.867 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2824. 18:47:38.876 [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)
  2825. 18:47:38.878 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2826. 18:47:38.878 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2827. 18:47:38.878 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2828. 18:47:38.878 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2829. 18:47:38.893 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2830. 18:47:38.896 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2831. 18:51:08.471 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2832. 18:51:08.518 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 8556 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2833. 18:51:08.519 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2834. 18:51:08.575 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2835. 18:51:08.575 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2836. 18:51:10.401 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2837. 18:51:10.404 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2838. 18:51:10.495 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  2839. 18:51:10.659 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2840. 18:51:10.675 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2841. 18:51:11.480 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2842. 18:51:11.481 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2906 ms
  2843. 18:51:14.018 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2844. 18:51:14.027 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2845. 18:51:14.027 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2846. 18:51:14.028 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2847. 18:51:14.029 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2848. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2849. NOT STARTED.
  2850. Currently in standby mode.
  2851. Number of jobs executed: 0
  2852. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2853. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2854. 18:51:14.029 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2855. 18:51:14.029 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2856. 18:51:14.029 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@732e2b4
  2857. 18:51:15.730 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2858. 18:51:15.736 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2859. 18:51:15.882 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2860. 18:51:15.913 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2861. 18:51:15.913 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2862. 18:51:15.914 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2863. 18:51:15.933 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2864. 18:51:15.943 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2865. 18:51:15.953 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2866. 18:51:15.983 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2867. 18:51:16.037 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2868. 18:51:16.038 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2869. 18:51:16.038 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2870. 18:51:16.063 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.098 seconds (process running for 9.025)
  2871. 18:51:16.065 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2872. 18:51:16.072 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2873. 18:51:16.399 [restartedMain] INFO p6spy - 2023-08-22 18:51:16 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2874. 18:51:16.403 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@3e2f7f6f
  2875. 18:51:16.413 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2876. 18:51:16.478 [restartedMain] INFO p6spy - 2023-08-22 18:51:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2877. A.job_id,
  2878. A.job_title,
  2879. A.job_desc,
  2880. A.status,
  2881. A.job_type,
  2882. A.job_code,
  2883. A.job_cron,
  2884. A.job_class_id,
  2885. B.job_class,
  2886. A.cycle_title,
  2887. A.cycle_period,
  2888. A.cycle_unit
  2889. FROM job AS A
  2890. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2891. WHERE A.deleted_flag = 0
  2892. AND A.status = 1
  2893. ORDER BY A.job_id ASC
  2894. 18:51:16.498 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2895. 18:51:16.500 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2896. 18:51:17.009 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2897. 18:51:17.010 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2898. 18:51:17.015 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  2899. 18:51:17.049 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-22 18:51:17 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  2900. 18:52:00.009 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  2901. 18:52:00.015 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 18:52:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2902. 18:52:00.041 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  2903. 18:52:11.085 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:52:11 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2904. 18:52:11.094 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:52:11 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  2905. 18:52:11.100 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:52:11 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  2906. 18:52:42.346 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:52:42 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2907. 18:52:42.369 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:52:42 | Time Consuming: 19 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  2908. ( goaf_data_id,
  2909. oc_id,
  2910. goaf_sensor_id,
  2911. frequency_x,
  2912. frequency_y,
  2913. frequency_z,
  2914. acc_x,
  2915. acc_y,
  2916. acc_z,
  2917. vel_x,
  2918. vel_y,
  2919. vel_z,
  2920. dis_x,
  2921. dis_y,
  2922. dis_z,
  2923. sensor_temperature,
  2924. ang_x,
  2925. ang_y,
  2926. ang_z,
  2927. f_alarm_acc_x,
  2928. f_alarm_acc_y,
  2929. f_alarm_acc_z,
  2930. f_alarm_vel_x,
  2931. f_alarm_vel_y,
  2932. f_alarm_vel_z,
  2933. f_alarm_dis_x,
  2934. f_alarm_dis_y,
  2935. f_alarm_dis_z,
  2936. f_alarm_temperature,
  2937. td_wave_value_x,
  2938. td_wave_value_y,
  2939. td_wave_value_z )
  2940. values ( 442093,
  2941. 406283,
  2942. 100,
  2943. 0,
  2944. 0,
  2945. 0,
  2946. 1,
  2947. 1,
  2948. 1,
  2949. 3,
  2950. 5,
  2951. 5,
  2952. 1,
  2953. 2,
  2954. 1,
  2955. 321,
  2956. 11,
  2957. 87,
  2958. 56625,
  2959. 0,
  2960. 3,
  2961. 2,
  2962. 7,
  2963. 1,
  2964. 65534,
  2965. 2,
  2966. 5,
  2967. 7,
  2968. 4,
  2969. '9,65535,0,3,2,7,1,65534,2,5,7,4,9,5,1,1,1,4,65528,65533,65532,65533,0,65533,7,0,65532,7,1,0,65532,0,10,2,5,8,5,0,2,5,65534,65532,65534,2,1,0,3,0,0,7,0,4,0,65530,4,3,0,0,65535,65529,0,65534,65535,1,5,5,4,4,6,5,65531,65531,65534,65529,65534,3,6,10,4,0,0,0,1,65533,65526,0,1,65534,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  2970. '18,10,10,9,12,15,10,18,19,17,16,18,21,13,9,13,14,20,21,13,24,29,13,10,17,18,16,12,10,17,12,15,16,17,27,20,12,15,18,13,11,15,21,22,18,19,21,21,21,20,21,9,10,12,7,14,15,13,20,22,18,13,11,10,14,17,15,16,10,14,21,22,21,21,20,12,13,12,13,19,20,23,23,23,12,10,20,17,11,12,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  2971. '64560,64555,64545,64546,64549,64547,64544,64552,64548,64550,64553,64552,64557,64556,64547,64542,64549,64557,64554,64554,64558,64552,64548,64551,64551,64550,64553,64553,64552,64552,64557,64560,64555,64552,64549,64548,64553,64555,64548,64548,64551,64550,64549,64551,64548,64548,64551,64547,64547,64546,64548,64553,64558,64559,64553,64549,64549,64549,64551,64546,64548,64554,64553,64549,64547,64552,64551,64550,64550,64545,64547,64555,64548,64546,64551,64553,64546,64548,64548,64553,64558,64549,64549,64545,64543,64543,64553,64558,64551,64558,64558,64552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,' )
  2972. 18:53:08.148 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2973. 18:53:08.149 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2974. 18:53:08.157 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2975. 18:53:08.159 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2976. 18:53:08.159 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2977. 18:53:08.160 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2978. 18:53:08.185 [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)
  2979. 18:53:08.186 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2980. 18:53:08.186 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2981. 18:53:08.186 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2982. 18:53:08.186 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2983. 18:53:08.198 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2984. 18:53:08.202 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2985. 18:57:52.978 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2986. 18:57:53.039 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 1072 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2987. 18:57:53.040 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2988. 18:57:53.112 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2989. 18:57:53.112 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2990. 18:57:55.220 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2991. 18:57:55.223 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2992. 18:57:55.312 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  2993. 18:57:55.473 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2994. 18:57:55.490 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2995. 18:57:56.229 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2996. 18:57:56.230 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3116 ms
  2997. 18:57:58.585 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2998. 18:57:58.595 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2999. 18:57:58.595 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3000. 18:57:58.596 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3001. 18:57:58.597 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3002. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3003. NOT STARTED.
  3004. Currently in standby mode.
  3005. Number of jobs executed: 0
  3006. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3007. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3008. 18:57:58.597 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3009. 18:57:58.597 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3010. 18:57:58.597 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@33deb636
  3011. 18:58:00.291 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3012. 18:58:00.297 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3013. 18:58:00.442 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3014. 18:58:00.472 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3015. 18:58:00.473 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3016. 18:58:00.473 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3017. 18:58:00.493 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3018. 18:58:00.502 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3019. 18:58:00.513 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3020. 18:58:00.543 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3021. 18:58:00.596 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3022. 18:58:00.598 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3023. 18:58:00.598 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3024. 18:58:00.622 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.486 seconds (process running for 9.489)
  3025. 18:58:00.624 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3026. 18:58:00.631 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3027. 18:58:03.059 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3028. 18:58:03.060 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3029. 18:58:03.077 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3030. 18:58:03.077 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3031. 18:58:03.077 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3032. 18:58:03.097 [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)
  3033. 18:58:03.100 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3034. 18:58:03.100 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3035. 18:58:03.100 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3036. 18:58:03.101 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3037. 18:58:19.828 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3038. 18:58:19.885 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16488 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3039. 18:58:19.886 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3040. 18:58:19.949 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3041. 18:58:19.950 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3042. 18:58:21.889 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3043. 18:58:21.892 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3044. 18:58:21.984 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  3045. 18:58:22.184 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3046. 18:58:22.205 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3047. 18:58:23.104 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3048. 18:58:23.104 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3154 ms
  3049. 18:58:25.752 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3050. 18:58:25.762 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3051. 18:58:25.762 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3052. 18:58:25.762 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3053. 18:58:25.763 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3054. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3055. NOT STARTED.
  3056. Currently in standby mode.
  3057. Number of jobs executed: 0
  3058. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3059. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3060. 18:58:25.763 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3061. 18:58:25.763 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3062. 18:58:25.763 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@b9ef9a7
  3063. 18:58:27.852 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3064. 18:58:27.858 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3065. 18:58:28.009 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3066. 18:58:28.047 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3067. 18:58:28.047 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3068. 18:58:28.048 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3069. 18:58:28.071 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3070. 18:58:28.083 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3071. 18:58:28.096 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3072. 18:58:28.132 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3073. 18:58:28.187 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3074. 18:58:28.189 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3075. 18:58:28.190 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3076. 18:58:28.217 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.023 seconds (process running for 9.91)
  3077. 18:58:28.220 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3078. 18:58:28.228 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3079. 18:58:28.601 [restartedMain] INFO p6spy - 2023-08-22 18:58:28 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  3080. 18:58:28.606 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@453140bc
  3081. 18:58:28.616 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3082. 18:58:28.692 [restartedMain] INFO p6spy - 2023-08-22 18:58:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3083. A.job_id,
  3084. A.job_title,
  3085. A.job_desc,
  3086. A.status,
  3087. A.job_type,
  3088. A.job_code,
  3089. A.job_cron,
  3090. A.job_class_id,
  3091. B.job_class,
  3092. A.cycle_title,
  3093. A.cycle_period,
  3094. A.cycle_unit
  3095. FROM job AS A
  3096. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3097. WHERE A.deleted_flag = 0
  3098. AND A.status = 1
  3099. ORDER BY A.job_id ASC
  3100. 18:58:28.717 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3101. 18:58:28.719 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3102. 18:58:29.197 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3103. 18:58:29.198 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3104. 18:58:29.202 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  3105. 18:58:29.209 [RMI TCP Connection(1)-192.168.3.5] INFO p6spy - 2023-08-22 18:58:29 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3106. 18:59:00.012 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  3107. 18:59:00.017 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 18:59:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3108. 18:59:00.033 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3109. 18:59:24.920 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:59:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3110. 18:59:24.928 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:59:24 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  3111. 18:59:24.932 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:59:24 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  3112. 18:59:33.543 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:59:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3113. 18:59:33.573 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 18:59:33 | Time Consuming: 26 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  3114. ( goaf_data_id,
  3115. oc_id,
  3116. goaf_sensor_id,
  3117. frequency_x,
  3118. frequency_y,
  3119. frequency_z,
  3120. acc_x,
  3121. acc_y,
  3122. acc_z,
  3123. vel_x,
  3124. vel_y,
  3125. vel_z,
  3126. dis_x,
  3127. dis_y,
  3128. dis_z,
  3129. sensor_temperature,
  3130. ang_x,
  3131. ang_y,
  3132. ang_z,
  3133. f_alarm_acc_x,
  3134. f_alarm_acc_y,
  3135. f_alarm_acc_z,
  3136. f_alarm_vel_x,
  3137. f_alarm_vel_y,
  3138. f_alarm_vel_z,
  3139. f_alarm_dis_x,
  3140. f_alarm_dis_y,
  3141. f_alarm_dis_z,
  3142. f_alarm_temperature,
  3143. td_wave_value_x,
  3144. td_wave_value_y,
  3145. td_wave_value_z )
  3146. values ( 442094,
  3147. 406283,
  3148. 100,
  3149. 0,
  3150. 0,
  3151. 0,
  3152. 1,
  3153. 1,
  3154. 1,
  3155. 3,
  3156. 5,
  3157. 5,
  3158. 1,
  3159. 2,
  3160. 1,
  3161. 321,
  3162. 11,
  3163. 87,
  3164. 56625,
  3165. 0,
  3166. 3,
  3167. 2,
  3168. 7,
  3169. 1,
  3170. 65534,
  3171. 2,
  3172. 5,
  3173. 7,
  3174. 4,
  3175. '9,65535,0,3,2,7,1,65534,2,5,7,4,9,5,1,1,1,4,65528,65533,65532,65533,0,65533,7,0,65532,7,1,0,65532,0,10,2,5,8,5,0,2,5,65534,65532,65534,2,1,0,3,0,0,7,0,4,0,65530,4,3,0,0,65535,65529,0,65534,65535,1,5,5,4,4,6,5,65531,65531,65534,65529,65534,3,6,10,4,0,0,0,1,65533,65526,0,1,65534,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3176. '18,10,10,9,12,15,10,18,19,17,16,18,21,13,9,13,14,20,21,13,24,29,13,10,17,18,16,12,10,17,12,15,16,17,27,20,12,15,18,13,11,15,21,22,18,19,21,21,21,20,21,9,10,12,7,14,15,13,20,22,18,13,11,10,14,17,15,16,10,14,21,22,21,21,20,12,13,12,13,19,20,23,23,23,12,10,20,17,11,12,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3177. '64560,64555,64545,64546,64549,64547,64544,64552,64548,64550,64553,64552,64557,64556,64547,64542,64549,64557,64554,64554,64558,64552,64548,64551,64551,64550,64553,64553,64552,64552,64557,64560,64555,64552,64549,64548,64553,64555,64548,64548,64551,64550,64549,64551,64548,64548,64551,64547,64547,64546,64548,64553,64558,64559,64553,64549,64549,64549,64551,64546,64548,64554,64553,64549,64547,64552,64551,64550,64550,64545,64547,64555,64548,64546,64551,64553,64546,64548,64548,64553,64558,64549,64549,64545,64543,64543,64553,64558,64551,64558,64558,64552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,' )
  3178. 19:04:55.348 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3179. 19:04:55.349 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3180. 19:04:55.362 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3181. 19:04:55.367 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3182. 19:04:55.367 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3183. 19:04:55.367 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3184. 19:04:55.437 [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)
  3185. 19:04:55.440 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3186. 19:04:55.440 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3187. 19:04:55.440 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3188. 19:04:55.441 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3189. 19:04:55.458 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3190. 19:04:55.465 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3191. 19:05:02.045 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3192. 19:05:02.095 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 17384 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3193. 19:05:02.096 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3194. 19:05:02.150 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3195. 19:05:02.150 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3196. 19:05:03.950 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3197. 19:05:03.954 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3198. 19:05:04.042 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 0 Redis repository interfaces.
  3199. 19:05:04.209 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3200. 19:05:04.226 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3201. 19:05:04.979 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3202. 19:05:04.979 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2828 ms
  3203. 19:05:07.357 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3204. 19:05:07.366 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3205. 19:05:07.366 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3206. 19:05:07.367 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3207. 19:05:07.368 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3208. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3209. NOT STARTED.
  3210. Currently in standby mode.
  3211. Number of jobs executed: 0
  3212. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3213. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3214. 19:05:07.368 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3215. 19:05:07.368 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3216. 19:05:07.368 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2dcaea4a
  3217. 19:05:09.139 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3218. 19:05:09.146 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3219. 19:05:09.311 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3220. 19:05:09.347 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3221. 19:05:09.347 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3222. 19:05:09.347 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3223. 19:05:09.369 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3224. 19:05:09.379 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3225. 19:05:09.390 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3226. 19:05:09.421 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3227. 19:05:09.478 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3228. 19:05:09.479 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3229. 19:05:09.479 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3230. 19:05:09.507 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.98 seconds (process running for 8.927)
  3231. 19:05:09.510 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3232. 19:05:09.518 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3233. 19:05:09.879 [restartedMain] INFO p6spy - 2023-08-22 19:05:09 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  3234. 19:05:09.884 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@6465d552
  3235. 19:05:09.888 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3236. 19:05:09.962 [restartedMain] INFO p6spy - 2023-08-22 19:05:09 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  3237. A.job_id,
  3238. A.job_title,
  3239. A.job_desc,
  3240. A.status,
  3241. A.job_type,
  3242. A.job_code,
  3243. A.job_cron,
  3244. A.job_class_id,
  3245. B.job_class,
  3246. A.cycle_title,
  3247. A.cycle_period,
  3248. A.cycle_unit
  3249. FROM job AS A
  3250. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3251. WHERE A.deleted_flag = 0
  3252. AND A.status = 1
  3253. ORDER BY A.job_id ASC
  3254. 19:05:09.986 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3255. 19:05:09.988 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3256. 19:05:10.674 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3257. 19:05:10.674 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3258. 19:05:10.675 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-22 19:05:10 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3259. 19:05:10.678 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  3260. 19:05:10.690 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-22 19:05:10 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  3261. 19:10:45.339 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3262. 19:10:45.340 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3263. 19:10:45.355 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3264. 19:10:45.359 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3265. 19:10:45.359 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3266. 19:10:45.359 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3267. 19:10:45.391 [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)
  3268. 19:10:45.393 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3269. 19:10:45.393 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3270. 19:10:45.393 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3271. 19:10:45.393 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3272. 19:10:45.461 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3273. 19:10:45.468 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3274. 19:11:09.498 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3275. 19:11:09.568 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 6240 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3276. 19:11:09.569 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3277. 19:11:09.642 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3278. 19:11:09.642 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3279. 19:11:12.302 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3280. 19:11:12.308 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3281. 19:11:12.450 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 120 ms. Found 0 Redis repository interfaces.
  3282. 19:11:12.694 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3283. 19:11:12.710 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3284. 19:11:13.571 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3285. 19:11:13.571 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3929 ms
  3286. 19:11:15.960 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3287. 19:11:15.969 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3288. 19:11:15.970 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3289. 19:11:15.970 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3290. 19:11:15.971 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3291. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3292. NOT STARTED.
  3293. Currently in standby mode.
  3294. Number of jobs executed: 0
  3295. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3296. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3297. 19:11:15.971 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3298. 19:11:15.971 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3299. 19:11:15.971 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  3300. 19:11:17.649 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3301. 19:11:17.654 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3302. 19:11:17.795 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3303. 19:11:17.828 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3304. 19:11:17.828 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3305. 19:11:17.829 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3306. 19:11:17.849 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3307. 19:11:17.859 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3308. 19:11:17.870 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3309. 19:11:17.899 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3310. 19:11:17.950 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3311. 19:11:17.951 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3312. 19:11:17.951 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3313. 19:11:17.976 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.127 seconds (process running for 10.121)
  3314. 19:11:17.978 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3315. 19:11:17.985 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3316. 19:11:18.310 [restartedMain] INFO p6spy - 2023-08-22 19:11:18 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  3317. 19:11:18.315 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1e9179a7
  3318. 19:11:18.325 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3319. 19:11:18.393 [restartedMain] INFO p6spy - 2023-08-22 19:11:18 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3320. A.job_id,
  3321. A.job_title,
  3322. A.job_desc,
  3323. A.status,
  3324. A.job_type,
  3325. A.job_code,
  3326. A.job_cron,
  3327. A.job_class_id,
  3328. B.job_class,
  3329. A.cycle_title,
  3330. A.cycle_period,
  3331. A.cycle_unit
  3332. FROM job AS A
  3333. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3334. WHERE A.deleted_flag = 0
  3335. AND A.status = 1
  3336. ORDER BY A.job_id ASC
  3337. 19:11:18.413 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3338. 19:11:18.415 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3339. 19:11:18.790 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3340. 19:11:18.791 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3341. 19:11:18.800 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 6 ms
  3342. 19:11:18.809 [RMI TCP Connection(8)-192.168.3.5] INFO p6spy - 2023-08-22 19:11:18 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  3343. 19:12:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  3344. 19:12:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 19:12:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3345. 19:12:00.033 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3346. 19:12:11.036 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 19:12:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3347. 19:12:11.044 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 19:12:11 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  3348. 19:12:11.048 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 19:12:11 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  3349. 19:12:37.247 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 19:12:37 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3350. 19:12:37.274 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 19:12:37 | Time Consuming: 22 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  3351. ( goaf_data_id,
  3352. oc_id,
  3353. goaf_sensor_id,
  3354. frequency_x,
  3355. frequency_y,
  3356. frequency_z,
  3357. acc_x,
  3358. acc_y,
  3359. acc_z,
  3360. vel_x,
  3361. vel_y,
  3362. vel_z,
  3363. dis_x,
  3364. dis_y,
  3365. dis_z,
  3366. sensor_temperature,
  3367. ang_x,
  3368. ang_y,
  3369. ang_z,
  3370. f_alarm_acc_x,
  3371. f_alarm_acc_y,
  3372. f_alarm_acc_z,
  3373. f_alarm_vel_x,
  3374. f_alarm_vel_y,
  3375. f_alarm_vel_z,
  3376. f_alarm_dis_x,
  3377. f_alarm_dis_y,
  3378. f_alarm_dis_z,
  3379. f_alarm_temperature,
  3380. td_wave_value_x,
  3381. td_wave_value_y,
  3382. td_wave_value_z,
  3383. goaf_datareport_time )
  3384. values ( 442095,
  3385. 406283,
  3386. 100,
  3387. 0,
  3388. 0,
  3389. 0,
  3390. 1,
  3391. 1,
  3392. 1,
  3393. 3,
  3394. 5,
  3395. 5,
  3396. 1,
  3397. 2,
  3398. 1,
  3399. 321,
  3400. 11,
  3401. 87,
  3402. 56625,
  3403. 0,
  3404. 3,
  3405. 2,
  3406. 7,
  3407. 1,
  3408. 65534,
  3409. 2,
  3410. 5,
  3411. 7,
  3412. 4,
  3413. '9,65535,0,3,2,7,1,65534,2,5,7,4,9,5,1,1,1,4,65528,65533,65532,65533,0,65533,7,0,65532,7,1,0,65532,0,10,2,5,8,5,0,2,5,65534,65532,65534,2,1,0,3,0,0,7,0,4,0,65530,4,3,0,0,65535,65529,0,65534,65535,1,5,5,4,4,6,5,65531,65531,65534,65529,65534,3,6,10,4,0,0,0,1,65533,65526,0,1,65534,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3414. '18,10,10,9,12,15,10,18,19,17,16,18,21,13,9,13,14,20,21,13,24,29,13,10,17,18,16,12,10,17,12,15,16,17,27,20,12,15,18,13,11,15,21,22,18,19,21,21,21,20,21,9,10,12,7,14,15,13,20,22,18,13,11,10,14,17,15,16,10,14,21,22,21,21,20,12,13,12,13,19,20,23,23,23,12,10,20,17,11,12,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3415. '64560,64555,64545,64546,64549,64547,64544,64552,64548,64550,64553,64552,64557,64556,64547,64542,64549,64557,64554,64554,64558,64552,64548,64551,64551,64550,64553,64553,64552,64552,64557,64560,64555,64552,64549,64548,64553,64555,64548,64548,64551,64550,64549,64551,64548,64548,64551,64547,64547,64546,64548,64553,64558,64559,64553,64549,64549,64549,64551,64546,64548,64554,64553,64549,64547,64552,64551,64550,64550,64545,64547,64555,64548,64546,64551,64553,64546,64548,64548,64553,64558,64549,64549,64545,64543,64543,64553,64558,64551,64558,64558,64552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3416. '2023-08-22T19:12:11.049991100' )
  3417. 19:44:04.315 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3418. 19:44:04.316 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3419. 19:44:04.323 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3420. 19:44:04.328 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3421. 19:44:04.328 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3422. 19:44:04.328 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3423. 19:44:04.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)
  3424. 19:44:04.361 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3425. 19:44:04.361 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3426. 19:44:04.361 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3427. 19:44:04.361 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3428. 19:44:04.400 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3429. 19:44:04.404 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3430. 19:44:12.338 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3431. 19:44:12.384 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 12708 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3432. 19:44:12.385 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3433. 19:44:12.438 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3434. 19:44:12.438 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3435. 19:44:14.223 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3436. 19:44:14.226 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3437. 19:44:14.313 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 0 Redis repository interfaces.
  3438. 19:44:14.485 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3439. 19:44:14.501 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3440. 19:44:15.242 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3441. 19:44:15.243 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2804 ms
  3442. 19:44:17.700 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3443. 19:44:17.710 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3444. 19:44:17.710 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3445. 19:44:17.710 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3446. 19:44:17.711 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3447. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3448. NOT STARTED.
  3449. Currently in standby mode.
  3450. Number of jobs executed: 0
  3451. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3452. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3453. 19:44:17.711 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3454. 19:44:17.711 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3455. 19:44:17.711 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@727b8ed7
  3456. 19:44:19.499 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3457. 19:44:19.505 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3458. 19:44:19.651 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3459. 19:44:19.682 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3460. 19:44:19.682 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3461. 19:44:19.683 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3462. 19:44:19.703 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3463. 19:44:19.712 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3464. 19:44:19.722 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3465. 19:44:19.751 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3466. 19:44:19.803 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3467. 19:44:19.804 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3468. 19:44:19.804 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3469. 19:44:19.829 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.951 seconds (process running for 8.904)
  3470. 19:44:19.831 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3471. 19:44:19.838 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3472. 19:44:20.164 [restartedMain] INFO p6spy - 2023-08-22 19:44:20 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3473. 19:44:20.170 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1c4e36c3
  3474. 19:44:20.173 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3475. 19:44:20.244 [restartedMain] INFO p6spy - 2023-08-22 19:44:20 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT
  3476. A.job_id,
  3477. A.job_title,
  3478. A.job_desc,
  3479. A.status,
  3480. A.job_type,
  3481. A.job_code,
  3482. A.job_cron,
  3483. A.job_class_id,
  3484. B.job_class,
  3485. A.cycle_title,
  3486. A.cycle_period,
  3487. A.cycle_unit
  3488. FROM job AS A
  3489. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3490. WHERE A.deleted_flag = 0
  3491. AND A.status = 1
  3492. ORDER BY A.job_id ASC
  3493. 19:44:20.264 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3494. 19:44:20.266 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3495. 19:48:01.584 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3496. 19:48:01.585 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3497. 19:48:01.600 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3498. 19:48:01.600 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3499. 19:48:01.600 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3500. 19:48:01.612 [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)
  3501. 19:48:01.614 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3502. 19:48:01.615 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3503. 19:48:01.615 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3504. 19:48:01.615 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3505. 19:48:01.648 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3506. 19:48:01.655 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3507. 19:48:16.878 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3508. 19:48:16.926 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 6668 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3509. 19:48:16.926 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3510. 19:48:16.979 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3511. 19:48:16.979 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3512. 19:48:18.785 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3513. 19:48:18.789 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3514. 19:48:18.873 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 0 Redis repository interfaces.
  3515. 19:48:19.039 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3516. 19:48:19.055 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3517. 19:48:19.807 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3518. 19:48:19.807 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2828 ms
  3519. 19:48:22.877 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3520. 19:48:22.887 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3521. 19:48:22.887 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3522. 19:48:22.888 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3523. 19:48:22.889 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3524. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3525. NOT STARTED.
  3526. Currently in standby mode.
  3527. Number of jobs executed: 0
  3528. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3529. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3530. 19:48:22.889 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3531. 19:48:22.889 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3532. 19:48:22.889 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6093fb32
  3533. 19:48:24.562 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3534. 19:48:24.568 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3535. 19:48:24.709 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3536. 19:48:24.741 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3537. 19:48:24.741 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3538. 19:48:24.742 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3539. 19:48:24.762 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3540. 19:48:24.771 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3541. 19:48:24.781 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3542. 19:48:24.812 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3543. 19:48:24.863 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3544. 19:48:24.864 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3545. 19:48:24.864 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3546. 19:48:24.889 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.481 seconds (process running for 9.345)
  3547. 19:48:24.891 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3548. 19:48:24.898 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3549. 19:48:25.259 [restartedMain] INFO p6spy - 2023-08-22 19:48:25 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  3550. 19:48:25.263 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@33caa29
  3551. 19:48:25.274 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3552. 19:48:25.363 [restartedMain] INFO p6spy - 2023-08-22 19:48:25 | Time Consuming: 28 ms | Connection: statement-0 | SQL: SELECT
  3553. A.job_id,
  3554. A.job_title,
  3555. A.job_desc,
  3556. A.status,
  3557. A.job_type,
  3558. A.job_code,
  3559. A.job_cron,
  3560. A.job_class_id,
  3561. B.job_class,
  3562. A.cycle_title,
  3563. A.cycle_period,
  3564. A.cycle_unit
  3565. FROM job AS A
  3566. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3567. WHERE A.deleted_flag = 0
  3568. AND A.status = 1
  3569. ORDER BY A.job_id ASC
  3570. 19:48:25.387 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3571. 19:48:25.389 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3572. 20:05:21.984 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3573. 20:05:21.989 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3574. 20:05:22.004 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3575. 20:05:22.005 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3576. 20:05:22.005 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3577. 20:05:22.223 [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)
  3578. 20:05:22.225 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3579. 20:05:22.225 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3580. 20:05:22.225 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3581. 20:05:22.226 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3582. 20:05:22.242 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3583. 20:05:22.407 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3584. 20:06:21.647 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3585. 20:06:21.705 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16924 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3586. 20:06:21.706 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3587. 20:06:21.769 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3588. 20:06:21.769 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3589. 20:06:23.669 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3590. 20:06:23.673 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3591. 20:06:23.764 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  3592. 20:06:23.934 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3593. 20:06:23.951 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3594. 20:06:24.699 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3595. 20:06:24.699 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2930 ms
  3596. 20:06:27.078 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3597. 20:06:27.088 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3598. 20:06:27.088 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3599. 20:06:27.089 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3600. 20:06:27.090 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3601. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3602. NOT STARTED.
  3603. Currently in standby mode.
  3604. Number of jobs executed: 0
  3605. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3606. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3607. 20:06:27.090 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3608. 20:06:27.090 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3609. 20:06:27.090 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3d76db71
  3610. 20:06:28.816 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3611. 20:06:28.822 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3612. 20:06:28.966 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3613. 20:06:28.997 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3614. 20:06:28.997 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3615. 20:06:28.997 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3616. 20:06:29.017 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3617. 20:06:29.026 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3618. 20:06:29.036 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3619. 20:06:29.066 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3620. 20:06:29.119 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3621. 20:06:29.120 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3622. 20:06:29.120 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3623. 20:06:29.145 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.203 seconds (process running for 9.171)
  3624. 20:06:29.147 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3625. 20:06:29.155 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3626. 20:06:29.474 [restartedMain] INFO p6spy - 2023-08-22 20:06:29 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3627. 20:06:29.478 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@72abc179
  3628. 20:06:29.488 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3629. 20:06:29.560 [restartedMain] INFO p6spy - 2023-08-22 20:06:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3630. A.job_id,
  3631. A.job_title,
  3632. A.job_desc,
  3633. A.status,
  3634. A.job_type,
  3635. A.job_code,
  3636. A.job_cron,
  3637. A.job_class_id,
  3638. B.job_class,
  3639. A.cycle_title,
  3640. A.cycle_period,
  3641. A.cycle_unit
  3642. FROM job AS A
  3643. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3644. WHERE A.deleted_flag = 0
  3645. AND A.status = 1
  3646. ORDER BY A.job_id ASC
  3647. 20:06:29.581 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3648. 20:06:29.582 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3649. 20:06:40.416 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3650. 20:06:40.417 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3651. 20:06:40.439 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3652. 20:06:40.440 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3653. 20:06:40.440 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3654. 20:06:40.471 [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)
  3655. 20:06:40.473 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3656. 20:06:40.473 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3657. 20:06:40.473 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3658. 20:06:40.474 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3659. 20:06:40.498 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3660. 20:06:40.719 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3661. 20:08:00.486 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3662. 20:08:00.554 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 10000 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3663. 20:08:00.554 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3664. 20:08:00.616 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3665. 20:08:00.616 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3666. 20:08:02.611 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3667. 20:08:02.614 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3668. 20:08:02.709 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  3669. 20:08:02.879 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3670. 20:08:02.896 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3671. 20:08:03.648 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3672. 20:08:03.648 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3031 ms
  3673. 20:08:06.043 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3674. 20:08:06.053 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3675. 20:08:06.053 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3676. 20:08:06.054 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3677. 20:08:06.055 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3678. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3679. NOT STARTED.
  3680. Currently in standby mode.
  3681. Number of jobs executed: 0
  3682. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3683. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3684. 20:08:06.055 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3685. 20:08:06.055 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3686. 20:08:06.055 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@306746c7
  3687. 20:08:07.737 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3688. 20:08:07.743 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3689. 20:08:07.888 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3690. 20:08:07.921 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3691. 20:08:07.922 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3692. 20:08:07.922 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3693. 20:08:07.942 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3694. 20:08:07.951 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3695. 20:08:07.963 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3696. 20:08:07.993 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3697. 20:08:08.043 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3698. 20:08:08.044 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3699. 20:08:08.045 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3700. 20:08:08.077 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.231 seconds (process running for 9.188)
  3701. 20:08:08.079 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3702. 20:08:08.087 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3703. 20:08:08.424 [restartedMain] INFO p6spy - 2023-08-22 20:08:08 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3704. 20:08:08.428 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@10b4c474
  3705. 20:08:08.432 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3706. 20:08:08.500 [restartedMain] INFO p6spy - 2023-08-22 20:08:08 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  3707. A.job_id,
  3708. A.job_title,
  3709. A.job_desc,
  3710. A.status,
  3711. A.job_type,
  3712. A.job_code,
  3713. A.job_cron,
  3714. A.job_class_id,
  3715. B.job_class,
  3716. A.cycle_title,
  3717. A.cycle_period,
  3718. A.cycle_unit
  3719. FROM job AS A
  3720. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3721. WHERE A.deleted_flag = 0
  3722. AND A.status = 1
  3723. ORDER BY A.job_id ASC
  3724. 20:08:08.521 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3725. 20:08:08.523 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3726. 20:08:08.876 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3727. 20:08:08.876 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3728. 20:08:08.881 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  3729. 20:08:08.885 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-22 20:08:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3730. 20:09:00.011 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  3731. 20:09:00.039 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 20:09:00 | Time Consuming: 27 ms | Connection: statement-0 | SQL: SELECT 1
  3732. 20:09:00.055 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3733. 20:09:11.230 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:09:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3734. 20:09:11.237 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:09:11 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  3735. FROM goaf_sensor
  3736. WHERE goaf_sensor_ip = '192.168.3.12'
  3737. 20:09:11.251 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:09:11 | Time Consuming: 8 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  3738. 20:09:11.255 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:09:11 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  3739. 20:09:44.831 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:09:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3740. 20:09:44.852 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:09:44 | Time Consuming: 16 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  3741. ( goaf_data_id,
  3742. oc_id,
  3743. goaf_sensor_id,
  3744. frequency_x,
  3745. frequency_y,
  3746. frequency_z,
  3747. acc_x,
  3748. acc_y,
  3749. acc_z,
  3750. vel_x,
  3751. vel_y,
  3752. vel_z,
  3753. dis_x,
  3754. dis_y,
  3755. dis_z,
  3756. sensor_temperature,
  3757. ang_x,
  3758. ang_y,
  3759. ang_z,
  3760. f_alarm_acc_x,
  3761. f_alarm_acc_y,
  3762. f_alarm_acc_z,
  3763. f_alarm_vel_x,
  3764. f_alarm_vel_y,
  3765. f_alarm_vel_z,
  3766. f_alarm_dis_x,
  3767. f_alarm_dis_y,
  3768. f_alarm_dis_z,
  3769. f_alarm_temperature,
  3770. td_wave_value_x,
  3771. td_wave_value_y,
  3772. td_wave_value_z,
  3773. goaf_datareport_time )
  3774. values ( 442096,
  3775. 406283,
  3776. 100,
  3777. 0,
  3778. 0,
  3779. 0,
  3780. 1,
  3781. 1,
  3782. 1,
  3783. 3,
  3784. 5,
  3785. 5,
  3786. 1,
  3787. 2,
  3788. 1,
  3789. 321,
  3790. 11,
  3791. 87,
  3792. 56625,
  3793. 0,
  3794. 3,
  3795. 2,
  3796. 7,
  3797. 1,
  3798. 65534,
  3799. 2,
  3800. 5,
  3801. 7,
  3802. 4,
  3803. '9,65535,0,3,2,7,1,65534,2,5,7,4,9,5,1,1,1,4,65528,65533,65532,65533,0,65533,7,0,65532,7,1,0,65532,0,10,2,5,8,5,0,2,5,65534,65532,65534,2,1,0,3,0,0,7,0,4,0,65530,4,3,0,0,65535,65529,0,65534,65535,1,5,5,4,4,6,5,65531,65531,65534,65529,65534,3,6,10,4,0,0,0,1,65533,65526,0,1,65534,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3804. '18,10,10,9,12,15,10,18,19,17,16,18,21,13,9,13,14,20,21,13,24,29,13,10,17,18,16,12,10,17,12,15,16,17,27,20,12,15,18,13,11,15,21,22,18,19,21,21,21,20,21,9,10,12,7,14,15,13,20,22,18,13,11,10,14,17,15,16,10,14,21,22,21,21,20,12,13,12,13,19,20,23,23,23,12,10,20,17,11,12,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3805. '64560,64555,64545,64546,64549,64547,64544,64552,64548,64550,64553,64552,64557,64556,64547,64542,64549,64557,64554,64554,64558,64552,64548,64551,64551,64550,64553,64553,64552,64552,64557,64560,64555,64552,64549,64548,64553,64555,64548,64548,64551,64550,64549,64551,64548,64548,64551,64547,64547,64546,64548,64553,64558,64559,64553,64549,64549,64549,64551,64546,64548,64554,64553,64549,64547,64552,64551,64550,64550,64545,64547,64555,64548,64546,64551,64553,64546,64548,64548,64553,64558,64549,64549,64545,64543,64543,64553,64558,64551,64558,64558,64552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  3806. '2023-08-22T20:09:37.617967100' )
  3807. 20:09:51.865 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3808. 20:09:51.866 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3809. 20:09:51.877 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3810. 20:09:51.883 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3811. 20:09:51.884 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3812. 20:09:51.889 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3813. 20:09:51.900 [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)
  3814. 20:09:51.901 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3815. 20:09:51.902 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3816. 20:09:51.903 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3817. 20:09:51.903 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3818. 20:09:51.928 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3819. 20:09:51.932 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3820. 20:35:01.938 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3821. 20:35:01.989 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 5000 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3822. 20:35:01.990 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3823. 20:35:02.043 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3824. 20:35:02.043 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3825. 20:35:03.856 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3826. 20:35:03.860 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3827. 20:35:03.950 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  3828. 20:35:04.122 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3829. 20:35:04.139 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3830. 20:35:04.893 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3831. 20:35:04.894 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2850 ms
  3832. 20:35:07.283 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3833. 20:35:07.292 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3834. 20:35:07.293 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3835. 20:35:07.293 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3836. 20:35:07.294 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3837. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3838. NOT STARTED.
  3839. Currently in standby mode.
  3840. Number of jobs executed: 0
  3841. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3842. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3843. 20:35:07.294 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3844. 20:35:07.294 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3845. 20:35:07.294 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@652915cc
  3846. 20:35:09.089 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3847. 20:35:09.094 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3848. 20:35:09.264 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3849. 20:35:09.322 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3850. 20:35:09.323 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3851. 20:35:09.333 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3852. 20:35:09.372 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3853. 20:35:09.391 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3854. 20:35:09.411 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3855. 20:35:09.468 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3856. 20:35:09.540 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3857. 20:35:09.542 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3858. 20:35:09.543 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3859. 20:35:09.583 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.137 seconds (process running for 8.979)
  3860. 20:35:09.586 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3861. 20:35:09.597 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3862. 20:35:10.010 [restartedMain] INFO p6spy - 2023-08-22 20:35:10 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3863. 20:35:10.015 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@33435f
  3864. 20:35:10.025 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3865. 20:35:10.094 [restartedMain] INFO p6spy - 2023-08-22 20:35:10 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  3866. A.job_id,
  3867. A.job_title,
  3868. A.job_desc,
  3869. A.status,
  3870. A.job_type,
  3871. A.job_code,
  3872. A.job_cron,
  3873. A.job_class_id,
  3874. B.job_class,
  3875. A.cycle_title,
  3876. A.cycle_period,
  3877. A.cycle_unit
  3878. FROM job AS A
  3879. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3880. WHERE A.deleted_flag = 0
  3881. AND A.status = 1
  3882. ORDER BY A.job_id ASC
  3883. 20:35:10.115 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3884. 20:35:10.117 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3885. 20:36:51.579 [RMI TCP Connection(12)-192.168.3.5] INFO p6spy - 2023-08-22 20:36:51 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT 1
  3886. 20:36:51.580 [RMI TCP Connection(10)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3887. 20:36:51.580 [RMI TCP Connection(10)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3888. 20:36:51.585 [RMI TCP Connection(10)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  3889. 20:36:51.601 [RMI TCP Connection(12)-192.168.3.5] INFO p6spy - 2023-08-22 20:36:51 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3890. 20:37:02.741 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3891. 20:37:02.742 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3892. 20:37:02.751 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3893. 20:37:02.754 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3894. 20:37:02.755 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3895. 20:37:02.755 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3896. 20:37:02.928 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3897. 20:37:02.929 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3898. 20:37:02.929 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3899. 20:37:02.929 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3900. 20:37:02.929 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3901. 20:37:02.941 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3902. 20:37:02.945 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3903. 20:37:43.503 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3904. 20:37:43.564 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 5092 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3905. 20:37:43.564 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3906. 20:37:43.636 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3907. 20:37:43.637 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3908. 20:37:45.714 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3909. 20:37:45.721 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3910. 20:37:45.823 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 86 ms. Found 0 Redis repository interfaces.
  3911. 20:37:46.027 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3912. 20:37:46.044 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3913. 20:37:46.947 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3914. 20:37:46.947 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3310 ms
  3915. 20:37:49.682 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3916. 20:37:49.693 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3917. 20:37:49.694 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3918. 20:37:49.694 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3919. 20:37:49.695 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3920. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3921. NOT STARTED.
  3922. Currently in standby mode.
  3923. Number of jobs executed: 0
  3924. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3925. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3926. 20:37:49.695 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3927. 20:37:49.695 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3928. 20:37:49.695 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@110efbbf
  3929. 20:37:51.505 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3930. 20:37:51.511 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3931. 20:37:51.661 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3932. 20:37:51.692 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3933. 20:37:51.692 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3934. 20:37:51.693 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3935. 20:37:51.713 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3936. 20:37:51.723 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3937. 20:37:51.732 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3938. 20:37:51.761 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3939. 20:37:51.810 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3940. 20:37:51.812 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3941. 20:37:51.812 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3942. 20:37:51.838 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.897 seconds (process running for 9.773)
  3943. 20:37:51.840 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3944. 20:37:51.848 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3945. 20:37:52.201 [restartedMain] INFO p6spy - 2023-08-22 20:37:52 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3946. 20:37:52.205 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@387df9f9
  3947. 20:37:52.215 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3948. 20:37:52.283 [restartedMain] INFO p6spy - 2023-08-22 20:37:52 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  3949. A.job_id,
  3950. A.job_title,
  3951. A.job_desc,
  3952. A.status,
  3953. A.job_type,
  3954. A.job_code,
  3955. A.job_cron,
  3956. A.job_class_id,
  3957. B.job_class,
  3958. A.cycle_title,
  3959. A.cycle_period,
  3960. A.cycle_unit
  3961. FROM job AS A
  3962. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3963. WHERE A.deleted_flag = 0
  3964. AND A.status = 1
  3965. ORDER BY A.job_id ASC
  3966. 20:37:52.304 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3967. 20:37:52.306 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3968. 20:37:53.072 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3969. 20:37:53.072 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3970. 20:37:53.081 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 8 ms
  3971. 20:37:53.089 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-22 20:37:53 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3972. 20:37:53.105 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-22 20:37:53 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3973. 20:38:00.006 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  3974. 20:38:00.011 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 20:38:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3975. 20:38:00.027 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  3976. 20:38:11.335 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:38:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3977. 20:38:11.340 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:38:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3978. FROM goaf_sensor
  3979. WHERE goaf_sensor_ip = '192.168.3.12'
  3980. 20:38:11.352 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:38:11 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  3981. 20:38:11.356 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:38:11 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  3982. 20:38:52.337 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:38:52 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3983. 20:38:52.367 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:38:52 | Time Consuming: 26 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  3984. ( goaf_data_id,
  3985. oc_id,
  3986. goaf_sensor_id,
  3987. frequency_x,
  3988. frequency_y,
  3989. frequency_z,
  3990. acc_x,
  3991. acc_y,
  3992. acc_z,
  3993. vel_x,
  3994. vel_y,
  3995. vel_z,
  3996. dis_x,
  3997. dis_y,
  3998. dis_z,
  3999. sensor_temperature,
  4000. ang_x,
  4001. ang_y,
  4002. ang_z,
  4003. f_alarm_acc_x,
  4004. f_alarm_acc_y,
  4005. f_alarm_acc_z,
  4006. f_alarm_vel_x,
  4007. f_alarm_vel_y,
  4008. f_alarm_vel_z,
  4009. f_alarm_dis_x,
  4010. f_alarm_dis_y,
  4011. f_alarm_dis_z,
  4012. f_alarm_temperature,
  4013. td_wave_value_x,
  4014. td_wave_value_y,
  4015. td_wave_value_z,
  4016. goaf_datareport_time )
  4017. values ( 442097,
  4018. 406283,
  4019. 100,
  4020. 0,
  4021. 0,
  4022. 0,
  4023. 1,
  4024. 1,
  4025. 1,
  4026. 3,
  4027. 5,
  4028. 6,
  4029. 0,
  4030. 1,
  4031. 1,
  4032. 341,
  4033. 5,
  4034. 87,
  4035. 56624,
  4036. 0,
  4037. 3,
  4038. 2,
  4039. 7,
  4040. 1,
  4041. 65534,
  4042. 2,
  4043. 5,
  4044. 7,
  4045. 4,
  4046. '2,5,65532,1,1,0,10,4,3,3,3,5,65535,3,65532,0,5,65532,0,6,8,2,2,65529,65533,3,65535,6,8,65532,65531,8,4,0,6,0,0,7,3,65526,65533,65535,3,5,65526,65531,65535,2,65531,0,11,1,3,65533,65531,65535,65528,0,6,0,65534,0,1,0,3,65535,65528,65532,65530,4,1,0,65534,65529,65534,65532,65535,3,2,65531,65533,0,65534,2,5,5,1,0,65531,65523,0,4,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  4047. '18,20,21,26,22,17,10,11,15,12,18,22,18,16,20,13,10,14,12,12,15,13,18,21,19,7,9,13,11,8,14,17,8,5,8,14,8,10,11,15,16,15,14,15,23,16,11,12,17,21,12,16,20,7,9,22,25,27,23,26,31,20,22,25,18,16,11,13,14,22,28,22,18,14,16,20,14,17,17,14,17,10,11,19,15,10,9,8,14,17,11,8,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  4048. '64560,64558,64548,64544,64550,64547,64543,64548,64550,64545,64549,64558,64553,64556,64562,64556,64545,64549,64549,64551,64556,64558,64545,64546,64547,64533,64546,64548,64546,64551,64553,64547,64556,64559,64547,64555,64555,64549,64548,64546,64548,64547,64552,64554,64554,64551,64544,64553,64555,64549,64550,64551,64549,64545,64548,64544,64543,64551,64550,64546,64547,64544,64539,64538,64543,64549,64541,64539,64543,64544,64549,64548,64546,64554,64551,64548,64553,64550,64547,64545,64547,64552,64549,64539,64543,64542,64540,64550,64547,64542,64546,64545,64541,64549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  4049. '2023-08-22T20:38:11.356199300' )
  4050. 20:47:56.013 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4051. 20:47:56.015 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4052. 20:47:56.026 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4053. 20:47:56.029 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4054. 20:47:56.029 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4055. 20:47:56.029 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4056. 20:47:56.061 [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)
  4057. 20:47:56.063 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4058. 20:47:56.063 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4059. 20:47:56.063 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4060. 20:47:56.064 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4061. 20:47:56.084 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4062. 20:47:56.088 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4063. 20:48:44.324 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4064. 20:48:44.423 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18712 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4065. 20:48:44.424 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4066. 20:48:44.536 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4067. 20:48:44.537 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4068. 20:48:47.231 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4069. 20:48:47.234 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4070. 20:48:47.347 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 98 ms. Found 0 Redis repository interfaces.
  4071. 20:48:47.513 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4072. 20:48:47.529 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4073. 20:48:48.282 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4074. 20:48:48.282 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3744 ms
  4075. 20:48:50.693 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4076. 20:48:50.703 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4077. 20:48:50.703 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4078. 20:48:50.704 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4079. 20:48:50.705 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4080. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4081. NOT STARTED.
  4082. Currently in standby mode.
  4083. Number of jobs executed: 0
  4084. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4085. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4086. 20:48:50.705 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4087. 20:48:50.705 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4088. 20:48:50.705 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@15e88965
  4089. 20:48:52.429 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4090. 20:48:52.437 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4091. 20:48:52.583 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4092. 20:48:52.615 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4093. 20:48:52.616 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4094. 20:48:52.616 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4095. 20:48:52.637 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4096. 20:48:52.647 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4097. 20:48:52.658 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4098. 20:48:52.689 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4099. 20:48:52.740 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4100. 20:48:52.742 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4101. 20:48:52.742 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4102. 20:48:52.767 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 9.224 seconds (process running for 10.192)
  4103. 20:48:52.769 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4104. 20:48:52.776 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4105. 20:48:53.097 [restartedMain] INFO p6spy - 2023-08-22 20:48:53 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4106. 20:48:53.101 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1e9179a7
  4107. 20:48:53.111 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4108. 20:48:53.182 [restartedMain] INFO p6spy - 2023-08-22 20:48:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4109. A.job_id,
  4110. A.job_title,
  4111. A.job_desc,
  4112. A.status,
  4113. A.job_type,
  4114. A.job_code,
  4115. A.job_cron,
  4116. A.job_class_id,
  4117. B.job_class,
  4118. A.cycle_title,
  4119. A.cycle_period,
  4120. A.cycle_unit
  4121. FROM job AS A
  4122. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4123. WHERE A.deleted_flag = 0
  4124. AND A.status = 1
  4125. ORDER BY A.job_id ASC
  4126. 20:48:53.202 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4127. 20:48:53.204 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4128. 20:48:53.741 [RMI TCP Connection(12)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4129. 20:48:53.742 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4130. 20:48:53.743 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-22 20:48:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4131. 20:48:53.746 [RMI TCP Connection(12)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  4132. 20:48:53.803 [RMI TCP Connection(11)-192.168.3.5] INFO p6spy - 2023-08-22 20:48:53 | Time Consuming: 34 ms | Connection: statement-0 | SQL: SELECT 1
  4133. 20:49:00.007 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  4134. 20:49:00.012 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-22 20:49:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4135. 20:49:00.029 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  4136. 20:50:21.179 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:50:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4137. 20:50:21.184 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:50:21 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  4138. FROM goaf_sensor
  4139. WHERE goaf_sensor_ip = '192.168.3.12'
  4140. 20:50:21.196 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:50:21 | Time Consuming: 7 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  4141. 20:50:21.200 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:50:21 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  4142. 20:50:21.227 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-22 20:50:21 | Time Consuming: 19 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  4143. ( goaf_data_id,
  4144. oc_id,
  4145. goaf_sensor_id,
  4146. frequency_x,
  4147. frequency_y,
  4148. frequency_z,
  4149. acc_x,
  4150. acc_y,
  4151. acc_z,
  4152. vel_x,
  4153. vel_y,
  4154. vel_z,
  4155. dis_x,
  4156. dis_y,
  4157. dis_z,
  4158. sensor_temperature,
  4159. ang_x,
  4160. ang_y,
  4161. ang_z,
  4162. f_alarm_acc_x,
  4163. f_alarm_acc_y,
  4164. f_alarm_acc_z,
  4165. f_alarm_vel_x,
  4166. f_alarm_vel_y,
  4167. f_alarm_vel_z,
  4168. f_alarm_dis_x,
  4169. f_alarm_dis_y,
  4170. f_alarm_dis_z,
  4171. f_alarm_temperature,
  4172. td_wave_value_x,
  4173. td_wave_value_y,
  4174. td_wave_value_z,
  4175. goaf_datareport_time )
  4176. values ( 442098,
  4177. 406283,
  4178. 100,
  4179. 0,
  4180. 0,
  4181. 0,
  4182. 1,
  4183. 1,
  4184. 1,
  4185. 6,
  4186. 6,
  4187. 6,
  4188. 2,
  4189. 2,
  4190. 1,
  4191. 341,
  4192. 5,
  4193. 87,
  4194. 56624,
  4195. 65532,
  4196. 1,
  4197. 1,
  4198. 0,
  4199. 10,
  4200. 4,
  4201. 3,
  4202. 3,
  4203. 3,
  4204. 5,
  4205. '7,4,0,65530,1,0,65528,2,4,65533,65529,1,0,65533,3,65535,65524,65528,0,1,10,6,0,10,0,0,1,65531,2,4,0,15,13,4,0,3,10,65535,1,4,65528,65532,0,65534,65535,0,4,3,0,2,0,65532,1,65535,65531,65533,4,3,65532,65525,65522,0,2,4,65533,65529,65534,0,5,65526,65530,1,65534,65530,65534,4,65534,0,4,0,65535,65534,65527,65532,7,0,65531,0,65535,1,14,3,65531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  4206. '21,21,16,19,17,10,12,14,18,15,13,11,12,20,15,13,18,20,15,18,21,10,17,20,17,18,11,13,15,13,14,19,20,17,20,20,15,13,14,6,10,17,18,21,10,11,13,11,15,21,20,13,24,24,21,17,12,23,19,2,11,24,19,20,21,13,15,21,19,10,14,13,8,15,19,16,10,13,19,14,9,13,18,21,19,16,24,21,17,21,21,22,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  4207. '64550,64550,64553,64566,64558,64552,64549,64547,64552,64552,64551,64556,64546,64545,64558,64555,64547,64551,64554,64553,64556,64556,64549,64557,64560,64550,64556,64560,64555,64563,64567,64557,64563,64558,64549,64549,64558,64559,64553,64552,64539,64544,64550,64549,64558,64563,64557,64546,64544,64556,64551,64549,64553,64553,64556,64553,64552,64554,64556,64549,64544,64548,64553,64552,64549,64552,64555,64548,64547,64555,64555,64548,64550,64552,64561,64552,64542,64550,64556,64555,64545,64550,64549,64552,64554,64554,64560,64554,64541,64552,64551,64544,64552,64557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,',
  4208. '2023-08-22T20:50:21.201712800' )
  4209. 23:34:49.650 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4210. 23:34:49.652 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4211. 23:34:49.704 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4212. 23:34:49.708 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4213. 23:34:49.709 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4214. 23:34:49.709 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4215. 23:34:49.716 [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)
  4216. 23:34:49.717 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4217. 23:34:49.717 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4218. 23:34:49.717 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4219. 23:34:49.717 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4220. 23:34:49.732 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4221. 23:34:49.735 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4222. 23:40:06.303 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4223. 23:40:06.348 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3032 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4224. 23:40:06.348 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4225. 23:40:06.399 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4226. 23:40:06.399 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4227. 23:40:08.116 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4228. 23:40:08.119 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4229. 23:40:08.209 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  4230. 23:40:08.371 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4231. 23:40:08.386 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4232. 23:40:09.098 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4233. 23:40:09.098 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2699 ms
  4234. 23:40:11.340 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4235. 23:40:11.349 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4236. 23:40:11.349 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4237. 23:40:11.350 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4238. 23:40:11.350 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4239. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4240. NOT STARTED.
  4241. Currently in standby mode.
  4242. Number of jobs executed: 0
  4243. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4244. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4245. 23:40:11.350 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4246. 23:40:11.350 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4247. 23:40:11.350 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@797bdd7a
  4248. 23:40:12.879 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4249. 23:40:12.884 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4250. 23:40:13.014 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4251. 23:40:13.039 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4252. 23:40:13.040 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4253. 23:40:13.040 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4254. 23:40:13.058 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4255. 23:40:13.066 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4256. 23:40:13.074 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4257. 23:40:13.100 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4258. 23:40:13.151 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4259. 23:40:13.152 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4260. 23:40:13.152 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4261. 23:40:13.177 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.344 seconds (process running for 8.036)
  4262. 23:40:13.181 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4263. 23:40:13.188 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4264. 23:40:13.501 [restartedMain] INFO p6spy - 2023-08-22 23:40:13 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4265. 23:40:13.507 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@15db862d
  4266. 23:40:13.515 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4267. 23:40:13.583 [restartedMain] INFO p6spy - 2023-08-22 23:40:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  4268. A.job_id,
  4269. A.job_title,
  4270. A.job_desc,
  4271. A.status,
  4272. A.job_type,
  4273. A.job_code,
  4274. A.job_cron,
  4275. A.job_class_id,
  4276. B.job_class,
  4277. A.cycle_title,
  4278. A.cycle_period,
  4279. A.cycle_unit
  4280. FROM job AS A
  4281. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4282. WHERE A.deleted_flag = 0
  4283. AND A.status = 1
  4284. ORDER BY A.job_id ASC
  4285. 23:40:13.603 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4286. 23:40:13.605 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4287. 23:40:14.046 [RMI TCP Connection(2)-192.168.3.17] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4288. 23:40:14.047 [RMI TCP Connection(2)-192.168.3.17] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4289. 23:40:14.051 [RMI TCP Connection(2)-192.168.3.17] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  4290. 23:40:14.059 [RMI TCP Connection(3)-192.168.3.17] INFO p6spy - 2023-08-22 23:40:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  4291. 23:40:19.705 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4292. 23:40:19.706 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4293. 23:40:19.713 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4294. 23:40:19.715 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4295. 23:40:19.716 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4296. 23:40:19.716 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4297. 23:40:19.726 [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)
  4298. 23:40:19.728 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4299. 23:40:19.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4300. 23:40:19.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4301. 23:40:19.728 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4302. 23:40:19.762 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4303. 23:40:19.780 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.