visual.log 2.9 MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692156931569415695156961569715698156991570015701157021570315704157051570615707157081570915710157111571215713157141571515716157171571815719157201572115722157231572415725157261572715728157291573015731157321573315734157351573615737157381573915740157411574215743157441574515746157471574815749157501575115752157531575415755157561575715758157591576015761157621576315764157651576615767157681576915770157711577215773157741577515776157771577815779157801578115782157831578415785157861578715788157891579015791157921579315794157951579615797157981579915800158011580215803158041580515806158071580815809158101581115812158131581415815158161581715818158191582015821158221582315824158251582615827158281582915830158311583215833158341583515836158371583815839158401584115842158431584415845158461584715848158491585015851158521585315854158551585615857158581585915860158611586215863158641586515866
  1. 2018-08-15 07:57:15.561 |-WARN [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1111] -| Client session timed out, have not heard from server in 32972ms for sessionid 0x10000049a150000
  2. 2018-08-15 07:57:17.002 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1159] -| Client session timed out, have not heard from server in 32972ms for sessionid 0x10000049a150000, closing socket connection and attempting reconnect
  3. 2018-08-15 07:57:17.111 |-INFO [DubboZkclientConnector-EventThread] org.I0Itec.zkclient.ZkClient [449] -| zookeeper state changed (Disconnected)
  4. 2018-08-15 07:57:18.146 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1035] -| Opening socket connection to server 127.0.0.1/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
  5. 2018-08-15 07:57:18.147 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [877] -| Socket connection established to 127.0.0.1/127.0.0.1:2181, initiating session
  6. 2018-08-15 07:57:18.149 |-INFO [DubboZkclientConnector-EventThread] org.I0Itec.zkclient.ZkClient [449] -| zookeeper state changed (Expired)
  7. 2018-08-15 07:57:18.149 |-WARN [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1288] -| Unable to reconnect to ZooKeeper service, session 0x10000049a150000 has expired
  8. 2018-08-15 07:57:18.150 |-INFO [DubboZkclientConnector-EventThread] org.apache.zookeeper.ZooKeeper [441] -| Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=30000 watcher=org.I0Itec.zkclient.ZkClient@50a934e7
  9. 2018-08-15 07:57:18.150 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1157] -| Unable to reconnect to ZooKeeper service, session 0x10000049a150000 has expired, closing socket connection
  10. 2018-08-15 07:57:18.176 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1035] -| Opening socket connection to server 127.0.0.1/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
  11. 2018-08-15 07:57:18.178 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [877] -| Socket connection established to 127.0.0.1/127.0.0.1:2181, initiating session
  12. 2018-08-15 07:57:18.181 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1302] -| Session establishment complete on server 127.0.0.1/127.0.0.1:2181, sessionid = 0x10000049a150002, negotiated timeout = 30000
  13. 2018-08-15 07:57:18.188 |-INFO [DubboZkclientConnector-EventThread] org.I0Itec.zkclient.ZkClient [449] -| zookeeper state changed (SyncConnected)
  14. 2018-08-15 07:57:18.189 |-INFO [DubboZkclientConnector-EventThread] org.apache.zookeeper.ClientCnxn [520] -| EventThread shut down for session: 0x10000049a150000
  15. 2018-08-15 07:57:18.202 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Recover register url [consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  16. 2018-08-15 07:57:18.217 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Recover subscribe url [consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, provider://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, provider://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, provider://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  17. 2018-08-15 07:57:18.227 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  18. 2018-08-15 07:57:18.242 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, urls: [empty://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  19. 2018-08-15 07:57:18.249 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  20. 2018-08-15 07:57:18.260 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.netty.NettyChannel [59] -| [DUBBO] Close netty channel [id: 0x18db3a4a, /172.16.3.9:64059 => /172.16.3.9:7682], dubbo version: 2.0.1, current host: 172.16.3.9
  21. 2018-08-15 07:57:18.266 |-INFO [DubboSharedHandler-thread-1] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /172.16.3.9:7682,url:dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  22. 2018-08-15 07:57:18.311 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  23. 2018-08-15 07:57:18.321 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  24. 2018-08-15 07:57:18.322 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  25. 2018-08-15 07:57:18.323 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  26. 2018-08-15 07:57:18.325 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  27. 2018-08-15 07:57:18.328 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  28. 2018-08-15 07:57:18.339 |-WARN [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [79] -| [DUBBO] Failed to start NettyClient pds.local/172.16.3.9 connect to the server /172.16.3.9:7682 (check == false, ignore and retry later!), cause: client(url: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0) failed to connect to server /172.16.3.9:7682, error message is:Network is unreachable, dubbo version: 2.0.1, current host: 172.16.3.9
  29. com.alibaba.dubbo.remoting.RemotingException: client(url: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0) failed to connect to server /172.16.3.9:7682, error message is:Network is unreachable
  30. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:122)
  31. at com.alibaba.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:266)
  32. at com.alibaba.dubbo.remoting.transport.AbstractClient.<init>(AbstractClient.java:89)
  33. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.<init>(NettyClient.java:59)
  34. at com.alibaba.dubbo.remoting.transport.netty.NettyTransporter.connect(NettyTransporter.java:35)
  35. at com.alibaba.dubbo.remoting.Transporter$Adaptive.connect(Transporter$Adaptive.java)
  36. at com.alibaba.dubbo.remoting.Transporters.connect(Transporters.java:75)
  37. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchanger.connect(HeaderExchanger.java:38)
  38. at com.alibaba.dubbo.remoting.exchange.Exchangers.connect(Exchangers.java:109)
  39. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol.initClient(DubboProtocol.java:361)
  40. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol.getSharedClient(DubboProtocol.java:329)
  41. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol.getClients(DubboProtocol.java:306)
  42. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol.refer(DubboProtocol.java:288)
  43. at com.alibaba.dubbo.qos.protocol.QosProtocolWrapper.refer(QosProtocolWrapper.java:65)
  44. at com.alibaba.dubbo.rpc.protocol.ProtocolListenerWrapper.refer(ProtocolListenerWrapper.java:65)
  45. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper.refer(ProtocolFilterWrapper.java:100)
  46. at com.alibaba.dubbo.rpc.Protocol$Adaptive.refer(Protocol$Adaptive.java)
  47. at com.alibaba.dubbo.registry.integration.RegistryDirectory.toInvokers(RegistryDirectory.java:385)
  48. at com.alibaba.dubbo.registry.integration.RegistryDirectory.refreshInvoker(RegistryDirectory.java:251)
  49. at com.alibaba.dubbo.registry.integration.RegistryDirectory.notify(RegistryDirectory.java:221)
  50. at com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:407)
  51. at com.alibaba.dubbo.registry.support.FailbackRegistry.doNotify(FailbackRegistry.java:273)
  52. at com.alibaba.dubbo.registry.support.FailbackRegistry.notify(FailbackRegistry.java:259)
  53. at com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry.access$400(ZookeeperRegistry.java:43)
  54. at com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry$3.childChanged(ZookeeperRegistry.java:171)
  55. at com.alibaba.dubbo.remoting.zookeeper.zkclient.ZkclientZookeeperClient$2.handleChildChange(ZkclientZookeeperClient.java:108)
  56. at org.I0Itec.zkclient.ZkClient$7.run(ZkClient.java:568)
  57. at org.I0Itec.zkclient.ZkEventThread.run(ZkEventThread.java:71)
  58. Caused by: java.net.SocketException: Network is unreachable
  59. at sun.nio.ch.Net.connect0(Native Method)
  60. at sun.nio.ch.Net.connect(Net.java:454)
  61. at sun.nio.ch.Net.connect(Net.java:446)
  62. at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:648)
  63. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
  64. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
  65. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:779)
  66. at org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
  67. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  68. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
  69. at org.jboss.netty.channel.SimpleChannelHandler.connectRequested(SimpleChannelHandler.java:306)
  70. at org.jboss.netty.channel.SimpleChannelHandler.handleDownstream(SimpleChannelHandler.java:272)
  71. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  72. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
  73. at org.jboss.netty.channel.Channels.connect(Channels.java:634)
  74. at org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:216)
  75. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
  76. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
  77. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:86)
  78. ... 27 common frames omitted
  79. 2018-08-15 07:57:18.342 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, urls: [empty://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  80. 2018-08-15 07:57:18.343 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  81. 2018-08-15 07:57:18.345 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  82. 2018-08-15 07:57:18.345 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  83. 2018-08-15 07:57:18.347 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  84. 2018-08-15 07:57:18.348 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  85. 2018-08-15 07:57:18.350 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  86. 2018-08-15 07:57:18.351 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  87. 2018-08-15 07:57:18.352 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  88. 2018-08-15 07:57:18.353 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  89. 2018-08-15 07:57:18.354 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  90. 2018-08-15 07:57:18.355 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  91. 2018-08-15 07:57:18.356 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  92. 2018-08-15 07:57:18.357 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  93. 2018-08-15 07:57:18.358 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  94. 2018-08-15 07:57:18.359 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  95. 2018-08-15 07:57:18.360 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  96. 2018-08-15 07:57:18.361 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  97. 2018-08-15 07:57:18.362 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  98. 2018-08-15 07:57:18.365 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  99. 2018-08-15 07:57:18.366 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  100. 2018-08-15 07:57:18.367 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  101. 2018-08-15 07:57:18.368 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  102. 2018-08-15 07:57:18.369 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  103. 2018-08-15 07:57:18.370 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  104. 2018-08-15 07:57:18.371 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  105. 2018-08-15 07:57:18.372 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  106. 2018-08-15 07:57:18.374 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  107. 2018-08-15 07:57:18.901 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  108. 2018-08-15 07:57:18.905 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, urls: [empty://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  109. 2018-08-15 07:57:18.908 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  110. 2018-08-15 07:57:18.910 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  111. 2018-08-15 07:57:18.912 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  112. 2018-08-15 07:57:18.915 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  113. 2018-08-15 07:57:18.916 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  114. 2018-08-15 07:57:18.918 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  115. 2018-08-15 07:57:19.862 |-WARN [dubbo-remoting-server-heartbeat-thread-1] com.alibaba.dubbo.remoting.exchange.support.header.HeartBeatTask [71] -| [DUBBO] Close channel NettyChannel [channel=[id: 0xec284414, /172.16.3.9:63805 => /172.16.3.9:7682]], because heartbeat read idle time out: 180000ms, dubbo version: 2.0.1, current host: 172.16.3.9
  116. 2018-08-15 07:57:19.863 |-INFO [dubbo-remoting-server-heartbeat-thread-1] com.alibaba.dubbo.remoting.transport.netty.NettyChannel [59] -| [DUBBO] Close netty channel [id: 0xec284414, /172.16.3.9:63805 => /172.16.3.9:7682], dubbo version: 2.0.1, current host: 172.16.3.9
  117. 2018-08-15 07:57:19.864 |-WARN [dubbo-remoting-server-heartbeat-thread-1] com.alibaba.dubbo.remoting.exchange.support.header.HeartBeatTask [71] -| [DUBBO] Close channel NettyChannel [channel=[id: 0x63c237ce, /172.16.3.9:64059 => /172.16.3.9:7682]], because heartbeat read idle time out: 180000ms, dubbo version: 2.0.1, current host: 172.16.3.9
  118. 2018-08-15 07:57:19.864 |-INFO [dubbo-remoting-server-heartbeat-thread-1] com.alibaba.dubbo.remoting.transport.netty.NettyChannel [59] -| [DUBBO] Close netty channel [id: 0x63c237ce, /172.16.3.9:64059 => /172.16.3.9:7682], dubbo version: 2.0.1, current host: 172.16.3.9
  119. 2018-08-15 07:57:19.864 |-INFO [DubboServerHandler-172.16.3.9:7682-thread-165] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /172.16.3.9:63805,url:dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&channel.readonly.sent=true&codec=dubbo&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  120. 2018-08-15 07:57:19.864 |-WARN [New I/O worker #8] com.alibaba.dubbo.remoting.transport.AbstractServer [71] -| [DUBBO] All clients has discontected from /172.16.3.9:7682. You can graceful shutdown now., dubbo version: 2.0.1, current host: 172.16.3.9
  121. 2018-08-15 07:57:19.865 |-INFO [DubboServerHandler-172.16.3.9:7682-thread-166] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /172.16.3.9:64059,url:dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&channel.readonly.sent=true&codec=dubbo&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  122. 2018-08-15 07:57:20.334 |-WARN [DubboClientReconnectTimer-thread-2] com.alibaba.dubbo.remoting.transport.AbstractClient [79] -| [DUBBO] client reconnect to 172.16.3.9:7682 find error . url: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  123. com.alibaba.dubbo.remoting.RemotingException: client(url: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0) failed to connect to server /172.16.3.9:7682, error message is:Network is unreachable
  124. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:122)
  125. at com.alibaba.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:266)
  126. at com.alibaba.dubbo.remoting.transport.AbstractClient$1.run(AbstractClient.java:155)
  127. at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
  128. at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308)
  129. at java.util.concurrent.FutureTask.runAndReset(FutureTask.java)
  130. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
  131. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
  132. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  133. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  134. at java.lang.Thread.run(Thread.java:745)
  135. Caused by: java.net.SocketException: Network is unreachable
  136. at sun.nio.ch.Net.connect0(Native Method)
  137. at sun.nio.ch.Net.connect(Net.java:454)
  138. at sun.nio.ch.Net.connect(Net.java:446)
  139. at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:648)
  140. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
  141. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
  142. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:779)
  143. at org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
  144. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  145. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
  146. at org.jboss.netty.channel.SimpleChannelHandler.connectRequested(SimpleChannelHandler.java:306)
  147. at org.jboss.netty.channel.SimpleChannelHandler.handleDownstream(SimpleChannelHandler.java:272)
  148. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  149. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
  150. at org.jboss.netty.channel.Channels.connect(Channels.java:634)
  151. at org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:216)
  152. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
  153. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
  154. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:86)
  155. ... 10 common frames omitted
  156. 2018-08-15 07:57:20.729 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Retry register [consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  157. 2018-08-15 07:57:20.731 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timeout=3000&timestamp=1534232913095&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  158. 2018-08-15 07:57:20.734 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckApplyService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913037&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  159. 2018-08-15 07:57:20.735 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.TaskService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913114&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  160. 2018-08-15 07:57:20.737 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232912975&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  161. 2018-08-15 07:57:20.741 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckOtherService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913059&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  162. 2018-08-15 07:57:20.743 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckAppealService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913020&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  163. 2018-08-15 07:57:20.747 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, urls: [dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  164. 2018-08-15 07:57:20.749 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.ScoreService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_F&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913077&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  165. 2018-08-15 07:57:20.783 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Retry subscribe {consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@610ae1bc], consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@7d83bc76], provider://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener@c8197cb], consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@29b91d60], consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@360ce78e], provider://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener@47150661], consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@7ccbcbc7], consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@5ddcc892], consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@6f7dae1f], consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@37dbb1cb], consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@7ff62f1a], consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@7786c6ab], consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@4593099e], consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@3fc2016a], consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@54803b31], consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryDirectory@d4e808e], provider://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0=[com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener@3c71932]}, dubbo version: 2.0.1, current host: 172.16.3.9
  166. 2018-08-15 07:57:20.789 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, urls: [dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  167. 2018-08-15 07:57:20.796 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  168. 2018-08-15 07:57:20.799 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, urls: [empty://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  169. 2018-08-15 07:57:20.805 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckOtherService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913059&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  170. 2018-08-15 07:57:20.811 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckApplyService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913037&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  171. 2018-08-15 07:57:20.813 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, urls: [empty://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  172. 2018-08-15 07:57:20.820 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timeout=3000&timestamp=1534232913095&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  173. 2018-08-15 07:57:20.825 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  174. 2018-08-15 07:57:20.831 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckAppealService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913020&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  175. 2018-08-15 07:57:20.836 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  176. 2018-08-15 07:57:20.842 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.TaskService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913114&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  177. 2018-08-15 07:57:20.849 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  178. 2018-08-15 07:57:20.856 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  179. 2018-08-15 07:57:20.861 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  180. 2018-08-15 07:57:20.867 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232912975&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  181. 2018-08-15 07:57:20.912 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, urls: [dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.ScoreService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_F&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913077&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  182. 2018-08-15 07:57:20.914 |-INFO [DubboRegistryFailedRetryTimer-thread-1] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, urls: [empty://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  183. 2018-08-15 07:57:35.127 |-WARN [dubbo-remoting-client-heartbeat-thread-2] com.alibaba.dubbo.remoting.exchange.support.header.HeartBeatTask [71] -| [DUBBO] Close channel HeaderExchangeClient [channel=com.alibaba.dubbo.remoting.transport.netty.NettyClient [/172.16.3.9:63817 -> /172.16.3.9:7683]], because heartbeat read idle time out: 180000ms, dubbo version: 2.0.1, current host: 172.16.3.9
  184. 2018-08-15 07:57:35.127 |-INFO [dubbo-remoting-client-heartbeat-thread-2] com.alibaba.dubbo.remoting.transport.netty.NettyChannel [59] -| [DUBBO] Close netty channel [id: 0xa04c3249, /172.16.3.9:63817 => /172.16.3.9:7683], dubbo version: 2.0.1, current host: 172.16.3.9
  185. 2018-08-15 07:57:35.315 |-INFO [DubboClientHandler-172.16.3.9:7683-thread-10] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /172.16.3.9:7683,url:dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232912975&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  186. 2018-08-15 08:58:32.156 |-ERROR [DubboClientReconnectTimer-thread-2] com.alibaba.dubbo.remoting.transport.AbstractClient [91] -| [DUBBO] client reconnect to 172.16.3.9:7683 find error . url: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232912975&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  187. com.alibaba.dubbo.remoting.RemotingException: client(url: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232912975&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232872668&version=1.0.0) failed to connect to server /172.16.3.9:7683, error message is:Network is unreachable
  188. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:122)
  189. at com.alibaba.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:266)
  190. at com.alibaba.dubbo.remoting.transport.AbstractClient$1.run(AbstractClient.java:155)
  191. at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
  192. at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308)
  193. at java.util.concurrent.FutureTask.runAndReset(FutureTask.java)
  194. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
  195. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
  196. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  197. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  198. at java.lang.Thread.run(Thread.java:745)
  199. Caused by: java.net.SocketException: Network is unreachable
  200. at sun.nio.ch.Net.connect0(Native Method)
  201. at sun.nio.ch.Net.connect(Net.java:454)
  202. at sun.nio.ch.Net.connect(Net.java:446)
  203. at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:648)
  204. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
  205. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
  206. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:779)
  207. at org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
  208. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  209. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
  210. at org.jboss.netty.channel.SimpleChannelHandler.connectRequested(SimpleChannelHandler.java:306)
  211. at org.jboss.netty.channel.SimpleChannelHandler.handleDownstream(SimpleChannelHandler.java:272)
  212. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  213. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
  214. at org.jboss.netty.channel.Channels.connect(Channels.java:634)
  215. at org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:216)
  216. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
  217. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
  218. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:86)
  219. ... 10 common frames omitted
  220. 2018-08-15 08:58:32.157 |-ERROR [DubboClientReconnectTimer-thread-1] com.alibaba.dubbo.remoting.transport.AbstractClient [91] -| [DUBBO] client reconnect to 172.16.3.9:7682 find error . url: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  221. com.alibaba.dubbo.remoting.RemotingException: client(url: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232883755&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873667&version=1.0.0) failed to connect to server /172.16.3.9:7682, error message is:Network is unreachable
  222. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:122)
  223. at com.alibaba.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:266)
  224. at com.alibaba.dubbo.remoting.transport.AbstractClient$1.run(AbstractClient.java:155)
  225. at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
  226. at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308)
  227. at java.util.concurrent.FutureTask.runAndReset(FutureTask.java)
  228. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
  229. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
  230. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  231. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  232. at java.lang.Thread.run(Thread.java:745)
  233. Caused by: java.net.SocketException: Network is unreachable
  234. at sun.nio.ch.Net.connect0(Native Method)
  235. at sun.nio.ch.Net.connect(Net.java:454)
  236. at sun.nio.ch.Net.connect(Net.java:446)
  237. at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:648)
  238. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
  239. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
  240. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:779)
  241. at org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
  242. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  243. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
  244. at org.jboss.netty.channel.SimpleChannelHandler.connectRequested(SimpleChannelHandler.java:306)
  245. at org.jboss.netty.channel.SimpleChannelHandler.handleDownstream(SimpleChannelHandler.java:272)
  246. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  247. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
  248. at org.jboss.netty.channel.Channels.connect(Channels.java:634)
  249. at org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:216)
  250. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
  251. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
  252. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:86)
  253. ... 10 common frames omitted
  254. 2018-08-15 08:58:34.299 |-WARN [DubboClientReconnectTimer-thread-2] com.alibaba.dubbo.remoting.transport.AbstractClient [79] -| [DUBBO] client reconnect to 172.16.3.9:7683 find error . url: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232912975&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  255. com.alibaba.dubbo.remoting.RemotingException: client(url: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232912975&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232872668&version=1.0.0) failed to connect to server /172.16.3.9:7683, error message is:Network is unreachable
  256. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:122)
  257. at com.alibaba.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:266)
  258. at com.alibaba.dubbo.remoting.transport.AbstractClient$1.run(AbstractClient.java:155)
  259. at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
  260. at java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:308)
  261. at java.util.concurrent.FutureTask.runAndReset(FutureTask.java)
  262. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
  263. at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
  264. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  265. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  266. at java.lang.Thread.run(Thread.java:745)
  267. Caused by: java.net.SocketException: Network is unreachable
  268. at sun.nio.ch.Net.connect0(Native Method)
  269. at sun.nio.ch.Net.connect(Net.java:454)
  270. at sun.nio.ch.Net.connect(Net.java:446)
  271. at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:648)
  272. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.connect(NioClientSocketPipelineSink.java:108)
  273. at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk(NioClientSocketPipelineSink.java:70)
  274. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:779)
  275. at org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream(OneToOneEncoder.java:54)
  276. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  277. at org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendDownstream(DefaultChannelPipeline.java:784)
  278. at org.jboss.netty.channel.SimpleChannelHandler.connectRequested(SimpleChannelHandler.java:306)
  279. at org.jboss.netty.channel.SimpleChannelHandler.handleDownstream(SimpleChannelHandler.java:272)
  280. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:591)
  281. at org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream(DefaultChannelPipeline.java:582)
  282. at org.jboss.netty.channel.Channels.connect(Channels.java:634)
  283. at org.jboss.netty.channel.AbstractChannel.connect(AbstractChannel.java:216)
  284. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:229)
  285. at org.jboss.netty.bootstrap.ClientBootstrap.connect(ClientBootstrap.java:182)
  286. at com.alibaba.dubbo.remoting.transport.netty.NettyClient.doConnect(NettyClient.java:86)
  287. ... 10 common frames omitted
  288. 2018-08-15 09:52:45.717 |-INFO [DubboShutdownHook] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Run shutdown hook now., dubbo version: 2.0.1, current host: 172.16.3.9
  289. 2018-08-15 09:52:45.718 |-INFO [Thread-56] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [987] -| Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6a904f18: startup date [Tue Aug 14 15:47:45 CST 2018]; root of context hierarchy
  290. 2018-08-15 09:52:45.718 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.support.AbstractRegistryFactory [59] -| [DUBBO] Close all registries [zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&dubbo=2.0.1&file=./output/dubbo.cache&interface=com.alibaba.dubbo.registry.RegistryService&pid=2001&timestamp=1534232872688], dubbo version: 2.0.1, current host: 172.16.3.9
  291. 2018-08-15 09:52:45.723 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy registry:zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&dubbo=2.0.1&file=./output/dubbo.cache&interface=com.alibaba.dubbo.registry.RegistryService&pid=2001&timestamp=1534232872688, dubbo version: 2.0.1, current host: 172.16.3.9
  292. 2018-08-15 09:52:45.723 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  293. 2018-08-15 09:52:45.742 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  294. 2018-08-15 09:52:45.742 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  295. 2018-08-15 09:52:45.743 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  296. 2018-08-15 09:52:45.743 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  297. 2018-08-15 09:52:45.744 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  298. 2018-08-15 09:52:45.744 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  299. 2018-08-15 09:52:45.745 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  300. 2018-08-15 09:52:45.745 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  301. 2018-08-15 09:52:45.745 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  302. 2018-08-15 09:52:45.746 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  303. 2018-08-15 09:52:45.746 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  304. 2018-08-15 09:52:45.747 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  305. 2018-08-15 09:52:45.747 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  306. 2018-08-15 09:52:45.747 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  307. 2018-08-15 09:52:45.748 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  308. 2018-08-15 09:52:45.749 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  309. 2018-08-15 09:52:45.749 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  310. 2018-08-15 09:52:45.750 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, urls: [empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0], dubbo version: 2.0.1, current host: 172.16.3.9
  311. 2018-08-15 09:52:45.750 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  312. 2018-08-15 09:52:45.751 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  313. 2018-08-15 09:52:45.751 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  314. 2018-08-15 09:52:45.755 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  315. 2018-08-15 09:52:45.755 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  316. 2018-08-15 09:52:45.756 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  317. 2018-08-15 09:52:45.756 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  318. 2018-08-15 09:52:45.757 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  319. 2018-08-15 09:52:45.757 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  320. 2018-08-15 09:52:45.757 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  321. 2018-08-15 09:52:45.757 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  322. 2018-08-15 09:52:45.758 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  323. 2018-08-15 09:52:45.758 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  324. 2018-08-15 09:52:45.759 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  325. 2018-08-15 09:52:45.759 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unregister: consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  326. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unregister url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  327. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  328. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  329. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  330. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  331. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: provider://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  332. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  333. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  334. 2018-08-15 09:52:45.760 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  335. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  336. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  337. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: provider://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  338. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  339. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  340. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  341. 2018-08-15 09:52:45.761 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  342. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  343. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  344. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  345. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  346. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  347. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  348. 2018-08-15 09:52:45.762 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  349. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  350. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  351. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  352. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  353. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  354. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  355. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  356. 2018-08-15 09:52:45.763 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  357. 2018-08-15 09:52:45.764 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  358. 2018-08-15 09:52:45.764 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url consumer://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  359. 2018-08-15 09:52:45.764 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Unsubscribe: provider://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  360. 2018-08-15 09:52:45.764 |-INFO [DubboShutdownHook] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Destroy unsubscribe url provider://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  361. 2018-08-15 09:52:45.765 |-INFO [ZkClient-EventThread-54-127.0.0.1:2181] org.I0Itec.zkclient.ZkEventThread [82] -| Terminate ZkClient event thread.
  362. 2018-08-15 09:52:45.766 |-INFO [DubboZkclientConnector-EventThread] org.apache.zookeeper.ClientCnxn [520] -| EventThread shut down for session: 0x10000049a150002
  363. 2018-08-15 09:52:45.767 |-INFO [DubboShutdownHook] org.apache.zookeeper.ZooKeeper [687] -| Session: 0x10000049a150002 closed
  364. 2018-08-15 09:52:45.842 |-INFO [Thread-56] org.springframework.context.support.DefaultLifecycleProcessor [358] -| Stopping beans in phase 0
  365. 2018-08-15 09:52:45.870 |-WARN [Thread-56] org.springframework.beans.factory.support.DisposableBeanAdapter [374] -| Invocation of destroy method 'shutdown' failed on bean with name 'dubboMvcEndpoint': org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'ServiceBean@com.xintong.visualinspection.service.CommonService#commonServiceImpl': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
  366. 2018-08-15 09:52:45.870 |-INFO [Thread-56] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  367. 2018-08-15 09:52:45.871 |-INFO [Thread-56] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [241] -| Unregistering JMX-exposed beans
  368. 2018-08-15 09:52:45.872 |-INFO [Thread-56] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] -| Unregistering JMX-exposed beans on shutdown
  369. 2018-08-15 09:52:45.872 |-INFO [Thread-56] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [241] -| Unregistering JMX-exposed beans
  370. 2018-08-15 09:52:45.891 |-INFO [Thread-56] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [203] -| Shutting down ExecutorService 'threadExecutor'
  371. 2018-08-15 09:52:45.905 |-INFO [Thread-56] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-2} closed
  372. 2018-08-15 09:52:45.907 |-INFO [Thread-56] com.alibaba.druid.pool.DruidDataSource [1534] -| {dataSource-1} closed
  373. 2018-08-15 09:52:45.924 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy1@5d75c972" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CheckAppealService_F:1.0.0" interface="com.xintong.visualinspection.service.CheckAppealService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CheckAppealService_F" /> was destroying!
  374. 2018-08-15 09:52:45.925 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy7@762d6599" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CheckOtherService_F:1.0.0" interface="com.xintong.visualinspection.service.CheckOtherService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CheckOtherService_F" /> was destroying!
  375. 2018-08-15 09:52:45.926 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy4@70ac2180" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.TaskService_Q:1.0.0" interface="com.xintong.visualinspection.service.TaskService_Q" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.TaskService_Q" /> was destroying!
  376. 2018-08-15 09:52:45.926 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy10@3b9f0ba4" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.ScoreService_F:1.0.0" interface="com.xintong.visualinspection.service.ScoreService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.ScoreService_F" /> was destroying!
  377. 2018-08-15 09:52:45.927 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy2@22a4c906" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.TaskService_F:1.0.0" interface="com.xintong.visualinspection.service.TaskService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.TaskService_F" /> was destroying!
  378. 2018-08-15 09:52:45.927 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy3@591c9f7" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CheckAppealService_Q:1.0.0" interface="com.xintong.visualinspection.service.CheckAppealService_Q" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CheckAppealService_Q" /> was destroying!
  379. 2018-08-15 09:52:45.928 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy6@18e1387a" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CheckApplyService_Q:1.0.0" interface="com.xintong.visualinspection.service.CheckApplyService_Q" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CheckApplyService_Q" /> was destroying!
  380. 2018-08-15 09:52:45.928 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy11@40a046da" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.ScoreService_Q:1.0.0" interface="com.xintong.visualinspection.service.ScoreService_Q" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.ScoreService_Q" /> was destroying!
  381. 2018-08-15 09:52:45.928 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy0@22f0ecc1" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.AreaInfoService_F:1.0.0" interface="com.xintong.visualinspection.service.AreaInfoService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.AreaInfoService_F" /> was destroying!
  382. 2018-08-15 09:52:45.929 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy13@7696b959" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CommonService:1.0.0" interface="com.xintong.visualinspection.service.CommonService" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CommonService" /> was destroying!
  383. 2018-08-15 09:52:45.929 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy12@3690618e" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.StatisticsService_F:1.0.0" interface="com.xintong.visualinspection.service.StatisticsService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.StatisticsService_F" /> was destroying!
  384. 2018-08-15 09:52:45.930 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy5@11c4127d" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CheckApplyService_F:1.0.0" interface="com.xintong.visualinspection.service.CheckApplyService_F" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CheckApplyService_F" /> was destroying!
  385. 2018-08-15 09:52:45.930 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy8@3ebc6e8c" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.CheckOtherService_Q:1.0.0" interface="com.xintong.visualinspection.service.CheckOtherService_Q" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.CheckOtherService_Q" /> was destroying!
  386. 2018-08-15 09:52:45.931 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [243] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy9@652d45b5" singleton="true" uniqueServiceName="com.xintong.visualinspection.service.RecordService_Q:1.0.0" interface="com.xintong.visualinspection.service.RecordService_Q" generic="false" filter="" check="false" listener="" version="1.0.0" id="com.xintong.visualinspection.service.RecordService_Q" /> was destroying!
  387. 2018-08-15 09:52:45.933 |-INFO [Thread-56] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor [252] -| class com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor was destroying!
  388. 2018-08-15 09:52:55.770 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Close dubbo server: /172.16.3.9:7682, dubbo version: 2.0.1, current host: 172.16.3.9
  389. 2018-08-15 09:52:56.133 |-INFO [DubboShutdownHook] com.alibaba.dubbo.remoting.transport.AbstractServer [59] -| [DUBBO] Close NettyServer bind /0.0.0.0:7682, export /172.16.3.9:7682, dubbo version: 2.0.1, current host: 172.16.3.9
  390. 2018-08-15 09:52:56.140 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Close dubbo connect: 172.16.3.9:0-->172.16.3.9:7682, dubbo version: 2.0.1, current host: 172.16.3.9
  391. 2018-08-15 09:52:56.140 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Close dubbo connect: 172.16.3.9:0-->/172.16.3.9:7683, dubbo version: 2.0.1, current host: 172.16.3.9
  392. 2018-08-15 09:52:56.140 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Close dubbo connect: 172.16.3.9:0-->172.16.3.9:7682, dubbo version: 2.0.1, current host: 172.16.3.9
  393. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232913095&revision=1.0-SNAPSHOT&side=consumer&status=server&timeout=3000&timestamp=1534232873641&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  394. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckAppealService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232913020&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873042&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  395. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232912975&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232872668&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  396. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckApplyService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232913037&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873252&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  397. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckOtherService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232913059&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873383&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  398. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.TaskService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232913114&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873075&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  399. 2018-08-15 09:52:56.141 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Destroy reference: dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.ScoreService_F?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_F&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&register.ip=172.16.3.9&remote.timestamp=1534232913077&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534232873535&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  400. 2018-08-15 09:52:56.142 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Unexport service: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  401. 2018-08-15 09:52:56.142 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Unexport service: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  402. 2018-08-15 09:52:56.142 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] Unexport service: dubbo://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  403. 2018-08-15 09:52:56.142 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.injvm.InjvmProtocol [59] -| [DUBBO] Unexport service: injvm://127.0.0.1/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883755&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  404. 2018-08-15 09:52:56.142 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.injvm.InjvmProtocol [59] -| [DUBBO] Unexport service: injvm://127.0.0.1/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  405. 2018-08-15 09:52:56.142 |-INFO [DubboShutdownHook] com.alibaba.dubbo.rpc.protocol.injvm.InjvmProtocol [59] -| [DUBBO] Unexport service: injvm://127.0.0.1/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&bind.ip=172.16.3.9&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, dubbo version: 2.0.1, current host: 172.16.3.9
  406. 2018-08-15 13:11:09.481 |-INFO [restartedMain] com.alibaba.dubbo.common.logger.LoggerFactory [59] -| using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
  407. 2018-08-15 13:11:09.487 |-INFO [restartedMain] com.alibaba.boot.dubbo.context.event.WelcomeLogoApplicationListener [53] -|
  408. ████████▄ ███ █▄ ▀█████████▄ ▀█████████▄ ▄██████▄
  409. ███ ▀███ ███ ███ ███ ███ ███ ███ ███ ███
  410. ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
  411. ███ ███ ███ ███ ▄███▄▄▄██▀ ▄███▄▄▄██▀ ███ ███
  412. ███ ███ ███ ███ ▀▀███▀▀▀██▄ ▀▀███▀▀▀██▄ ███ ███
  413. ███ ███ ███ ███ ███ ██▄ ███ ██▄ ███ ███
  414. ███ ▄███ ███ ███ ███ ███ ███ ███ ███ ███
  415. ████████▀ ████████▀ ▄█████████▀ ▄█████████▀ ▀██████▀
  416. :: Dubbo Spring Boot (v0.1.0) : https://github.com/dubbo/dubbo-spring-boot-project
  417. :: Dubbo (v2.0.1) : https://github.com/alibaba/dubbo
  418. :: Google group : http://groups.google.com/group/dubbo
  419. 2018-08-15 13:11:09.492 |-INFO [restartedMain] com.alibaba.boot.dubbo.context.event.OverrideDubboConfigApplicationListener [67] -| Dubbo Config was overridden by externalized configuration {dubbo.application.id=jicha_base-provider, dubbo.application.name=jicha_base-provider, dubbo.consumer.check=false, dubbo.protocol.id=dubbo, dubbo.protocol.name=dubbo, dubbo.protocol.port=7682, dubbo.protocol.status=server, dubbo.reference.check=false, dubbo.registry.address=zookeeper://127.0.0.1:2181, dubbo.registry.file=./output/dubbo.cache, dubbo.registry.id=demoservice, dubbo.scan.basePackages=com.xintong.visualinspection.service}
  420. 2018-08-15 13:11:09.570 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on pds.local with PID 27789 (/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes started by wenhongquan in /Users/wenhongquan/VisualInspection/VisualInspection_server)
  421. 2018-08-15 13:11:09.570 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  422. 2018-08-15 13:11:09.768 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2c0171b5: startup date [Wed Aug 15 13:11:09 CST 2018]; root of context hierarchy
  423. 2018-08-15 13:11:09.790 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  424. 2018-08-15 13:11:11.185 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [122] -| The dubbo config bean definition [name : jicha_base-provider, class : com.alibaba.dubbo.config.ApplicationConfig] has been registered.
  425. 2018-08-15 13:11:11.186 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [144] -| The BeanPostProcessor bean definition [com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor] for dubbo config bean [name : jicha_base-provider] has been registered.
  426. 2018-08-15 13:11:11.187 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [122] -| The dubbo config bean definition [name : demoservice, class : com.alibaba.dubbo.config.RegistryConfig] has been registered.
  427. 2018-08-15 13:11:11.187 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [144] -| The BeanPostProcessor bean definition [com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor] for dubbo config bean [name : demoservice] has been registered.
  428. 2018-08-15 13:11:11.187 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [122] -| The dubbo config bean definition [name : dubbo, class : com.alibaba.dubbo.config.ProtocolConfig] has been registered.
  429. 2018-08-15 13:11:11.187 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [144] -| The BeanPostProcessor bean definition [com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor] for dubbo config bean [name : dubbo] has been registered.
  430. 2018-08-15 13:11:11.187 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [122] -| The dubbo config bean definition [name : com.alibaba.dubbo.config.ConsumerConfig#0, class : com.alibaba.dubbo.config.ConsumerConfig] has been registered.
  431. 2018-08-15 13:11:11.188 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.context.annotation.DubboConfigBindingRegistrar [144] -| The BeanPostProcessor bean definition [com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor] for dubbo config bean [name : com.alibaba.dubbo.config.ConsumerConfig#0] has been registered.
  432. 2018-08-15 13:11:11.433 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  433. 2018-08-15 13:11:11.636 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor [59] -| [DUBBO] BeanNameGenerator bean can't be found in BeanFactory with name [org.springframework.context.annotation.internalConfigurationBeanNameGenerator], dubbo version: 2.0.1, current host: 192.168.68.111
  434. 2018-08-15 13:11:11.637 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor [59] -| [DUBBO] BeanNameGenerator will be a instance of org.springframework.context.annotation.AnnotationBeanNameGenerator , it maybe a potential problem on bean name generation., dubbo version: 2.0.1, current host: 192.168.68.111
  435. 2018-08-15 13:11:11.659 |-WARN [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor [71] -| [DUBBO] The BeanDefinition[Root bean: class [com.alibaba.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] of ServiceBean has been registered with name : ServiceBean@com.xintong.visualinspection.service.CommonService#commonServiceImpl, dubbo version: 2.0.1, current host: 192.168.68.111
  436. 2018-08-15 13:11:11.659 |-WARN [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor [71] -| [DUBBO] The BeanDefinition[Root bean: class [com.alibaba.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] of ServiceBean has been registered with name : ServiceBean@com.xintong.visualinspection.service.ItemService#itemServiceImpl, dubbo version: 2.0.1, current host: 192.168.68.111
  437. 2018-08-15 13:11:11.659 |-WARN [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor [71] -| [DUBBO] The BeanDefinition[Root bean: class [com.alibaba.dubbo.config.spring.ServiceBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] of ServiceBean has been registered with name : ServiceBean@com.xintong.visualinspection.service.UserService#userServiceImpl, dubbo version: 2.0.1, current host: 192.168.68.111
  438. 2018-08-15 13:11:11.660 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor [59] -| [DUBBO] 3 annotated Dubbo's @Service Components { [Bean definition with name 'commonServiceImpl': Generic bean: class [com.xintong.visualinspection.service.impl.CommonServiceImpl]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes/com/xintong/visualinspection/service/impl/CommonServiceImpl.class], Bean definition with name 'itemServiceImpl': Generic bean: class [com.xintong.visualinspection.service.impl.ItemServiceImpl]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes/com/xintong/visualinspection/service/impl/ItemServiceImpl.class], Bean definition with name 'userServiceImpl': Generic bean: class [com.xintong.visualinspection.service.impl.UserServiceImpl]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes/com/xintong/visualinspection/service/impl/UserServiceImpl.class]] } were scanned under package[com.xintong.visualinspection.service], dubbo version: 2.0.1, current host: 192.168.68.111
  439. 2018-08-15 13:11:11.661 |-WARN [restartedMain] org.springframework.context.annotation.ConfigurationClassPostProcessor [373] -| Cannot enhance @Configuration bean definition 'com.alibaba.boot.dubbo.autoconfigure.DubboAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
  440. 2018-08-15 13:11:12.330 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$422dcb51] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  441. 2018-08-15 13:11:12.515 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$dadb938b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  442. 2018-08-15 13:11:12.526 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  443. 2018-08-15 13:11:12.530 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@5305abce' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  444. 2018-08-15 13:11:12.540 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$ffb0363d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  445. 2018-08-15 13:11:12.557 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  446. 2018-08-15 13:11:12.573 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$2d713f4d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  447. 2018-08-15 13:11:12.592 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  448. 2018-08-15 13:11:12.594 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$8b40016f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  449. 2018-08-15 13:11:13.127 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  450. 2018-08-15 13:11:13.139 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  451. 2018-08-15 13:11:13.140 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  452. 2018-08-15 13:11:13.219 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  453. 2018-08-15 13:11:13.219 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 3451 ms
  454. 2018-08-15 13:11:13.659 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  455. 2018-08-15 13:11:15.796 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  456. 2018-08-15 13:11:15.796 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  457. 2018-08-15 13:11:15.797 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  458. 2018-08-15 13:11:15.797 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  459. 2018-08-15 13:11:15.797 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  460. 2018-08-15 13:11:15.798 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  461. 2018-08-15 13:11:15.798 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  462. 2018-08-15 13:11:15.799 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  463. 2018-08-15 13:11:15.799 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  464. 2018-08-15 13:11:15.799 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  465. 2018-08-15 13:11:15.799 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  466. 2018-08-15 13:11:15.799 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  467. 2018-08-15 13:11:15.799 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  468. 2018-08-15 13:11:15.801 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  469. 2018-08-15 13:11:17.293 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor [73] -| The properties of bean [name : com.alibaba.dubbo.config.ConsumerConfig#0] have been binding by values : [bean property 'check']
  470. 2018-08-15 13:11:17.349 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor [73] -| The properties of bean [name : jicha_base-provider] have been binding by values : [bean property 'id', bean property 'name']
  471. 2018-08-15 13:11:17.364 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor [73] -| The properties of bean [name : demoservice] have been binding by values : [bean property 'id', bean property 'file', bean property 'address']
  472. 2018-08-15 13:11:17.422 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Load registry store file ./output/dubbo.cache, data: {com.xintong.visualinspection.service.TaskService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873075&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.TaskService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913114&version=1.0.0, com.xintong.visualinspection.service.TaskService_Q:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getTask,getAllTask,addTask&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873182&version=1.0.0, com.xintong.visualinspection.service.CheckAppealService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873042&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckAppealService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913020&version=1.0.0, com.xintong.visualinspection.service.StatisticsService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873641&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timeout=3000&timestamp=1534232913095&version=1.0.0, com.xintong.visualinspection.service.CheckAppealService_Q:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873147&version=1.0.0, com.xintong.visualinspection.service.RecordService_Q:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873483&version=1.0.0, com.xintong.visualinspection.service.CommonService:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCodeMap,getCheckItemName,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873667&version=1.0.0, com.xintong.visualinspection.service.CheckApplyService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873252&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckApplyService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913037&version=1.0.0, com.xintong.visualinspection.service.AreaInfoService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232872668&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.AreaInfoService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232912975&version=1.0.0, com.xintong.visualinspection.service.CheckApplyService_Q:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873322&version=1.0.0, com.xintong.visualinspection.service.UserService:1.0.0=empty://172.16.3.9:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232884236&version=1.0.0, com.xintong.visualinspection.service.CheckOtherService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873383&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.CheckOtherService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913059&version=1.0.0, com.xintong.visualinspection.service.CheckOtherService_Q:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873433&version=1.0.0, com.xintong.visualinspection.service.ItemService:1.0.0=empty://172.16.3.9:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=2001&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232883948&version=1.0.0, com.xintong.visualinspection.service.ScoreService_Q:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873590&version=1.0.0, com.xintong.visualinspection.service.ScoreService_F:1.0.0=empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0 empty://172.16.3.9/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2001&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534232873535&version=1.0.0 dubbo://172.16.3.9:7683/com.xintong.visualinspection.service.ScoreService_F?anyhost=true&application=jicha_fjq-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_F&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=2279&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534232913077&version=1.0.0}, dubbo version: 2.0.1, current host: 192.168.68.111
  473. 2018-08-15 13:11:17.430 |-INFO [restartedMain] com.alibaba.dubbo.common.concurrent.ExecutionList [59] -| [DUBBO] Executor for listenablefuture is null, will use default executor!, dubbo version: 2.0.1, current host: 192.168.68.111
  474. 2018-08-15 13:11:17.435 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] org.I0Itec.zkclient.ZkEventThread [64] -| Starting ZkClient event thread.
  475. 2018-08-15 13:11:17.441 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:zookeeper.version=3.4.11-37e277162d567b55a07d1755f0b31c32e93c01a0, built on 11/01/2017 18:06 GMT
  476. 2018-08-15 13:11:17.441 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:host.name=192.168.68.111
  477. 2018-08-15 13:11:17.441 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.version=1.8.0_65
  478. 2018-08-15 13:11:17.441 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.vendor=Oracle Corporation
  479. 2018-08-15 13:11:17.441 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre
  480. 2018-08-15 13:11:17.441 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/lib/tools.jar:/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes:/Users/wenhongquan/Documents/mavendata/com/xintong/visuallnspection/inteface/visuallnspectioninteface/1.0-SNAPSHOT/visuallnspectioninteface-1.0-SNAPSHOT.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/security/spring-security-core/4.2.2.RELEASE/spring-security-core-4.2.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-beans/4.3.7.RELEASE/spring-beans-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-context/4.3.7.RELEASE/spring-context-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-expression/4.3.7.RELEASE/spring-expression-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-web/1.5.2.RELEASE/spring-boot-starter-web-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-tomcat/1.5.2.RELEASE/spring-boot-starter-tomcat-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/apache/tomcat/embed/tomcat-embed-core/8.5.11/tomcat-embed-core-8.5.11.jar:/Users/wenhongquan/Documents/mavendata/org/apache/tomcat/embed/tomcat-embed-el/8.5.11/tomcat-embed-el-8.5.11.jar:/Users/wenhongquan/Documents/mavendata/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.11/tomcat-embed-websocket-8.5.11.jar:/Users/wenhongquan/Documents/mavendata/org/hibernate/hibernate-validator/5.3.4.Final/hibernate-validator-5.3.4.Final.jar:/Users/wenhongquan/Documents/mavendata/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/wenhongquan/Documents/mavendata/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar:/Users/wenhongquan/Documents/mavendata/com/fasterxml/classmate/1.3.3/classmate-1.3.3.jar:/Users/wenhongquan/Documents/mavendata/com/fasterxml/jackson/core/jackson-databind/2.8.7/jackson-databind-2.8.7.jar:/Users/wenhongquan/Documents/mavendata/com/fasterxml/jackson/core/jackson-annotations/2.8.0/jackson-annotations-2.8.0.jar:/Users/wenhongquan/Documents/mavendata/com/fasterxml/jackson/core/jackson-core/2.8.7/jackson-core-2.8.7.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-web/4.3.7.RELEASE/spring-web-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-webmvc/4.3.7.RELEASE/spring-webmvc-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-security/1.5.2.RELEASE/spring-boot-starter-security-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-aop/4.3.7.RELEASE/spring-aop-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/security/spring-security-config/4.2.2.RELEASE/spring-security-config-4.2.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/security/spring-security-web/4.2.2.RELEASE/spring-security-web-4.2.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.0/mybatis-spring-boot-starter-1.3.0.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-jdbc/1.5.2.RELEASE/spring-boot-starter-jdbc-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/apache/tomcat/tomcat-jdbc/8.5.11/tomcat-jdbc-8.5.11.jar:/Users/wenhongquan/Documents/mavendata/org/apache/tomcat/tomcat-juli/8.5.11/tomcat-juli-8.5.11.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-jdbc/4.3.7.RELEASE/spring-jdbc-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.0/mybatis-spring-boot-autoconfigure-1.3.0.jar:/Users/wenhongquan/Documents/mavendata/org/mybatis/mybatis/3.4.4/mybatis-3.4.4.jar:/Users/wenhongquan/Documents/mavendata/org/mybatis/mybatis-spring/1.3.1/mybatis-spring-1.3.1.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-thymeleaf/1.5.2.RELEASE/spring-boot-starter-thymeleaf-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/thymeleaf/thymeleaf-spring4/2.1.5.RELEASE/thymeleaf-spring4-2.1.5.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/nz/net/ultraq/thymeleaf/thymeleaf-layout-dialect/1.4.0/thymeleaf-layout-dialect-1.4.0.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-remote-shell/1.5.2.RELEASE/spring-boot-starter-remote-shell-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-actuator/1.5.2.RELEASE/spring-boot-starter-actuator-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-actuator/1.5.2.RELEASE/spring-boot-actuator-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/crashub/crash.cli/1.3.2/crash.cli-1.3.2.jar:/Users/wenhongquan/Documents/mavendata/org/crashub/crash.connectors.ssh/1.3.2/crash.connectors.ssh-1.3.2.jar:/Users/wenhongquan/Documents/mavendata/org/apache/sshd/sshd-core/0.11.0/sshd-core-0.11.0.jar:/Users/wenhongquan/Documents/mavendata/org/apache/sshd/sshd-pam/0.11.0/sshd-pam-0.11.0.jar:/Users/wenhongquan/Documents/mavendata/net/sf/jpam/jpam/1.1/jpam-1.1.jar:/Users/wenhongquan/Documents/mavendata/org/bouncycastle/bcprov-jdk15on/1.51/bcprov-jdk15on-1.51.jar:/Users/wenhongquan/Documents/mavendata/org/bouncycastle/bcpkix-jdk15on/1.51/bcpkix-jdk15on-1.51.jar:/Users/wenhongquan/Documents/mavendata/org/apache/mina/mina-core/2.0.7/mina-core-2.0.7.jar:/Users/wenhongquan/Documents/mavendata/org/crashub/crash.embed.spring/1.3.2/crash.embed.spring-1.3.2.jar:/Users/wenhongquan/Documents/mavendata/org/crashub/crash.plugins.cron/1.3.2/crash.plugins.cron-1.3.2.jar:/Users/wenhongquan/Documents/mavendata/it/sauronsoftware/cron4j/cron4j/2.2.5/cron4j-2.2.5.jar:/Users/wenhongquan/Documents/mavendata/org/crashub/crash.plugins.mail/1.3.2/crash.plugins.mail-1.3.2.jar:/Users/wenhongquan/Documents/mavendata/org/crashub/crash.shell/1.3.2/crash.shell-1.3.2.jar:/Users/wenhongquan/Documents/mavendata/org/codehaus/groovy/groovy/2.4.9/groovy-2.4.9.jar:/Users/wenhongquan/Documents/mavendata/com/sun/mail/javax.mail/1.5.6/javax.mail-1.5.6.jar:/Users/wenhongquan/Documents/mavendata/javax/activation/activation/1.1/activation-1.1.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-data-redis/1.5.2.RELEASE/spring-boot-starter-data-redis-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/data/spring-data-redis/1.8.1.RELEASE/spring-data-redis-1.8.1.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/data/spring-data-keyvalue/1.2.1.RELEASE/spring-data-keyvalue-1.2.1.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/data/spring-data-commons/1.13.1.RELEASE/spring-data-commons-1.13.1.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-tx/4.3.7.RELEASE/spring-tx-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-oxm/4.3.7.RELEASE/spring-oxm-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-context-support/4.3.7.RELEASE/spring-context-support-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/wenhongquan/Documents/mavendata/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter/1.5.2.RELEASE/spring-boot-starter-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot/1.5.2.RELEASE/spring-boot-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-autoconfigure/1.5.2.RELEASE/spring-boot-autoconfigure-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-starter-logging/1.5.2.RELEASE/spring-boot-starter-logging-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/ch/qos/logback/logback-classic/1.1.11/logback-classic-1.1.11.jar:/Users/wenhongquan/Documents/mavendata/org/slf4j/jul-to-slf4j/1.7.24/jul-to-slf4j-1.7.24.jar:/Users/wenhongquan/Documents/mavendata/org/slf4j/log4j-over-slf4j/1.7.24/log4j-over-slf4j-1.7.24.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/spring-core/4.3.7.RELEASE/spring-core-4.3.7.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar:/Users/wenhongquan/Documents/mavendata/org/projectlombok/lombok/1.16.14/lombok-1.16.14.jar:/Users/wenhongquan/Documents/mavendata/junit/junit/4.12/junit-4.12.jar:/Users/wenhongquan/Documents/mavendata/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/wenhongquan/Documents/mavendata/org/springframework/boot/spring-boot-devtools/1.5.2.RELEASE/spring-boot-devtools-1.5.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/io/jsonwebtoken/jjwt/0.7.0/jjwt-0.7.0.jar:/Users/wenhongquan/Documents/mavendata/org/thymeleaf/extras/thymeleaf-extras-springsecurity4/2.1.2.RELEASE/thymeleaf-extras-springsecurity4-2.1.2.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/thymeleaf/thymeleaf/2.1.5.RELEASE/thymeleaf-2.1.5.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/ognl/ognl/3.0.8/ognl-3.0.8.jar:/Users/wenhongquan/Documents/mavendata/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar:/Users/wenhongquan/Documents/mavendata/org/unbescape/unbescape/1.1.0.RELEASE/unbescape-1.1.0.RELEASE.jar:/Users/wenhongquan/Documents/mavendata/org/slf4j/slf4j-api/1.7.24/slf4j-api-1.7.24.jar:/Users/wenhongquan/Documents/mavendata/com/github/pagehelper/pagehelper/4.2.1/pagehelper-4.2.1.jar:/Users/wenhongquan/Documents/mavendata/com/github/jsqlparser/jsqlparser/0.9.5/jsqlparser-0.9.5.jar:/Users/wenhongquan/Documents/mavendata/mysql/mysql-connector-java/5.1.41/mysql-connector-java-5.1.41.jar:/Users/wenhongquan/Documents/mavendata/com/alibaba/druid/1.0.29/druid-1.0.29.jar:/Users/wenhongquan/Documents/mavendata/com/alibaba/fastjson/1.2.31/fastjson-1.2.31.jar:/Users/wenhongquan/Documents/mavendata/org/aspectj/aspectjrt/1.8.10/aspectjrt-1.8.10.jar:/Users/wenhongquan/Documents/mavendata/org/aspectj/aspectjweaver/1.8.10/aspectjweaver-1.8.10.jar:/Users/wenhongquan/Documents/mavendata/org/apache/poi/poi/3.12/poi-3.12.jar:/Users/wenhongquan/Documents/mavendata/commons-codec/commons-codec/1.10/commons-codec-1.10.jar:/Users/wenhongquan/Documents/mavendata/org/jxls/jxls/2.3.0/jxls-2.3.0.jar:/Users/wenhongquan/Documents/mavendata/org/apache/commons/commons-jexl/2.1.1/commons-jexl-2.1.1.jar:/Users/wenhongquan/Documents/mavendata/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar:/Users/wenhongquan/Documents/mavendata/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar:/Users/wenhongquan/Documents/mavendata/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar:/Users/wenhongquan/Documents/mavendata/org/slf4j/jcl-over-slf4j/1.7.24/jcl-over-slf4j-1.7.24.jar:/Users/wenhongquan/Documents/mavendata/ch/qos/logback/logback-core/1.1.11/logback-core-1.1.11.jar:/Users/wenhongquan/Documents/mavendata/org/jxls/jxls-poi/1.0.9/jxls-poi-1.0.9.jar:/Users/wenhongquan/Documents/mavendata/org/apache/poi/poi-ooxml/3.12/poi-ooxml-3.12.jar:/Users/wenhongquan/Documents/mavendata/org/apache/poi/poi-ooxml-schemas/3.12/poi-ooxml-schemas-3.12.jar:/Users/wenhongquan/Documents/mavendata/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar:/Users/wenhongquan/Documents/mavendata/stax/stax-api/1.0.1/stax-api-1.0.1.jar:/Users/wenhongquan/Documents/mavendata/org/apache/zookeeper/zookeeper/3.4.11/zookeeper-3.4.11.jar:/Users/wenhongquan/Documents/mavendata/org/slf4j/slf4j-log4j12/1.7.24/slf4j-log4j12-1.7.24.jar:/Users/wenhongquan/Documents/mavendata/log4j/log4j/1.2.16/log4j-1.2.16.jar:/Users/wenhongquan/Documents/mavendata/jline/jline/0.9.94/jline-0.9.94.jar:/Users/wenhongquan/Documents/mavendata/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar:/Users/wenhongquan/Documents/mavendata/io/netty/netty/3.10.5.Final/netty-3.10.5.Final.jar:/Users/wenhongquan/Documents/mavendata/com/github/sgroschupf/zkclient/0.1/zkclient-0.1.jar:/Users/wenhongquan/Documents/mavendata/com/alibaba/boot/dubbo-spring-boot-starter/0.1.0/dubbo-spring-boot-starter-0.1.0.jar:/Users/wenhongquan/Documents/mavendata/com/alibaba/dubbo/2.5.10/dubbo-2.5.10.jar:/Users/wenhongquan/Documents/mavendata/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/wenhongquan/Documents/mavendata/org/apache/curator/curator-framework/2.11.1/curator-framework-2.11.1.jar:/Users/wenhongquan/Documents/mavendata/org/apache/curator/curator-client/2.11.1/curator-client-2.11.1.jar:/Users/wenhongquan/Documents/mavendata/com/google/guava/guava/18.0/guava-18.0.jar:/Users/wenhongquan/Documents/mavendata/com/alibaba/boot/dubbo-spring-boot-autoconfigure/0.1.0/dubbo-spring-boot-autoconfigure-0.1.0.jar:/Users/wenhongquan/Documents/mavendata/com/alibaba/boot/dubbo-spring-boot-actuator/0.1.0/dubbo-spring-boot-actuator-0.1.0.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar:/Users/wenhongquan/Library/Caches/IntelliJIdea2018.1/captureAgent/debugger-agent.jar
  481. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.library.path=/Users/wenhongquan/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
  482. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.io.tmpdir=/var/folders/rf/tm_lg_bn09lf4yq2b4q4nznr0000gn/T/
  483. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:java.compiler=<NA>
  484. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:os.name=Mac OS X
  485. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:os.arch=x86_64
  486. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:os.version=10.13.6
  487. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:user.name=wenhongquan
  488. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:user.home=/Users/wenhongquan
  489. 2018-08-15 13:11:17.442 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [100] -| Client environment:user.dir=/Users/wenhongquan/VisualInspection/VisualInspection_server
  490. 2018-08-15 13:11:17.443 |-INFO [DubboZkclientConnector] org.apache.zookeeper.ZooKeeper [441] -| Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=30000 watcher=org.I0Itec.zkclient.ZkClient@25fe5f4f
  491. 2018-08-15 13:11:17.463 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1035] -| Opening socket connection to server 127.0.0.1/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
  492. 2018-08-15 13:11:17.488 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [877] -| Socket connection established to 127.0.0.1/127.0.0.1:2181, initiating session
  493. 2018-08-15 13:11:17.506 |-INFO [DubboZkclientConnector-SendThread(127.0.0.1:2181)] org.apache.zookeeper.ClientCnxn [1302] -| Session establishment complete on server 127.0.0.1/127.0.0.1:2181, sessionid = 0x10000049a150004, negotiated timeout = 30000
  494. 2018-08-15 13:11:17.508 |-INFO [DubboZkclientConnector-EventThread] org.I0Itec.zkclient.ZkClient [449] -| zookeeper state changed (SyncConnected)
  495. 2018-08-15 13:11:17.528 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  496. 2018-08-15 13:11:17.542 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  497. 2018-08-15 13:11:17.559 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.AreaInfoService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  498. 2018-08-15 13:11:17.563 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.AreaInfoService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.AreaInfoService_F&methods=getAllArea&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877378&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  499. 2018-08-15 13:11:17.571 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy0@2b0986a0" singleton="true" interface="com.xintong.visualinspection.service.AreaInfoService_F" uniqueServiceName="com.xintong.visualinspection.service.AreaInfoService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.AreaInfoService_F" /> has been built.
  500. 2018-08-15 13:11:17.610 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  501. 2018-08-15 13:11:17.613 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  502. 2018-08-15 13:11:17.619 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  503. 2018-08-15 13:11:17.620 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CheckAppealService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_F&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877603&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  504. 2018-08-15 13:11:17.624 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy1@61120561" singleton="true" interface="com.xintong.visualinspection.service.CheckAppealService_F" uniqueServiceName="com.xintong.visualinspection.service.CheckAppealService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CheckAppealService_F" /> has been built.
  505. 2018-08-15 13:11:17.645 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  506. 2018-08-15 13:11:17.647 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  507. 2018-08-15 13:11:17.654 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  508. 2018-08-15 13:11:17.655 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.TaskService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_F&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877637&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  509. 2018-08-15 13:11:17.657 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy2@53c604a2" singleton="true" interface="com.xintong.visualinspection.service.TaskService_F" uniqueServiceName="com.xintong.visualinspection.service.TaskService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.TaskService_F" /> has been built.
  510. 2018-08-15 13:11:17.701 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  511. 2018-08-15 13:11:17.703 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  512. 2018-08-15 13:11:17.707 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  513. 2018-08-15 13:11:17.708 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CheckAppealService_Q from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  514. 2018-08-15 13:11:17.710 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy3@13fd3f35" singleton="true" interface="com.xintong.visualinspection.service.CheckAppealService_Q" uniqueServiceName="com.xintong.visualinspection.service.CheckAppealService_Q:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CheckAppealService_Q" /> has been built.
  515. 2018-08-15 13:11:17.725 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  516. 2018-08-15 13:11:17.727 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  517. 2018-08-15 13:11:17.733 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  518. 2018-08-15 13:11:17.733 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.TaskService_Q from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  519. 2018-08-15 13:11:17.736 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy4@4bfc3b67" singleton="true" interface="com.xintong.visualinspection.service.TaskService_Q" uniqueServiceName="com.xintong.visualinspection.service.TaskService_Q:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.TaskService_Q" /> has been built.
  520. 2018-08-15 13:11:17.781 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  521. 2018-08-15 13:11:17.783 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  522. 2018-08-15 13:11:17.791 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  523. 2018-08-15 13:11:17.792 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CheckApplyService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_F&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877776&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  524. 2018-08-15 13:11:17.794 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy5@defa030" singleton="true" interface="com.xintong.visualinspection.service.CheckApplyService_F" uniqueServiceName="com.xintong.visualinspection.service.CheckApplyService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CheckApplyService_F" /> has been built.
  525. 2018-08-15 13:11:17.841 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  526. 2018-08-15 13:11:17.843 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  527. 2018-08-15 13:11:17.851 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  528. 2018-08-15 13:11:17.853 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CheckApplyService_Q from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  529. 2018-08-15 13:11:17.856 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy6@526587d5" singleton="true" interface="com.xintong.visualinspection.service.CheckApplyService_Q" uniqueServiceName="com.xintong.visualinspection.service.CheckApplyService_Q:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CheckApplyService_Q" /> has been built.
  530. 2018-08-15 13:11:17.901 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  531. 2018-08-15 13:11:17.903 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  532. 2018-08-15 13:11:17.907 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  533. 2018-08-15 13:11:17.907 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CheckOtherService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_F&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877894&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  534. 2018-08-15 13:11:17.910 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy7@119d88f9" singleton="true" interface="com.xintong.visualinspection.service.CheckOtherService_F" uniqueServiceName="com.xintong.visualinspection.service.CheckOtherService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CheckOtherService_F" /> has been built.
  535. 2018-08-15 13:11:17.947 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  536. 2018-08-15 13:11:17.949 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  537. 2018-08-15 13:11:17.954 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  538. 2018-08-15 13:11:17.955 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CheckOtherService_Q from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  539. 2018-08-15 13:11:17.957 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy8@6f1ca3d2" singleton="true" interface="com.xintong.visualinspection.service.CheckOtherService_Q" uniqueServiceName="com.xintong.visualinspection.service.CheckOtherService_Q:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CheckOtherService_Q" /> has been built.
  540. 2018-08-15 13:11:17.998 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  541. 2018-08-15 13:11:18.000 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  542. 2018-08-15 13:11:18.004 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  543. 2018-08-15 13:11:18.005 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.RecordService_Q from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  544. 2018-08-15 13:11:18.008 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy9@6cd62679" singleton="true" interface="com.xintong.visualinspection.service.RecordService_Q" uniqueServiceName="com.xintong.visualinspection.service.RecordService_Q:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.RecordService_Q" /> has been built.
  545. 2018-08-15 13:11:18.053 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  546. 2018-08-15 13:11:18.055 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  547. 2018-08-15 13:11:18.061 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  548. 2018-08-15 13:11:18.062 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.ScoreService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_F&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878049&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  549. 2018-08-15 13:11:18.065 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy10@62a4e148" singleton="true" interface="com.xintong.visualinspection.service.ScoreService_F" uniqueServiceName="com.xintong.visualinspection.service.ScoreService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.ScoreService_F" /> has been built.
  550. 2018-08-15 13:11:18.112 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  551. 2018-08-15 13:11:18.122 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  552. 2018-08-15 13:11:18.128 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  553. 2018-08-15 13:11:18.129 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.ScoreService_Q from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  554. 2018-08-15 13:11:18.131 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy11@15b93028" singleton="true" interface="com.xintong.visualinspection.service.ScoreService_Q" uniqueServiceName="com.xintong.visualinspection.service.ScoreService_Q:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.ScoreService_Q" /> has been built.
  555. 2018-08-15 13:11:18.174 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  556. 2018-08-15 13:11:18.176 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  557. 2018-08-15 13:11:18.181 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  558. 2018-08-15 13:11:18.182 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.StatisticsService_F from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  559. 2018-08-15 13:11:18.185 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy12@365f6947" singleton="true" interface="com.xintong.visualinspection.service.StatisticsService_F" uniqueServiceName="com.xintong.visualinspection.service.StatisticsService_F:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.StatisticsService_F" /> has been built.
  560. 2018-08-15 13:11:18.199 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: consumer://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=consumers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  561. 2018-08-15 13:11:18.201 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: consumer://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  562. 2018-08-15 13:11:18.207 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=configurators&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, empty://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  563. 2018-08-15 13:11:18.207 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Refer dubbo service com.xintong.visualinspection.service.CommonService from url zookeeper://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&register.ip=192.168.68.111&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  564. 2018-08-15 13:11:18.210 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceBeanBuilder [75] -| <dubbo:reference object="com.alibaba.dubbo.common.bytecode.proxy13@362c6359" singleton="true" interface="com.xintong.visualinspection.service.CommonService" uniqueServiceName="com.xintong.visualinspection.service.CommonService:1.0.0" generic="false" listener="" check="false" filter="" version="1.0.0" id="com.xintong.visualinspection.service.CommonService" /> has been built.
  565. 2018-08-15 13:11:18.369 |-INFO [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService
  566. 2018-08-15 13:11:18.378 |-INFO [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 'threadExecutor'
  567. 2018-08-15 13:11:18.625 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  568. 2018-08-15 13:11:18.625 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  569. 2018-08-15 13:11:18.768 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@34a8522a, org.springframework.security.web.context.SecurityContextPersistenceFilter@2bf93b95, org.springframework.security.web.header.HeaderWriterFilter@348d345f, org.springframework.web.filter.CorsFilter@49717465, org.springframework.security.web.authentication.logout.LogoutFilter@6834ce97, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@1833a031, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@245e2423, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@37cab189, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@719f401e, org.springframework.security.web.session.SessionManagementFilter@1e28ce1, org.springframework.security.web.access.ExceptionTranslationFilter@3f8887eb, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@33971d76]
  570. 2018-08-15 13:11:18.799 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@2767a95b, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4332b841, org.springframework.security.web.context.SecurityContextPersistenceFilter@5ea7ed68, org.springframework.security.web.header.HeaderWriterFilter@4a19edf6, org.springframework.security.web.authentication.logout.LogoutFilter@428831b9, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@1262af5e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@13ca2bb5, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@16390267, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3bb1d3a8, org.springframework.security.web.session.SessionManagementFilter@5b6e4f42, org.springframework.security.web.access.ExceptionTranslationFilter@334fcde4, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@62fbddb7]
  571. 2018-08-15 13:11:19.004 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2c0171b5: startup date [Wed Aug 15 13:11:09 CST 2018]; root of context hierarchy
  572. 2018-08-15 13:11:19.142 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
  573. 2018-08-15 13:11:19.142 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
  574. 2018-08-15 13:11:19.144 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
  575. 2018-08-15 13:11:19.146 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
  576. 2018-08-15 13:11:19.147 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
  577. 2018-08-15 13:11:19.147 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
  578. 2018-08-15 13:11:19.148 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
  579. 2018-08-15 13:11:19.148 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
  580. 2018-08-15 13:11:19.148 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  581. 2018-08-15 13:11:19.152 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  582. 2018-08-15 13:11:19.153 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
  583. 2018-08-15 13:11:19.153 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
  584. 2018-08-15 13:11:19.153 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
  585. 2018-08-15 13:11:19.153 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
  586. 2018-08-15 13:11:19.154 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
  587. 2018-08-15 13:11:19.154 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  588. 2018-08-15 13:11:19.154 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  589. 2018-08-15 13:11:19.154 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  590. 2018-08-15 13:11:19.155 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
  591. 2018-08-15 13:11:19.156 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
  592. 2018-08-15 13:11:19.156 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
  593. 2018-08-15 13:11:19.156 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
  594. 2018-08-15 13:11:19.157 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
  595. 2018-08-15 13:11:19.157 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
  596. 2018-08-15 13:11:19.157 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
  597. 2018-08-15 13:11:19.157 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
  598. 2018-08-15 13:11:19.158 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
  599. 2018-08-15 13:11:19.158 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
  600. 2018-08-15 13:11:19.159 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
  601. 2018-08-15 13:11:19.159 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
  602. 2018-08-15 13:11:19.159 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
  603. 2018-08-15 13:11:19.159 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getOtherCheckStatistics(com.xintong.visualinspection.bean.CheckOther)
  604. 2018-08-15 13:11:19.160 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
  605. 2018-08-15 13:11:19.160 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
  606. 2018-08-15 13:11:19.161 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.add(com.xintong.visualinspection.bean.CheckRule)
  607. 2018-08-15 13:11:19.162 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.update(com.xintong.visualinspection.bean.CheckRule)
  608. 2018-08-15 13:11:19.162 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.delete(com.xintong.visualinspection.bean.CheckRule)
  609. 2018-08-15 13:11:19.162 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getById(com.xintong.visualinspection.bean.CheckRule)
  610. 2018-08-15 13:11:19.163 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getAllRule/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getAllRules(com.xintong.visualinspection.bean.CheckRule,java.lang.Integer,java.lang.Integer)
  611. 2018-08-15 13:11:19.163 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getListById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByListId(com.xintong.visualinspection.bean.CheckRule)
  612. 2018-08-15 13:11:19.163 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
  613. 2018-08-15 13:11:19.163 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getByName]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByName(com.xintong.visualinspection.bean.CheckRule)
  614. 2018-08-15 13:11:19.164 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(java.util.List<com.xintong.visualinspection.bean.CheckItem>)
  615. 2018-08-15 13:11:19.165 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(com.xintong.visualinspection.bean.CheckItem)
  616. 2018-08-15 13:11:19.165 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.delete(com.xintong.visualinspection.bean.CheckItem)
  617. 2018-08-15 13:11:19.166 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/comm/getTime]}" onto public java.lang.String com.xintong.visualinspection.controller.CommonController.getTime(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
  618. 2018-08-15 13:11:19.167 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.add(com.xintong.visualinspection.bean.Constant)
  619. 2018-08-15 13:11:19.168 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.update(com.xintong.visualinspection.bean.Constant)
  620. 2018-08-15 13:11:19.168 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.delete(com.xintong.visualinspection.bean.Constant)
  621. 2018-08-15 13:11:19.169 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlag]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlag(com.xintong.visualinspection.bean.Constant)
  622. 2018-08-15 13:11:19.169 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlagAndValue]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlagAndValue(com.xintong.visualinspection.bean.Constant)
  623. 2018-08-15 13:11:19.169 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByName(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Constant)
  624. 2018-08-15 13:11:19.172 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/addDept],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.addDept(com.xintong.visualinspection.bean.Organ) throws java.lang.Exception
  625. 2018-08-15 13:11:19.173 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/updateDept/{organid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.updateDept(com.xintong.visualinspection.bean.Organ,int)
  626. 2018-08-15 13:11:19.173 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/deleteDept/{organid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.deleteDept(java.lang.Integer)
  627. 2018-08-15 13:11:19.173 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllDept(javax.servlet.http.HttpServletRequest)
  628. 2018-08-15 13:11:19.173 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptByParent/{pid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptByParent(java.lang.Integer)
  629. 2018-08-15 13:11:19.174 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptById/{organid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptById(java.lang.Integer)
  630. 2018-08-15 13:11:19.175 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllFs],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllFs()
  631. 2018-08-15 13:11:19.175 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllRM],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllRM()
  632. 2018-08-15 13:11:19.176 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllSA],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllSA()
  633. 2018-08-15 13:11:19.176 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
  634. 2018-08-15 13:11:19.177 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getFsByDept],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAFsByDeptId(javax.servlet.http.HttpServletRequest)
  635. 2018-08-15 13:11:19.177 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptInfosByDeptId],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptInfosByDeptId(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Organ)
  636. 2018-08-15 13:11:19.178 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAll()
  637. 2018-08-15 13:11:19.179 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/upload]}" onto public java.lang.String com.xintong.visualinspection.controller.FileController.UploadFile(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartHttpServletRequest)
  638. 2018-08-15 13:11:19.180 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/batch/upload],methods=[POST]}" onto public void com.xintong.visualinspection.controller.FileController.handleFileUpload(javax.servlet.http.HttpServletRequest)
  639. 2018-08-15 13:11:19.180 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/download/{filename:[a-zA-Z0-9-.]+}],methods=[GET]}" onto public void com.xintong.visualinspection.controller.FileController.Download(javax.servlet.http.HttpServletResponse,java.lang.String)
  640. 2018-08-15 13:11:19.183 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  641. 2018-08-15 13:11:19.183 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  642. 2018-08-15 13:11:19.183 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  643. 2018-08-15 13:11:19.184 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/item/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreItemInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  644. 2018-08-15 13:11:19.184 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
  645. 2018-08-15 13:11:19.184 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/check/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getCheckWorkExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)
  646. 2018-08-15 13:11:19.185 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  647. 2018-08-15 13:11:19.185 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheck(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
  648. 2018-08-15 13:11:19.186 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
  649. 2018-08-15 13:11:19.186 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/dept/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getDeptCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.DeptStatistic)
  650. 2018-08-15 13:11:19.186 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/user/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getUserStatistic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.UserStatistic)
  651. 2018-08-15 13:11:19.187 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/job/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.JobController.add(com.xintong.visualinspection.bean.Job)
  652. 2018-08-15 13:11:19.189 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/addMenu],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.addMenu(com.xintong.visualinspection.bean.Menu) throws java.lang.Exception
  653. 2018-08-15 13:11:19.189 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
  654. 2018-08-15 13:11:19.190 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/deleteMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.deleteMenu(java.lang.Integer)
  655. 2018-08-15 13:11:19.190 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getAllMenu(javax.servlet.http.HttpServletRequest,java.lang.Integer,com.xintong.visualinspection.bean.Menu)
  656. 2018-08-15 13:11:19.191 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuByParent/{pid}/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuByParent(java.lang.Integer,java.lang.Integer,java.lang.Integer)
  657. 2018-08-15 13:11:19.191 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuById/{menuid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuById(java.lang.Integer,javax.servlet.http.HttpServletRequest)
  658. 2018-08-15 13:11:19.193 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addRolePermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
  659. 2018-08-15 13:11:19.194 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addPermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.bean.Permission) throws java.lang.Exception
  660. 2018-08-15 13:11:19.194 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deleteRolePermission],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
  661. 2018-08-15 13:11:19.195 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deletePermission/{permissionid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(java.lang.Integer)
  662. 2018-08-15 13:11:19.195 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updateRolePermission],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updateRolePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
  663. 2018-08-15 13:11:19.195 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updatePermission/{permissionid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updatePermission(com.xintong.visualinspection.bean.Permission,int)
  664. 2018-08-15 13:11:19.196 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getAllPermission()
  665. 2018-08-15 13:11:19.196 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/getPermissionByRole/{roleid}/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getPermissionByRole(java.lang.Integer,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.User)
  666. 2018-08-15 13:11:19.198 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
  667. 2018-08-15 13:11:19.199 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
  668. 2018-08-15 13:11:19.199 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRole(javax.servlet.http.HttpServletRequest)
  669. 2018-08-15 13:11:19.199 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  670. 2018-08-15 13:11:19.199 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindPermission/{roleId}/{permissions}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindPermission(java.lang.Integer,java.lang.String)
  671. 2018-08-15 13:11:19.200 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindUser/{roleId}/{users}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindUser(java.lang.Integer,java.lang.String)
  672. 2018-08-15 13:11:19.200 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByDept/{deptId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByDept(java.lang.Integer)
  673. 2018-08-15 13:11:19.200 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByUser/{userId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByUser(java.lang.Integer)
  674. 2018-08-15 13:11:19.201 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPosition/{positionId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPosition(java.lang.Integer)
  675. 2018-08-15 13:11:19.201 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPermision/{permisionid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPermisionidn(java.lang.Integer)
  676. 2018-08-15 13:11:19.201 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
  677. 2018-08-15 13:11:19.203 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.add(com.xintong.visualinspection.bean.Score)
  678. 2018-08-15 13:11:19.203 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
  679. 2018-08-15 13:11:19.203 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.delete(com.xintong.visualinspection.bean.Score)
  680. 2018-08-15 13:11:19.204 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getByTaskId(com.xintong.visualinspection.bean.Score)
  681. 2018-08-15 13:11:19.204 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Score)
  682. 2018-08-15 13:11:19.204 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getTopRemark()
  683. 2018-08-15 13:11:19.204 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/updateByTaskIdAndPerson]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.updateByTaskIdAndPerson(com.xintong.visualinspection.bean.Score)
  684. 2018-08-15 13:11:19.205 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
  685. 2018-08-15 13:11:19.209 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
  686. 2018-08-15 13:11:19.210 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
  687. 2018-08-15 13:11:19.210 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(com.xintong.visualinspection.bean.StatisticsBean)
  688. 2018-08-15 13:11:19.210 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreInfo(com.xintong.visualinspection.bean.StatisticsBean)
  689. 2018-08-15 13:11:19.211 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
  690. 2018-08-15 13:11:19.211 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
  691. 2018-08-15 13:11:19.211 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
  692. 2018-08-15 13:11:19.212 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  693. 2018-08-15 13:11:19.212 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  694. 2018-08-15 13:11:19.212 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  695. 2018-08-15 13:11:19.213 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/manage/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
  696. 2018-08-15 13:11:19.213 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/score/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
  697. 2018-08-15 13:11:19.213 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
  698. 2018-08-15 13:11:19.214 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
  699. 2018-08-15 13:11:19.214 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/stuff/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
  700. 2018-08-15 13:11:19.215 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/up/five]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUp5PersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
  701. 2018-08-15 13:11:19.215 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
  702. 2018-08-15 13:11:19.215 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
  703. 2018-08-15 13:11:19.215 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.UserStatistic)
  704. 2018-08-15 13:11:19.216 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.StatisticsBean,java.lang.Integer,java.lang.Integer)
  705. 2018-08-15 13:11:19.216 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
  706. 2018-08-15 13:11:19.216 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
  707. 2018-08-15 13:11:19.217 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
  708. 2018-08-15 13:11:19.217 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
  709. 2018-08-15 13:11:19.217 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
  710. 2018-08-15 13:11:19.217 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/appeal]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckAppeal(com.xintong.visualinspection.bean.CheckAppealStatistic)
  711. 2018-08-15 13:11:19.218 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWrecker(com.xintong.visualinspection.bean.StatisticsBean)
  712. 2018-08-15 13:11:19.218 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker/staff]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWreckerStaff(com.xintong.visualinspection.bean.WreckerStatisticsBO)
  713. 2018-08-15 13:11:19.218 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/userex/add]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.addcheckSExUser(com.xintong.visualinspection.pojo.StatisticExUser)
  714. 2018-08-15 13:11:19.219 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/userex/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.deletecheckSExUser(com.xintong.visualinspection.pojo.StatisticExUser)
  715. 2018-08-15 13:11:19.219 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/dept]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getDeptStatistic(com.xintong.visualinspection.bean.DeptStatistic)
  716. 2018-08-15 13:11:19.222 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.add(com.xintong.visualinspection.bean.Task)
  717. 2018-08-15 13:11:19.223 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  718. 2018-08-15 13:11:19.224 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  719. 2018-08-15 13:11:19.224 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.delete(com.xintong.visualinspection.bean.Task)
  720. 2018-08-15 13:11:19.224 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  721. 2018-08-15 13:11:19.225 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  722. 2018-08-15 13:11:19.225 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskStart]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskStart(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  723. 2018-08-15 13:11:19.225 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  724. 2018-08-15 13:11:19.225 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  725. 2018-08-15 13:11:19.226 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getStatusById(com.xintong.visualinspection.bean.Task)
  726. 2018-08-15 13:11:19.226 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/deleteUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.deleteUserCount(com.xintong.visualinspection.bean.Task)
  727. 2018-08-15 13:11:19.226 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/updateUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.updateUserCount(com.xintong.visualinspection.bean.Task)
  728. 2018-08-15 13:11:19.226 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
  729. 2018-08-15 13:11:19.226 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCount(com.xintong.visualinspection.bean.Task)
  730. 2018-08-15 13:11:19.227 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCheckedTaskByPage/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCheckedTaskByPage(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  731. 2018-08-15 13:11:19.227 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getById(com.xintong.visualinspection.bean.Task)
  732. 2018-08-15 13:11:19.228 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  733. 2018-08-15 13:11:19.230 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.add(com.xintong.visualinspection.bean.TeamClass)
  734. 2018-08-15 13:11:19.231 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(com.xintong.visualinspection.bean.TeamClass)
  735. 2018-08-15 13:11:19.231 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
  736. 2018-08-15 13:11:19.232 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.delete(com.xintong.visualinspection.bean.TeamClass)
  737. 2018-08-15 13:11:19.232 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.addList(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
  738. 2018-08-15 13:11:19.233 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassById(com.xintong.visualinspection.bean.TeamClass)
  739. 2018-08-15 13:11:19.233 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getUserClasss]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.pojo.TeamClass)
  740. 2018-08-15 13:11:19.233 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassList]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
  741. 2018-08-15 13:11:19.233 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassListAndUsers]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassListAndUsers(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
  742. 2018-08-15 13:11:19.233 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassCode]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassCodeInfo(com.xintong.visualinspection.bean.ClassCode)
  743. 2018-08-15 13:11:19.235 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.add(com.xintong.visualinspection.bean.Team)
  744. 2018-08-15 13:11:19.235 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.update(com.xintong.visualinspection.bean.Team)
  745. 2018-08-15 13:11:19.235 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.delete(com.xintong.visualinspection.bean.Team)
  746. 2018-08-15 13:11:19.235 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
  747. 2018-08-15 13:11:19.235 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getDetailById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsById(com.xintong.visualinspection.bean.Team)
  748. 2018-08-15 13:11:19.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamPersonsByUserClassId/{user_calss_id}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsByUserClassId(java.lang.Long)
  749. 2018-08-15 13:11:19.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByDeptId(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
  750. 2018-08-15 13:11:19.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByName(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer)
  751. 2018-08-15 13:11:19.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  752. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
  753. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[PUT]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.update()
  754. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[POST]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.save()
  755. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  756. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  757. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  758. 2018-08-15 13:11:19.237 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.getList()
  759. 2018-08-15 13:11:19.238 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/addList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.addList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
  760. 2018-08-15 13:11:19.238 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/updateList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.updateList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
  761. 2018-08-15 13:11:19.239 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getUsersByTeamId/{user_class_id}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getUsersByTeamId(java.lang.Integer)
  762. 2018-08-15 13:11:19.239 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getList(com.xintong.visualinspection.bean.UserClass)
  763. 2018-08-15 13:11:19.240 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
  764. 2018-08-15 13:11:19.241 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/updateUser/{userid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.updateUser(com.xintong.visualinspection.bean.User,int)
  765. 2018-08-15 13:11:19.241 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/deleteUser/{userid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.deleteUser(java.lang.Integer)
  766. 2018-08-15 13:11:19.241 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/get/all/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getallUsers(java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
  767. 2018-08-15 13:11:19.241 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUsers(com.xintong.visualinspection.bean.User)
  768. 2018-08-15 13:11:19.241 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserById/{userid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUser(java.lang.Integer)
  769. 2018-08-15 13:11:19.242 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getAllCheckman],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getAllCheckman()
  770. 2018-08-15 13:11:19.242 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getFsUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getFsUsers(com.xintong.visualinspection.bean.User)
  771. 2018-08-15 13:11:19.242 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
  772. 2018-08-15 13:11:19.243 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/logout],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.logout()
  773. 2018-08-15 13:11:19.243 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/auth/login],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.login(com.xintong.visualinspection.bean.User)
  774. 2018-08-15 13:11:19.243 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/addUser],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.addUser(com.xintong.visualinspection.bean.User) throws java.lang.Exception
  775. 2018-08-15 13:11:19.244 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getAllVideo/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getAllVideo(java.lang.Integer,java.lang.Integer)
  776. 2018-08-15 13:11:19.244 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByDeptAndLane/{page}/{size}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByDeptAndLane(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Webcam)
  777. 2018-08-15 13:11:19.244 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoById/{webcamid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoById(java.lang.String)
  778. 2018-08-15 13:11:19.245 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByIds/{webcamids}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByIds(java.lang.String)
  779. 2018-08-15 13:11:19.245 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/area/getall]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.AreaInfoController_F.getall(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.AreaInfo)
  780. 2018-08-15 13:11:19.246 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal_F)
  781. 2018-08-15 13:11:19.246 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.update(com.xintong.visualinspection.bean.CheckAppeal_F)
  782. 2018-08-15 13:11:19.246 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.delete(com.xintong.visualinspection.bean.CheckAppeal_F)
  783. 2018-08-15 13:11:19.247 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.getById(com.xintong.visualinspection.bean.CheckAppeal_F)
  784. 2018-08-15 13:11:19.247 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal_F)
  785. 2018-08-15 13:11:19.247 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.getList(com.xintong.visualinspection.bean.CheckAppeal_F,java.lang.Integer,java.lang.Integer)
  786. 2018-08-15 13:11:19.247 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_F.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.FwqCheckTask)
  787. 2018-08-15 13:11:19.248 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal_F)
  788. 2018-08-15 13:11:19.248 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.update(com.xintong.visualinspection.bean.CheckAppeal_F)
  789. 2018-08-15 13:11:19.249 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.delete(com.xintong.visualinspection.bean.CheckAppeal_F)
  790. 2018-08-15 13:11:19.249 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.getById(com.xintong.visualinspection.bean.CheckAppeal_F)
  791. 2018-08-15 13:11:19.249 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal_F)
  792. 2018-08-15 13:11:19.249 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.getList(com.xintong.visualinspection.bean.CheckAppeal_F,java.lang.Integer,java.lang.Integer)
  793. 2018-08-15 13:11:19.249 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckAppealController_Q.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.QzdCheckTask)
  794. 2018-08-15 13:11:19.251 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  795. 2018-08-15 13:11:19.251 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.update(com.xintong.visualinspection.bean.CheckApply_F)
  796. 2018-08-15 13:11:19.251 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.delete(com.xintong.visualinspection.bean.CheckApply)
  797. 2018-08-15 13:11:19.251 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.getById(com.xintong.visualinspection.bean.CheckApply_F)
  798. 2018-08-15 13:11:19.251 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.getByTaskId(com.xintong.visualinspection.bean.CheckApply_F)
  799. 2018-08-15 13:11:19.252 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F,java.lang.Integer,java.lang.Integer)
  800. 2018-08-15 13:11:19.252 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  801. 2018-08-15 13:11:19.252 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  802. 2018-08-15 13:11:19.253 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  803. 2018-08-15 13:11:19.253 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_F.getTopReason()
  804. 2018-08-15 13:11:19.255 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  805. 2018-08-15 13:11:19.255 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.update(com.xintong.visualinspection.bean.CheckApply_F)
  806. 2018-08-15 13:11:19.255 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.delete(com.xintong.visualinspection.bean.CheckApply)
  807. 2018-08-15 13:11:19.256 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.getById(com.xintong.visualinspection.bean.CheckApply_F)
  808. 2018-08-15 13:11:19.256 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.getByTaskId(com.xintong.visualinspection.bean.CheckApply_F)
  809. 2018-08-15 13:11:19.256 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F,java.lang.Integer,java.lang.Integer)
  810. 2018-08-15 13:11:19.257 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  811. 2018-08-15 13:11:19.257 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  812. 2018-08-15 13:11:19.257 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply_F)
  813. 2018-08-15 13:11:19.258 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckApplyController_Q.getTopReason()
  814. 2018-08-15 13:11:19.258 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_F.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckOther)
  815. 2018-08-15 13:11:19.259 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_F.update(com.xintong.visualinspection.bean.FwqCheckOther)
  816. 2018-08-15 13:11:19.259 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_F.delete(com.xintong.visualinspection.bean.FwqCheckOther)
  817. 2018-08-15 13:11:19.259 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_F.getOtherCheckStatistics(com.xintong.visualinspection.bean.FwqCheckOther)
  818. 2018-08-15 13:11:19.259 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_F.getCheckById(com.xintong.visualinspection.bean.FwqCheckOther)
  819. 2018-08-15 13:11:19.259 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/checkOther/getAllCheckOther/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_F.getAllCheckOther(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.FwqCheckOther)
  820. 2018-08-15 13:11:19.260 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_Q.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckOther)
  821. 2018-08-15 13:11:19.260 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_Q.update(com.xintong.visualinspection.bean.FwqCheckOther)
  822. 2018-08-15 13:11:19.261 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_Q.delete(com.xintong.visualinspection.bean.FwqCheckOther)
  823. 2018-08-15 13:11:19.261 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_Q.getOtherCheckStatistics(com.xintong.visualinspection.bean.FwqCheckOther)
  824. 2018-08-15 13:11:19.261 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_Q.getCheckById(com.xintong.visualinspection.bean.FwqCheckOther)
  825. 2018-08-15 13:11:19.261 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/checkOther/getAllCheckOther/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.CheckOtherController_Q.getAllCheckOther(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.FwqCheckOther)
  826. 2018-08-15 13:11:19.262 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/record/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.RecordController_Q.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdRecord)
  827. 2018-08-15 13:11:19.262 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/record/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.RecordController_Q.delete(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdRecord)
  828. 2018-08-15 13:11:19.262 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/record/getall/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.RecordController_Q.getall(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.QzdRecord)
  829. 2018-08-15 13:11:19.263 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/record/one]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.RecordController_Q.getone(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdRecord)
  830. 2018-08-15 13:11:19.263 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/record/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.RecordController_Q.addrecord(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdRecord)
  831. 2018-08-15 13:11:19.264 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.add(com.xintong.visualinspection.bean.FwqScore)
  832. 2018-08-15 13:11:19.264 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqScore)
  833. 2018-08-15 13:11:19.264 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.delete(com.xintong.visualinspection.bean.FwqScore)
  834. 2018-08-15 13:11:19.265 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.getByTaskId(com.xintong.visualinspection.bean.FwqScore)
  835. 2018-08-15 13:11:19.265 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.FwqScore)
  836. 2018-08-15 13:11:19.265 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.getTopRemark()
  837. 2018-08-15 13:11:19.265 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_F.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqScore)
  838. 2018-08-15 13:11:19.266 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.add(com.xintong.visualinspection.bean.FwqScore)
  839. 2018-08-15 13:11:19.266 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqScore)
  840. 2018-08-15 13:11:19.267 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.delete(com.xintong.visualinspection.bean.FwqScore)
  841. 2018-08-15 13:11:19.267 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.getByTaskId(com.xintong.visualinspection.bean.FwqScore)
  842. 2018-08-15 13:11:19.267 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.FwqScore)
  843. 2018-08-15 13:11:19.267 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.getTopRemark()
  844. 2018-08-15 13:11:19.267 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.ScoreController_Q.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqScore)
  845. 2018-08-15 13:11:19.269 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getScoreInfo(com.xintong.visualinspection.bean.FwqStatisticsBean)
  846. 2018-08-15 13:11:19.269 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getScoreItemInfo(com.xintong.visualinspection.bean.FwqStatisticsBean)
  847. 2018-08-15 13:11:19.269 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getOperationInfo(com.xintong.visualinspection.bean.FwqStatisticsBean)
  848. 2018-08-15 13:11:19.270 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.selectYearScoreChange(com.xintong.visualinspection.bean.FwqStatisticsBean)
  849. 2018-08-15 13:11:19.270 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.selectTollgateScoreChange(com.xintong.visualinspection.bean.FwqStatisticsBean)
  850. 2018-08-15 13:11:19.270 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.selectCentermanageScoreChange(com.xintong.visualinspection.bean.FwqStatisticsBean)
  851. 2018-08-15 13:11:19.270 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getCheckedItemInfoRate(com.xintong.visualinspection.bean.FwqStatisticsBean)
  852. 2018-08-15 13:11:19.270 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.FwqStatisticsBean)
  853. 2018-08-15 13:11:19.271 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.FwqStatisticsBean,java.lang.Integer,java.lang.Integer)
  854. 2018-08-15 13:11:19.271 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.pojo.fwq.ServiceAreaStatistic)
  855. 2018-08-15 13:11:19.271 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/dept]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getDeptStatistic(com.xintong.visualinspection.bean.FwqDeptStatistic)
  856. 2018-08-15 13:11:19.271 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getEmployeeOrderByDeptId(com.xintong.visualinspection.bean.FwqStatisticsBean)
  857. 2018-08-15 13:11:19.271 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/one/serviceArea/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getSaOnePersonInfo(com.xintong.visualinspection.bean.FwqStatisticsBean)
  858. 2018-08-15 13:11:19.272 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/statistics/one/serviceArea/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.StatisticsController_F.getFsOneServiceAreaCheckedItemInfo(com.xintong.visualinspection.bean.FwqStatisticsBean)
  859. 2018-08-15 13:11:19.273 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckTask)
  860. 2018-08-15 13:11:19.274 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckTask)
  861. 2018-08-15 13:11:19.274 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckTask)
  862. 2018-08-15 13:11:19.274 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckTask)
  863. 2018-08-15 13:11:19.274 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckTask)
  864. 2018-08-15 13:11:19.274 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.FwqCheckTask)
  865. 2018-08-15 13:11:19.275 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.getStatusById(com.xintong.visualinspection.bean.Task)
  866. 2018-08-15 13:11:19.275 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/getall/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.getall(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.FwqCheckTask)
  867. 2018-08-15 13:11:19.275 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/f/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_F.addtask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.pojo.fwq.TaskData_F)
  868. 2018-08-15 13:11:19.276 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdCheckTask)
  869. 2018-08-15 13:11:19.277 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdCheckTask)
  870. 2018-08-15 13:11:19.277 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdCheckTask)
  871. 2018-08-15 13:11:19.277 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdCheckTask)
  872. 2018-08-15 13:11:19.278 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdCheckTask)
  873. 2018-08-15 13:11:19.278 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.QzdCheckTask)
  874. 2018-08-15 13:11:19.278 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/getone]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.getStatusById(com.xintong.visualinspection.bean.QzdCheckTask)
  875. 2018-08-15 13:11:19.278 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.getStatusById(com.xintong.visualinspection.bean.Task)
  876. 2018-08-15 13:11:19.279 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/getTasks/{page}/{size}]}" onto public java.util.List com.xintong.visualinspection.controller.gettway.TaskController_Q.getTasks(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.QzdCheckTask)
  877. 2018-08-15 13:11:19.279 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/getall/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.getall(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.QzdCheckTask)
  878. 2018-08-15 13:11:19.279 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/q/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.gettway.TaskController_Q.addtask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.pojo.qzd.TaskDate_Q)
  879. 2018-08-15 13:11:19.377 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  880. 2018-08-15 13:11:19.453 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  881. 2018-08-15 13:11:19.454 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  882. 2018-08-15 13:11:19.516 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  883. 2018-08-15 13:11:19.516 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  884. 2018-08-15 13:11:19.517 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  885. 2018-08-15 13:11:19.518 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  886. 2018-08-15 13:11:19.519 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
  887. 2018-08-15 13:11:19.519 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  888. 2018-08-15 13:11:19.520 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  889. 2018-08-15 13:11:19.520 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  890. 2018-08-15 13:11:19.520 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  891. 2018-08-15 13:11:19.521 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  892. 2018-08-15 13:11:19.521 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  893. 2018-08-15 13:11:19.522 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  894. 2018-08-15 13:11:19.522 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  895. 2018-08-15 13:11:19.522 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  896. 2018-08-15 13:11:19.523 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  897. 2018-08-15 13:11:19.523 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  898. 2018-08-15 13:11:19.524 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  899. 2018-08-15 13:11:19.525 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  900. 2018-08-15 13:11:19.526 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  901. 2018-08-15 13:11:19.527 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  902. 2018-08-15 13:11:19.528 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  903. 2018-08-15 13:11:19.529 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  904. 2018-08-15 13:11:19.530 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  905. 2018-08-15 13:11:19.531 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  906. 2018-08-15 13:11:19.531 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in areaInfoController_F
  907. 2018-08-15 13:11:19.532 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController_F
  908. 2018-08-15 13:11:19.532 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController_Q
  909. 2018-08-15 13:11:19.533 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController_F
  910. 2018-08-15 13:11:19.534 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController_Q
  911. 2018-08-15 13:11:19.535 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController_F
  912. 2018-08-15 13:11:19.535 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController_Q
  913. 2018-08-15 13:11:19.535 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in recordController_Q
  914. 2018-08-15 13:11:19.536 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController_F
  915. 2018-08-15 13:11:19.536 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController_Q
  916. 2018-08-15 13:11:19.537 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController_F
  917. 2018-08-15 13:11:19.537 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController_F
  918. 2018-08-15 13:11:19.538 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController_Q
  919. 2018-08-15 13:11:19.621 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  920. 2018-08-15 13:11:20.296 |-INFO [restartedMain] com.alibaba.dubbo.config.spring.beans.factory.annotation.DubboConfigBindingBeanPostProcessor [73] -| The properties of bean [name : dubbo] have been binding by values : [bean property 'name', bean property 'port', bean property 'status', bean property 'id']
  921. 2018-08-15 13:11:20.594 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  922. 2018-08-15 13:11:20.595 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  923. 2018-08-15 13:11:20.596 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  924. 2018-08-15 13:11:20.601 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  925. 2018-08-15 13:11:20.605 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  926. 2018-08-15 13:11:20.606 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  927. 2018-08-15 13:11:20.608 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  928. 2018-08-15 13:11:20.609 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  929. 2018-08-15 13:11:20.610 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  930. 2018-08-15 13:11:20.611 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  931. 2018-08-15 13:11:20.612 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  932. 2018-08-15 13:11:20.614 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  933. 2018-08-15 13:11:20.614 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  934. 2018-08-15 13:11:20.614 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  935. 2018-08-15 13:11:20.615 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  936. 2018-08-15 13:11:20.615 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  937. 2018-08-15 13:11:20.615 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  938. 2018-08-15 13:11:20.615 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  939. 2018-08-15 13:11:20.622 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  940. 2018-08-15 13:11:20.623 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  941. 2018-08-15 13:11:20.623 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  942. 2018-08-15 13:11:20.623 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  943. 2018-08-15 13:11:20.633 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  944. 2018-08-15 13:11:20.635 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  945. 2018-08-15 13:11:20.635 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  946. 2018-08-15 13:11:20.640 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  947. 2018-08-15 13:11:20.666 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  948. 2018-08-15 13:11:20.952 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  949. 2018-08-15 13:11:21.003 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  950. 2018-08-15 13:11:21.028 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  951. 2018-08-15 13:11:21.028 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  952. 2018-08-15 13:11:21.028 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  953. 2018-08-15 13:11:21.029 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  954. 2018-08-15 13:11:21.029 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  955. 2018-08-15 13:11:21.731 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  956. 2018-08-15 13:11:21.731 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  957. 2018-08-15 13:11:21.732 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  958. 2018-08-15 13:11:21.732 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  959. 2018-08-15 13:11:21.732 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  960. 2018-08-15 13:11:21.733 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
  961. 2018-08-15 13:11:21.734 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
  962. 2018-08-15 13:11:21.734 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  963. 2018-08-15 13:11:21.734 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
  964. 2018-08-15 13:11:21.736 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dubbo/shutdown],methods=[POST],produces=[application/json]}" onto public org.springframework.web.context.request.async.DeferredResult com.alibaba.boot.dubbo.actuate.endpoint.mvc.DubboMvcEndpoint.shutdown() throws java.lang.Exception
  965. 2018-08-15 13:11:21.736 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dubbo/services],methods=[GET],produces=[application/json]}" onto public java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Object>> com.alibaba.boot.dubbo.actuate.endpoint.mvc.DubboMvcEndpoint.services()
  966. 2018-08-15 13:11:21.737 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dubbo/properties],methods=[GET],produces=[application/json]}" onto public java.util.SortedMap<java.lang.String, java.lang.Object> com.alibaba.boot.dubbo.actuate.endpoint.mvc.DubboMvcEndpoint.properties()
  967. 2018-08-15 13:11:21.737 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dubbo/references],methods=[GET],produces=[application/json]}" onto public java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Object>> com.alibaba.boot.dubbo.actuate.endpoint.mvc.DubboMvcEndpoint.references()
  968. 2018-08-15 13:11:21.737 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dubbo/configs],methods=[GET],produces=[application/json]}" onto public java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Object>>> com.alibaba.boot.dubbo.actuate.endpoint.mvc.DubboMvcEndpoint.configs()
  969. 2018-08-15 13:11:21.737 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dubbo || /dubbo.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  970. 2018-08-15 13:11:21.738 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
  971. 2018-08-15 13:11:21.738 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
  972. 2018-08-15 13:11:21.738 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  973. 2018-08-15 13:11:21.739 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
  974. 2018-08-15 13:11:21.739 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
  975. 2018-08-15 13:11:21.740 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  976. 2018-08-15 13:11:21.740 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  977. 2018-08-15 13:11:21.740 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
  978. 2018-08-15 13:11:22.350 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  979. 2018-08-15 13:11:22.362 |-WARN [restartedMain] org.springframework.boot.starter.remote.shell.RemoteShellStarterDeprecatedWarningAutoConfiguration [43] -| spring-boot-starter-remote-shell is deprecated as of Spring Boot 1.5 and will be removed in Spring Boot 2.0
  980. 2018-08-15 13:11:22.706 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  981. 2018-08-15 13:11:22.707 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  982. 2018-08-15 13:11:22.707 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  983. 2018-08-15 13:11:22.718 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'masterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=masterDataSource,type=DruidDataSource]
  984. 2018-08-15 13:11:22.721 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'clusterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=clusterDataSource,type=DruidDataSource]
  985. 2018-08-15 13:11:22.721 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  986. 2018-08-15 13:11:22.726 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  987. 2018-08-15 13:11:22.729 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'auditEventsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=auditEventsEndpoint]
  988. 2018-08-15 13:11:22.747 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'requestMappingEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=requestMappingEndpoint]
  989. 2018-08-15 13:11:22.757 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'environmentEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=environmentEndpoint]
  990. 2018-08-15 13:11:22.761 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'healthEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=healthEndpoint]
  991. 2018-08-15 13:11:22.763 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'beansEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=beansEndpoint]
  992. 2018-08-15 13:11:22.766 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'infoEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=infoEndpoint]
  993. 2018-08-15 13:11:22.769 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'loggersEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=loggersEndpoint]
  994. 2018-08-15 13:11:22.774 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'metricsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=metricsEndpoint]
  995. 2018-08-15 13:11:22.776 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'traceEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=traceEndpoint]
  996. 2018-08-15 13:11:22.778 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'dumpEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=dumpEndpoint]
  997. 2018-08-15 13:11:22.780 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'autoConfigurationReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=autoConfigurationReportEndpoint]
  998. 2018-08-15 13:11:22.782 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'configurationPropertiesReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=configurationPropertiesReportEndpoint]
  999. 2018-08-15 13:11:22.850 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  1000. 2018-08-15 13:11:23.054 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  1001. 2018-08-15 13:11:23.070 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  1002. 2018-08-15 13:11:23.092 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 65
  1003. 2018-08-15 13:11:23.094 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [50] -| 加载CODE信息成功,数据数:22
  1004. 2018-08-15 13:11:23.096 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  1005. 2018-08-15 13:11:23.108 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a
  1006. 2018-08-15 13:11:23.108 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  1007. 2018-08-15 13:11:23.165 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 886
  1008. 2018-08-15 13:11:23.166 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [59] -| 加载用户信息成功,数据数:886
  1009. 2018-08-15 13:11:23.168 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  1010. 2018-08-15 13:11:23.168 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  1011. 2018-08-15 13:11:23.172 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 43
  1012. 2018-08-15 13:11:23.173 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [68] -| 加载部门信息成功,数据数:43
  1013. 2018-08-15 13:11:23.173 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  1014. 2018-08-15 13:11:23.173 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  1015. 2018-08-15 13:11:23.175 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  1016. 2018-08-15 13:11:23.176 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  1017. 2018-08-15 13:11:23.176 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1018. 2018-08-15 13:11:23.178 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1019. 2018-08-15 13:11:23.179 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  1020. 2018-08-15 13:11:23.179 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  1021. 2018-08-15 13:11:23.181 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  1022. 2018-08-15 13:11:23.181 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [114] -| {WG=[FeeStation(id=1, name=清障一队, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=59, isshow=, parentid=32, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=2, name=清障二队, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=60, isshow=, parentid=32, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=3, name=清障三队, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=61, isshow=, parentid=31, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=4, name=清障四队, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=62, isshow=, parentid=30, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=5, name=清障五队, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=63, isshow=, parentid=30, creattime=Sat Apr 01 00:00:00 CST 2017)], RM=[FeeStation(id=1, name=连云港道管中心, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=30, isshow=null, parentid=5, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=2, name=盐城道管中心, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=31, isshow=null, parentid=5, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=3, name=南通道管中心, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=32, isshow=null, parentid=5, creattime=Sat Apr 01 00:00:00 CST 2017)], SA=[FeeStation(id=1, name=如皋服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=89, isshow=null, parentid=32, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=2, name=东台服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=90, isshow=null, parentid=32, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=3, name=大丰服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=91, isshow=null, parentid=31, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=4, name=射阳服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=92, isshow=null, parentid=31, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=5, name=滨海服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=93, isshow=null, parentid=30, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=6, name=响水服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=94, isshow=null, parentid=30, creattime=Sat Apr 01 00:00:00 CST 2017), FeeStation(id=7, name=灌云服务区, lanes_number=null, exit_numer=null, entrance_numer=null, exit_etc=null, entrance_etc=null, deptid=95, isshow=null, parentid=30, creattime=Sat Apr 01 00:00:00 CST 2017)]}
  1023. 2018-08-15 13:11:23.182 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [115] -| 加载所有服务区,道管信息成功,数据list数:3
  1024. 2018-08-15 13:11:23.202 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  1025. 2018-08-15 13:11:23.203 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1026. 2018-08-15 13:11:23.205 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  1027. 2018-08-15 13:11:23.206 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [79] -| 加载职位信息成功,数据数:18
  1028. 2018-08-15 13:11:23.207 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  1029. 2018-08-15 13:11:23.208 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  1030. 2018-08-15 13:11:23.218 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  1031. 2018-08-15 13:11:23.218 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [88] -| 加载考核项信息成功,数据数:386
  1032. 2018-08-15 13:11:23.219 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1033. 2018-08-15 13:11:23.219 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 26(Long)
  1034. 2018-08-15 13:11:23.221 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 6
  1035. 2018-08-15 13:11:23.221 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=26,查询服务区考核项信息成功,数据数:1
  1036. 2018-08-15 13:11:23.221 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1037. 2018-08-15 13:11:23.222 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 27(Long)
  1038. 2018-08-15 13:11:23.223 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 3
  1039. 2018-08-15 13:11:23.223 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=27,查询服务区考核项信息成功,数据数:2
  1040. 2018-08-15 13:11:23.224 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1041. 2018-08-15 13:11:23.224 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 28(Long)
  1042. 2018-08-15 13:11:23.226 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 12
  1043. 2018-08-15 13:11:23.226 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=28,查询服务区考核项信息成功,数据数:3
  1044. 2018-08-15 13:11:23.226 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1045. 2018-08-15 13:11:23.227 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 29(Long)
  1046. 2018-08-15 13:11:23.227 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  1047. 2018-08-15 13:11:23.228 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=29,查询服务区考核项信息成功,数据数:4
  1048. 2018-08-15 13:11:23.228 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1049. 2018-08-15 13:11:23.229 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 30(Long)
  1050. 2018-08-15 13:11:23.229 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  1051. 2018-08-15 13:11:23.230 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=30,查询服务区考核项信息成功,数据数:5
  1052. 2018-08-15 13:11:23.230 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1053. 2018-08-15 13:11:23.230 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 31(Long)
  1054. 2018-08-15 13:11:23.231 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  1055. 2018-08-15 13:11:23.232 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=31,查询服务区考核项信息成功,数据数:6
  1056. 2018-08-15 13:11:23.232 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  1057. 2018-08-15 13:11:23.232 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 32(Long)
  1058. 2018-08-15 13:11:23.233 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  1059. 2018-08-15 13:11:23.234 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=32,查询服务区考核项信息成功,数据数:7
  1060. 2018-08-15 13:11:23.247 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] The service ready on spring started. service: com.xintong.visualinspection.service.CommonService, dubbo version: 2.0.1, current host: 192.168.68.111
  1061. 2018-08-15 13:11:23.306 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Export dubbo service com.xintong.visualinspection.service.CommonService to local registry, dubbo version: 2.0.1, current host: 192.168.68.111
  1062. 2018-08-15 13:11:23.306 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Export dubbo service com.xintong.visualinspection.service.CommonService to url dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1063. 2018-08-15 13:11:23.306 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Register dubbo service com.xintong.visualinspection.service.CommonService url dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0 to registry registry://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&dubbo=2.0.1&file=./output/dubbo.cache&pid=27789&registry=zookeeper&timestamp=1534309883250, dubbo version: 2.0.1, current host: 192.168.68.111
  1064. 2018-08-15 13:11:23.434 |-INFO [restartedMain] com.alibaba.dubbo.remoting.transport.AbstractServer [59] -| [DUBBO] Start NettyServer bind /0.0.0.0:7682, export /192.168.68.111:7682, dubbo version: 2.0.1, current host: 192.168.68.111
  1065. 2018-08-15 13:11:23.436 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1066. 2018-08-15 13:11:23.439 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: provider://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1067. 2018-08-15 13:11:23.440 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CommonService?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878195&version=1.0.0, urls: [dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1068. 2018-08-15 13:11:23.441 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0, urls: [empty://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1069. 2018-08-15 13:11:23.443 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] The service ready on spring started. service: com.xintong.visualinspection.service.ItemService, dubbo version: 2.0.1, current host: 192.168.68.111
  1070. 2018-08-15 13:11:23.456 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Export dubbo service com.xintong.visualinspection.service.ItemService to local registry, dubbo version: 2.0.1, current host: 192.168.68.111
  1071. 2018-08-15 13:11:23.456 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Export dubbo service com.xintong.visualinspection.service.ItemService to url dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883449&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1072. 2018-08-15 13:11:23.456 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Register dubbo service com.xintong.visualinspection.service.ItemService url dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883449&version=1.0.0 to registry registry://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&dubbo=2.0.1&file=./output/dubbo.cache&pid=27789&registry=zookeeper&timestamp=1534309883449, dubbo version: 2.0.1, current host: 192.168.68.111
  1073. 2018-08-15 13:11:23.457 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883449&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1074. 2018-08-15 13:11:23.458 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: provider://192.168.68.111:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883449&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1075. 2018-08-15 13:11:23.461 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://192.168.68.111:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883449&version=1.0.0, urls: [empty://192.168.68.111:7682/com.xintong.visualinspection.service.ItemService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ItemService&methods=getAll,getCheckItemName&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883449&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1076. 2018-08-15 13:11:23.462 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] The service ready on spring started. service: com.xintong.visualinspection.service.UserService, dubbo version: 2.0.1, current host: 192.168.68.111
  1077. 2018-08-15 13:11:23.826 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Export dubbo service com.xintong.visualinspection.service.UserService to local registry, dubbo version: 2.0.1, current host: 192.168.68.111
  1078. 2018-08-15 13:11:23.826 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Export dubbo service com.xintong.visualinspection.service.UserService to url dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883466&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1079. 2018-08-15 13:11:23.826 |-INFO [restartedMain] com.alibaba.dubbo.config.AbstractConfig [59] -| [DUBBO] Register dubbo service com.xintong.visualinspection.service.UserService url dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883466&version=1.0.0 to registry registry://127.0.0.1:2181/com.alibaba.dubbo.registry.RegistryService?application=jicha_base-provider&dubbo=2.0.1&file=./output/dubbo.cache&pid=27789&registry=zookeeper&timestamp=1534309883466, dubbo version: 2.0.1, current host: 192.168.68.111
  1080. 2018-08-15 13:11:23.828 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Register: dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883466&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1081. 2018-08-15 13:11:23.830 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Subscribe: provider://192.168.68.111:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883466&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1082. 2018-08-15 13:11:23.833 |-INFO [restartedMain] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url provider://192.168.68.111:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883466&version=1.0.0, urls: [empty://192.168.68.111:7682/com.xintong.visualinspection.service.UserService?anyhost=true&application=jicha_base-provider&category=configurators&check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.UserService&methods=getAll,getUsers,getWGUserByDeptId,getOne,loadUserByUsername,update,insert,queryCountByJob,delete,getAllCheckmans,getFsUserByDeptId&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883466&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1083. 2018-08-15 13:11:23.836 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  1084. 2018-08-15 13:11:23.843 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Successed connect to server /192.168.68.111:7682 from NettyClient 192.168.68.111 using dubbo version 2.0.1, channel is NettyChannel [channel=[id: 0x84e453e5, /192.168.68.111:63706 => /192.168.68.111:7682]], dubbo version: 2.0.1, current host: 192.168.68.111
  1085. 2018-08-15 13:11:23.843 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Start NettyClient pds.local/192.168.68.111 connect to the server /192.168.68.111:7682, dubbo version: 2.0.1, current host: 192.168.68.111
  1086. 2018-08-15 13:11:23.850 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  1087. 2018-08-15 13:11:23.850 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  1088. 2018-08-15 13:11:23.865 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  1089. 2018-08-15 13:11:23.873 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 14.559 seconds (JVM running for 15.884)
  1090. 2018-08-15 13:11:36.778 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckAppealService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309896737&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1091. 2018-08-15 13:11:36.779 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Successed connect to server /192.168.68.111:7685 from NettyClient 192.168.68.111 using dubbo version 2.0.1, channel is NettyChannel [channel=[id: 0x6298ee0e, /192.168.68.111:63741 => /192.168.68.111:7685]], dubbo version: 2.0.1, current host: 192.168.68.111
  1092. 2018-08-15 13:11:36.780 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Start NettyClient pds.local/192.168.68.111 connect to the server /192.168.68.111:7685, dubbo version: 2.0.1, current host: 192.168.68.111
  1093. 2018-08-15 13:11:36.805 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckApplyService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309896790&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1094. 2018-08-15 13:11:36.823 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckOtherService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309896811&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1095. 2018-08-15 13:11:36.851 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.RecordService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309896836&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1096. 2018-08-15 13:11:36.873 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.ScoreService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309896857&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1097. 2018-08-15 13:11:36.894 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timeout=3000&timestamp=1534309896879&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1098. 2018-08-15 13:11:36.910 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.TaskService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27815&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309896900&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1099. 2018-08-15 13:12:43.924 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1100. 2018-08-15 13:12:43.930 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1101. 2018-08-15 13:12:43.931 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1102. 2018-08-15 13:12:43.932 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1103. 2018-08-15 13:12:43.933 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1104. 2018-08-15 13:12:43.934 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1105. 2018-08-15 13:12:43.935 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1106. 2018-08-15 13:12:43.936 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.netty.NettyChannel [59] -| [DUBBO] Close netty channel [id: 0x6298ee0e, /192.168.68.111:63741 => /192.168.68.111:7685], dubbo version: 2.0.1, current host: 192.168.68.111
  1107. 2018-08-15 13:12:43.943 |-INFO [DubboSharedHandler-thread-1] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /192.168.68.111:7685,url:dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckAppealService_Q?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&register.ip=192.168.68.111&remote.timestamp=1534309896737&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534309877697&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1108. 2018-08-15 13:12:53.956 |-INFO [DubboServerHandler-192.168.68.111:7682-thread-3] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /192.168.68.111:63736,url:dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&channel.readonly.sent=true&codec=dubbo&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  1109. 2018-08-15 13:13:02.023 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckAppealService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309981990&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1110. 2018-08-15 13:13:02.024 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Successed connect to server /192.168.68.111:7685 from NettyClient 192.168.68.111 using dubbo version 2.0.1, channel is NettyChannel [channel=[id: 0x2b8a8f90, /192.168.68.111:63852 => /192.168.68.111:7685]], dubbo version: 2.0.1, current host: 192.168.68.111
  1111. 2018-08-15 13:13:02.024 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Start NettyClient pds.local/192.168.68.111 connect to the server /192.168.68.111:7685, dubbo version: 2.0.1, current host: 192.168.68.111
  1112. 2018-08-15 13:13:02.041 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckApplyService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309982031&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1113. 2018-08-15 13:13:02.056 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckOtherService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309982045&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1114. 2018-08-15 13:13:02.078 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.RecordService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309982067&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1115. 2018-08-15 13:13:02.093 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.ScoreService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309982082&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1116. 2018-08-15 13:13:02.109 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timeout=3000&timestamp=1534309982097&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1117. 2018-08-15 13:13:02.123 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.TaskService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27900&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309982114&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  1118. 2018-08-15 13:13:22.228 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  1119. 2018-08-15 13:13:22.228 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  1120. 2018-08-15 13:13:22.255 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 27 ms
  1121. 2018-08-15 13:13:22.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1122. 2018-08-15 13:13:22.367 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1123. 2018-08-15 13:13:22.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1124. 2018-08-15 13:13:22.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1125. 2018-08-15 13:13:22.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1126. 2018-08-15 13:13:22.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1127. 2018-08-15 13:13:22.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1128. 2018-08-15 13:13:22.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1129. 2018-08-15 13:13:22.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1130. 2018-08-15 13:13:22.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1131. 2018-08-15 13:13:22.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1132. 2018-08-15 13:13:22.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1133. 2018-08-15 13:13:22.394 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1134. 2018-08-15 13:13:22.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1135. 2018-08-15 13:13:22.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1136. 2018-08-15 13:13:22.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1137. 2018-08-15 13:13:22.403 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1138. 2018-08-15 13:13:22.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1139. 2018-08-15 13:13:22.788 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1140. 2018-08-15 13:13:22.788 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1141. 2018-08-15 13:13:22.788 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1142. 2018-08-15 13:13:22.788 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1143. 2018-08-15 13:13:22.788 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1144. 2018-08-15 13:13:22.788 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1145. 2018-08-15 13:13:22.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1146. 2018-08-15 13:13:22.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1147. 2018-08-15 13:13:22.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1148. 2018-08-15 13:13:22.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1149. 2018-08-15 13:13:22.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1150. 2018-08-15 13:13:22.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1151. 2018-08-15 13:13:22.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1152. 2018-08-15 13:13:22.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1153. 2018-08-15 13:13:22.837 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1154. 2018-08-15 13:13:22.837 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1155. 2018-08-15 13:13:22.840 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1156. 2018-08-15 13:13:22.840 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1157. 2018-08-15 13:13:22.841 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1158. 2018-08-15 13:13:22.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1159. 2018-08-15 13:13:22.842 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1160. 2018-08-15 13:13:22.843 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1161. 2018-08-15 13:13:22.843 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1162. 2018-08-15 13:13:22.844 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1163. 2018-08-15 13:13:22.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1164. 2018-08-15 13:13:22.844 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1165. 2018-08-15 13:13:22.846 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1166. 2018-08-15 13:13:22.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1167. 2018-08-15 13:13:22.848 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1168. 2018-08-15 13:13:22.850 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1169. 2018-08-15 13:13:22.851 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1170. 2018-08-15 13:13:22.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1171. 2018-08-15 13:13:22.852 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1172. 2018-08-15 13:13:22.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1173. 2018-08-15 13:13:22.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1174. 2018-08-15 13:13:22.856 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1175. 2018-08-15 13:13:22.856 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1176. 2018-08-15 13:13:22.859 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1177. 2018-08-15 13:13:22.860 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1178. 2018-08-15 13:13:22.860 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1179. 2018-08-15 13:13:22.864 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1180. 2018-08-15 13:13:22.865 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1181. 2018-08-15 13:13:22.865 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1182. 2018-08-15 13:13:22.866 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1183. 2018-08-15 13:13:22.867 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1184. 2018-08-15 13:13:22.868 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1185. 2018-08-15 13:13:22.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1186. 2018-08-15 13:13:22.869 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1187. 2018-08-15 13:13:22.871 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1188. 2018-08-15 13:13:22.871 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1189. 2018-08-15 13:13:22.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1190. 2018-08-15 13:13:22.873 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1191. 2018-08-15 13:13:22.873 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1192. 2018-08-15 13:13:22.874 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1193. 2018-08-15 13:13:22.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1194. 2018-08-15 13:13:22.875 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1195. 2018-08-15 13:13:22.874 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1196. 2018-08-15 13:13:22.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1197. 2018-08-15 13:13:22.876 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1198. 2018-08-15 13:13:22.877 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1199. 2018-08-15 13:13:22.878 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1200. 2018-08-15 13:13:22.880 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1201. 2018-08-15 13:13:22.882 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1202. 2018-08-15 13:13:22.883 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1203. 2018-08-15 13:13:22.885 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1204. 2018-08-15 13:13:22.885 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1205. 2018-08-15 13:13:22.886 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1206. 2018-08-15 13:13:22.888 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1207. 2018-08-15 13:13:22.888 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1208. 2018-08-15 13:13:22.889 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1209. 2018-08-15 13:13:22.890 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1210. 2018-08-15 13:13:22.891 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1211. 2018-08-15 13:13:22.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  1212. 2018-08-15 13:13:22.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  1213. 2018-08-15 13:13:22.908 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  1214. 2018-08-15 13:13:22.908 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1215. 2018-08-15 13:13:22.915 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  1216. 2018-08-15 13:13:22.916 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  1217. 2018-08-15 13:13:22.919 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1218. 2018-08-15 13:13:22.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1219. 2018-08-15 13:13:22.920 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  1220. 2018-08-15 13:13:22.922 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1221. 2018-08-15 13:13:22.922 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1222. 2018-08-15 13:13:22.923 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1223. 2018-08-15 13:13:22.923 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1224. 2018-08-15 13:13:22.925 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1225. 2018-08-15 13:13:22.926 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1226. 2018-08-15 13:13:22.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  1227. 2018-08-15 13:13:22.928 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  1228. 2018-08-15 13:13:22.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  1229. 2018-08-15 13:13:22.928 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  1230. 2018-08-15 13:13:22.929 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1231. 2018-08-15 13:13:22.929 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 20(Integer)
  1232. 2018-08-15 13:13:22.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  1233. 2018-08-15 13:13:22.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  1234. 2018-08-15 13:13:22.931 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1235. 2018-08-15 13:13:22.931 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1236. 2018-08-15 13:13:22.931 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1237. 2018-08-15 13:13:22.932 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1238. 2018-08-15 13:13:22.932 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1239. 2018-08-15 13:13:22.934 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1240. 2018-08-15 13:13:22.934 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 31
  1241. 2018-08-15 13:13:22.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  1242. 2018-08-15 13:13:22.935 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1243. 2018-08-15 13:13:22.936 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1244. 2018-08-15 13:13:22.936 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1245. 2018-08-15 13:13:22.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1246. 2018-08-15 13:13:22.939 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1247. 2018-08-15 13:13:22.940 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1248. 2018-08-15 13:13:22.940 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1249. 2018-08-15 13:13:22.940 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1250. 2018-08-15 13:13:22.941 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1251. 2018-08-15 13:13:22.943 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1252. 2018-08-15 13:13:22.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1253. 2018-08-15 13:13:22.946 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1254. 2018-08-15 13:13:22.947 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1255. 2018-08-15 13:13:22.949 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1256. 2018-08-15 13:13:22.949 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  1257. 2018-08-15 13:13:22.950 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 40(Integer)
  1258. 2018-08-15 13:13:22.951 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 0
  1259. 2018-08-15 13:13:22.952 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1260. 2018-08-15 13:13:22.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1261. 2018-08-15 13:13:22.957 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  1262. 2018-08-15 13:13:22.958 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  1263. 2018-08-15 13:13:22.959 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1264. 2018-08-15 13:13:22.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  1265. 2018-08-15 13:13:22.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1266. 2018-08-15 13:13:22.962 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1267. 2018-08-15 13:13:22.968 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1268. 2018-08-15 13:13:24.073 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1269. 2018-08-15 13:13:24.073 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1270. 2018-08-15 13:13:24.073 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1271. 2018-08-15 13:13:24.074 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1272. 2018-08-15 13:13:24.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1273. 2018-08-15 13:13:24.077 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1274. 2018-08-15 13:13:24.076 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1275. 2018-08-15 13:13:24.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1276. 2018-08-15 13:13:24.078 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1277. 2018-08-15 13:13:24.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1278. 2018-08-15 13:13:24.077 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1279. 2018-08-15 13:13:24.081 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1280. 2018-08-15 13:13:24.081 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1281. 2018-08-15 13:13:24.081 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1282. 2018-08-15 13:13:24.081 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1283. 2018-08-15 13:13:24.082 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1284. 2018-08-15 13:13:24.082 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1285. 2018-08-15 13:13:24.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1286. 2018-08-15 13:13:24.082 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1287. 2018-08-15 13:13:24.082 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1288. 2018-08-15 13:13:24.082 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1289. 2018-08-15 13:13:24.083 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1290. 2018-08-15 13:13:24.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1291. 2018-08-15 13:13:24.084 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1292. 2018-08-15 13:13:24.086 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1293. 2018-08-15 13:13:24.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1294. 2018-08-15 13:13:24.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1295. 2018-08-15 13:13:24.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1296. 2018-08-15 13:13:24.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1297. 2018-08-15 13:13:24.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1298. 2018-08-15 13:13:24.091 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1299. 2018-08-15 13:13:24.092 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1300. 2018-08-15 13:13:24.092 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1301. 2018-08-15 13:13:24.092 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1302. 2018-08-15 13:13:24.093 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1303. 2018-08-15 13:13:24.094 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1304. 2018-08-15 13:13:24.094 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1305. 2018-08-15 13:13:24.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1306. 2018-08-15 13:13:24.096 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1307. 2018-08-15 13:13:24.097 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1308. 2018-08-15 13:13:24.097 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1309. 2018-08-15 13:13:24.098 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1310. 2018-08-15 13:13:24.098 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1311. 2018-08-15 13:13:24.099 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1312. 2018-08-15 13:13:24.099 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1313. 2018-08-15 13:13:24.100 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1314. 2018-08-15 13:13:24.100 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1315. 2018-08-15 13:13:24.100 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1316. 2018-08-15 13:13:24.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1317. 2018-08-15 13:13:24.101 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1318. 2018-08-15 13:13:24.102 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1319. 2018-08-15 13:13:24.102 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1320. 2018-08-15 13:13:24.103 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1321. 2018-08-15 13:13:24.104 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1322. 2018-08-15 13:13:24.105 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1323. 2018-08-15 13:13:24.106 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1324. 2018-08-15 13:13:24.107 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1325. 2018-08-15 13:13:24.107 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1326. 2018-08-15 13:13:24.107 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  1327. 2018-08-15 13:13:24.107 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1328. 2018-08-15 13:13:24.107 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  1329. 2018-08-15 13:13:24.109 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1330. 2018-08-15 13:13:24.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  1331. 2018-08-15 13:13:24.113 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  1332. 2018-08-15 13:13:24.114 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  1333. 2018-08-15 13:13:24.117 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  1334. 2018-08-15 13:13:24.118 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  1335. 2018-08-15 13:13:24.118 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  1336. 2018-08-15 13:13:24.121 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  1337. 2018-08-15 13:13:24.122 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1338. 2018-08-15 13:13:24.123 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1339. 2018-08-15 13:13:24.123 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  1340. 2018-08-15 13:13:24.124 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  1341. 2018-08-15 13:13:24.125 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  1342. 2018-08-15 13:13:24.129 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1343. 2018-08-15 13:13:24.156 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1344. 2018-08-15 13:13:24.156 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1345. 2018-08-15 13:13:24.156 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1346. 2018-08-15 13:13:24.157 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1347. 2018-08-15 13:13:24.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1348. 2018-08-15 13:13:24.158 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1349. 2018-08-15 13:13:24.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1350. 2018-08-15 13:13:24.159 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1351. 2018-08-15 13:13:24.159 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1352. 2018-08-15 13:13:24.159 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1353. 2018-08-15 13:13:24.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1354. 2018-08-15 13:13:24.159 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1355. 2018-08-15 13:13:24.163 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1356. 2018-08-15 13:13:24.163 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1357. 2018-08-15 13:13:24.163 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1358. 2018-08-15 13:13:24.163 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1359. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1360. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1361. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1362. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1363. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1364. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1365. 2018-08-15 13:13:24.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1366. 2018-08-15 13:13:24.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1367. 2018-08-15 13:13:24.171 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1368. 2018-08-15 13:13:24.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1369. 2018-08-15 13:13:24.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1370. 2018-08-15 13:13:24.172 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1371. 2018-08-15 13:13:24.173 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1372. 2018-08-15 13:13:24.173 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1373. 2018-08-15 13:13:24.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1374. 2018-08-15 13:13:24.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1375. 2018-08-15 13:13:24.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1376. 2018-08-15 13:13:24.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1377. 2018-08-15 13:13:24.174 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1378. 2018-08-15 13:13:24.175 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1379. 2018-08-15 13:13:24.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1380. 2018-08-15 13:13:24.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1381. 2018-08-15 13:13:24.176 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1382. 2018-08-15 13:13:24.177 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1383. 2018-08-15 13:13:24.178 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1384. 2018-08-15 13:13:24.179 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1385. 2018-08-15 13:13:24.180 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1386. 2018-08-15 13:13:24.180 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1387. 2018-08-15 13:13:24.180 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1388. 2018-08-15 13:13:24.181 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1389. 2018-08-15 13:13:24.182 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1390. 2018-08-15 13:13:24.182 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1391. 2018-08-15 13:13:24.182 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  1392. 2018-08-15 13:13:24.182 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1393. 2018-08-15 13:13:24.183 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  1394. 2018-08-15 13:13:24.183 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1395. 2018-08-15 13:13:24.183 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  1396. 2018-08-15 13:13:24.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  1397. 2018-08-15 13:13:24.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  1398. 2018-08-15 13:13:24.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  1399. 2018-08-15 13:13:24.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  1400. 2018-08-15 13:13:24.187 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  1401. 2018-08-15 13:13:24.187 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  1402. 2018-08-15 13:13:24.188 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  1403. 2018-08-15 13:13:24.201 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1404. 2018-08-15 13:13:24.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1405. 2018-08-15 13:13:24.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1406. 2018-08-15 13:13:24.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1407. 2018-08-15 13:13:24.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1408. 2018-08-15 13:13:24.208 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1409. 2018-08-15 13:13:24.214 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1410. 2018-08-15 13:13:24.215 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1411. 2018-08-15 13:13:24.215 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1412. 2018-08-15 13:13:24.217 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1413. 2018-08-15 13:13:24.221 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1414. 2018-08-15 13:13:24.222 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1415. 2018-08-15 13:13:24.239 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1416. 2018-08-15 13:13:24.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1417. 2018-08-15 13:13:24.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  1418. 2018-08-15 13:13:24.312 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1419. 2018-08-15 13:13:24.314 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1420. 2018-08-15 13:13:24.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1421. 2018-08-15 13:13:24.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1422. 2018-08-15 13:13:24.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1423. 2018-08-15 13:13:24.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1424. 2018-08-15 13:13:24.324 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1425. 2018-08-15 13:13:24.325 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1426. 2018-08-15 13:13:24.325 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1427. 2018-08-15 13:13:24.326 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1428. 2018-08-15 13:13:24.330 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1429. 2018-08-15 13:13:24.331 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1430. 2018-08-15 13:13:24.335 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  1431. 2018-08-15 13:13:24.336 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  1432. 2018-08-15 13:13:24.337 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  1433. 2018-08-15 13:13:24.438 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1434. 2018-08-15 13:13:24.440 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1435. 2018-08-15 13:13:24.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1436. 2018-08-15 13:13:24.443 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1437. 2018-08-15 13:13:24.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1438. 2018-08-15 13:13:24.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1439. 2018-08-15 13:13:24.451 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1440. 2018-08-15 13:13:24.451 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1441. 2018-08-15 13:13:24.452 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1442. 2018-08-15 13:13:24.454 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1443. 2018-08-15 13:13:24.457 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1444. 2018-08-15 13:13:24.458 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1445. 2018-08-15 13:13:27.531 |-ERROR [http-nio-8089-exec-10] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  1446. com.alibaba.dubbo.rpc.RpcException: Failed to invoke the method getAllTask in the service com.xintong.visualinspection.service.TaskService_Q. Tried 3 times of the providers [192.168.68.111:7685] (1/1) from the registry 127.0.0.1:2181 on the consumer 192.168.68.111 using the dubbo version 2.0.1. Last error is: Invoke remote method timeout. method: getAllTask, provider: dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.TaskService_Q?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&register.ip=192.168.68.111&remote.timestamp=1534309982114&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534309877720&version=1.0.0, cause: Waiting server-side response timeout. start time: 2018-08-15 13:13:26.511, end time: 2018-08-15 13:13:27.516, client elapsed: 1 ms, server elapsed: 1004 ms, timeout: 1000 ms, request: Request [id=5, version=2.0.0, twoway=true, event=false, broken=false, data=RpcInvocation [methodName=getAllTask, parameterTypes=[class java.lang.Integer, class java.lang.Integer, class com.xintong.visualinspection.bean.QzdCheckTask], arguments=[1, 10, QzdCheckTask(id=null, name=null, check_status=null, check_status_end=null, check_status_arr=[2, 3], record_id=null, record_name=null, create_time=null, update_time=null, start_time=Wed Jul 25 23:00:00 CST 2018, end_time=Sat Aug 25 23:00:00 CST 2018, checkman=null, checkman_name=null, checked_dept=59, checked_dept_name=null, check_period=null, rule_id=null, remark=null, recheckman=null, recheckman_name=null, period_id=null, invalid_from=null, checked_users=null, checked_users_name=null, update_user=null, hasScore=null, invalidFrom=null, recordVideos=null, dispatch_ids=null, check_status_name=null, appeal_result=null, appeal_result_name=null, appeal_id=null, videos=null, pics=null)], attachments={path=com.xintong.visualinspection.service.TaskService_Q, interface=com.xintong.visualinspection.service.TaskService_Q, version=1.0.0}]], channel: /192.168.68.111:63852 -> /192.168.68.111:7685
  1447. at com.alibaba.dubbo.rpc.cluster.support.FailoverClusterInvoker.doInvoke(FailoverClusterInvoker.java:101)
  1448. at com.alibaba.dubbo.rpc.cluster.support.AbstractClusterInvoker.invoke(AbstractClusterInvoker.java:232)
  1449. at com.alibaba.dubbo.rpc.cluster.support.wrapper.MockClusterInvoker.invoke(MockClusterInvoker.java:70)
  1450. at com.alibaba.dubbo.rpc.proxy.InvokerInvocationHandler.invoke(InvokerInvocationHandler.java:51)
  1451. at com.alibaba.dubbo.common.bytecode.proxy4.getAllTask(proxy4.java)
  1452. at com.xintong.visualinspection.controller.gettway.TaskController_Q.getall(TaskController_Q.java:73)
  1453. at com.xintong.visualinspection.controller.gettway.TaskController_Q$$FastClassBySpringCGLIB$$610ea312.invoke(<generated>)
  1454. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  1455. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  1456. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  1457. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
  1458. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  1459. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  1460. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  1461. at com.xintong.visualinspection.controller.gettway.TaskController_Q$$EnhancerBySpringCGLIB$$d739f780.getall(<generated>)
  1462. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1463. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1464. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1465. at java.lang.reflect.Method.invoke(Method.java:497)
  1466. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  1467. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  1468. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  1469. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  1470. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  1471. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  1472. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  1473. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  1474. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  1475. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  1476. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  1477. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  1478. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  1479. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  1480. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1481. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  1482. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1483. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1484. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  1485. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1486. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1487. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1488. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  1489. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1490. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1491. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  1492. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1493. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1494. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  1495. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1496. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1497. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1498. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  1499. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1500. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1501. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  1502. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1503. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1504. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1505. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  1506. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  1507. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  1508. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1509. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  1510. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1511. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  1512. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1513. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  1514. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1515. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  1516. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1517. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  1518. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1519. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  1520. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1521. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1522. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  1523. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1524. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  1525. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1526. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1527. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  1528. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1529. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1530. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  1531. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1532. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  1533. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1534. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  1535. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  1536. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  1537. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  1538. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  1539. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1540. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1541. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  1542. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1543. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1544. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1545. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  1546. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1547. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1548. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1549. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  1550. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1551. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1552. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1553. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  1554. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1555. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1556. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1557. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  1558. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  1559. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  1560. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  1561. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  1562. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  1563. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  1564. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  1565. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  1566. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  1567. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  1568. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  1569. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  1570. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  1571. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  1572. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  1573. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1574. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1575. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  1576. at java.lang.Thread.run(Thread.java:745)
  1577. Caused by: com.alibaba.dubbo.remoting.TimeoutException: Waiting server-side response timeout. start time: 2018-08-15 13:13:26.511, end time: 2018-08-15 13:13:27.516, client elapsed: 1 ms, server elapsed: 1004 ms, timeout: 1000 ms, request: Request [id=5, version=2.0.0, twoway=true, event=false, broken=false, data=RpcInvocation [methodName=getAllTask, parameterTypes=[class java.lang.Integer, class java.lang.Integer, class com.xintong.visualinspection.bean.QzdCheckTask], arguments=[1, 10, QzdCheckTask(id=null, name=null, check_status=null, check_status_end=null, check_status_arr=[2, 3], record_id=null, record_name=null, create_time=null, update_time=null, start_time=Wed Jul 25 23:00:00 CST 2018, end_time=Sat Aug 25 23:00:00 CST 2018, checkman=null, checkman_name=null, checked_dept=59, checked_dept_name=null, check_period=null, rule_id=null, remark=null, recheckman=null, recheckman_name=null, period_id=null, invalid_from=null, checked_users=null, checked_users_name=null, update_user=null, hasScore=null, invalidFrom=null, recordVideos=null, dispatch_ids=null, check_status_name=null, appeal_result=null, appeal_result_name=null, appeal_id=null, videos=null, pics=null)], attachments={path=com.xintong.visualinspection.service.TaskService_Q, interface=com.xintong.visualinspection.service.TaskService_Q, version=1.0.0}]], channel: /192.168.68.111:63852 -> /192.168.68.111:7685
  1578. at com.alibaba.dubbo.remoting.exchange.support.DefaultFuture.get(DefaultFuture.java:134)
  1579. at com.alibaba.dubbo.remoting.exchange.support.DefaultFuture.get(DefaultFuture.java:111)
  1580. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboInvoker.doInvoke(DubboInvoker.java:95)
  1581. at com.alibaba.dubbo.rpc.protocol.AbstractInvoker.invoke(AbstractInvoker.java:142)
  1582. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  1583. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1584. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.FutureFilter.invoke(FutureFilter.java:53)
  1585. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1586. at com.alibaba.dubbo.rpc.filter.ConsumerContextFilter.invoke(ConsumerContextFilter.java:47)
  1587. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1588. at com.alibaba.dubbo.rpc.listener.ListenerInvokerWrapper.invoke(ListenerInvokerWrapper.java:73)
  1589. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  1590. at com.alibaba.dubbo.rpc.cluster.support.FailoverClusterInvoker.doInvoke(FailoverClusterInvoker.java:77)
  1591. ... 129 common frames omitted
  1592. 2018-08-15 13:13:27.534 |-WARN [http-nio-8089-exec-10] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: com.alibaba.dubbo.rpc.RpcException: Failed to invoke the method getAllTask in the service com.xintong.visualinspection.service.TaskService_Q. Tried 3 times of the providers [192.168.68.111:7685] (1/1) from the registry 127.0.0.1:2181 on the consumer 192.168.68.111 using the dubbo version 2.0.1. Last error is: Invoke remote method timeout. method: getAllTask, provider: dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.TaskService_Q?anyhost=true&application=jicha_base-provider&check=false&default.check=false&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&register.ip=192.168.68.111&remote.timestamp=1534309982114&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534309877720&version=1.0.0, cause: Waiting server-side response timeout. start time: 2018-08-15 13:13:26.511, end time: 2018-08-15 13:13:27.516, client elapsed: 1 ms, server elapsed: 1004 ms, timeout: 1000 ms, request: Request [id=5, version=2.0.0, twoway=true, event=false, broken=false, data=RpcInvocation [methodName=getAllTask, parameterTypes=[class java.lang.Integer, class java.lang.Integer, class com.xintong.visualinspection.bean.QzdCheckTask], arguments=[1, 10, QzdCheckTask(id=null, name=null, check_status=null, check_status_end=null, check_status_arr=[2, 3], record_id=null, record_name=null, create_time=null, update_time=null, start_time=Wed Jul 25 23:00:00 CST 2018, end_time=Sat Aug 25 23:00:00 CST 2018, checkman=null, checkman_name=null, checked_dept=59, checked_dept_name=null, check_period=null, rule_id=null, remark=null, recheckman=null, recheckman_name=null, period_id=null, invalid_from=null, checked_users=null, checked_users_name=null, update_user=null, hasScore=null, invalidFrom=null, recordVideos=null, dispatch_ids=null, check_status_name=null, appeal_result=null, appeal_result_name=null, appeal_id=null, videos=null, pics=null)], attachments={path=com.xintong.visualinspection.service.TaskService_Q, interface=com.xintong.visualinspection.service.TaskService_Q, version=1.0.0}]], channel: /192.168.68.111:63852 -> /192.168.68.111:7685
  1593. 2018-08-15 13:13:32.197 |-WARN [DubboClientHandler-192.168.68.111:7685-thread-1] com.alibaba.dubbo.remoting.exchange.support.DefaultFuture [71] -| [DUBBO] The timeout response finally returned at 2018-08-15 13:13:32.196, response Response [id=5, version=null, status=20, event=false, error=null, result=RpcResult [result=null, exception=java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  1594. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1595. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1596. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1597. ### The error occurred while setting parameters
  1598. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1599. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1600. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1601. org.springframework.jdbc.BadSqlGrammarException:
  1602. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1603. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1604. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1605. ### The error occurred while setting parameters
  1606. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1607. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1608. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1609. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  1610. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  1611. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  1612. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  1613. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  1614. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  1615. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  1616. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  1617. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  1618. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  1619. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  1620. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  1621. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  1622. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  1623. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  1624. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  1625. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  1626. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1627. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  1628. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1629. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  1630. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1631. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  1632. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1633. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  1634. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1635. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  1636. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1637. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  1638. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1639. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  1640. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1641. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  1642. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  1643. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  1644. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  1645. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  1646. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1647. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1648. at java.lang.Thread.run(Thread.java:745)
  1649. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1650. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  1651. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  1652. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  1653. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  1654. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  1655. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  1656. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  1657. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  1658. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  1659. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  1660. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  1661. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  1662. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  1663. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  1664. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  1665. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1666. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1667. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1668. at java.lang.reflect.Method.invoke(Method.java:497)
  1669. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  1670. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  1671. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  1672. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  1673. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  1674. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  1675. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  1676. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  1677. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  1678. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  1679. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  1680. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  1681. at com.sun.proxy.$Proxy98.query(Unknown Source)
  1682. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  1683. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  1684. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1685. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1686. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1687. at java.lang.reflect.Method.invoke(Method.java:497)
  1688. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  1689. ... 36 more
  1690. ]], channel: /192.168.68.111:63852 -> /192.168.68.111:7685, dubbo version: 2.0.1, current host: 192.168.68.111
  1691. 2018-08-15 13:13:32.198 |-WARN [DubboClientHandler-192.168.68.111:7685-thread-1] com.alibaba.dubbo.remoting.exchange.support.DefaultFuture [71] -| [DUBBO] The timeout response finally returned at 2018-08-15 13:13:32.197, response Response [id=3, version=null, status=20, event=false, error=null, result=RpcResult [result=null, exception=java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  1692. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1693. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1694. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1695. ### The error occurred while setting parameters
  1696. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1697. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1698. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1699. org.springframework.jdbc.BadSqlGrammarException:
  1700. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1701. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1702. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1703. ### The error occurred while setting parameters
  1704. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1705. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1706. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1707. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  1708. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  1709. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  1710. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  1711. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  1712. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  1713. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  1714. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  1715. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  1716. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  1717. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  1718. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  1719. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  1720. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  1721. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  1722. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  1723. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  1724. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1725. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  1726. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1727. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  1728. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1729. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  1730. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1731. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  1732. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1733. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  1734. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1735. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  1736. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1737. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  1738. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1739. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  1740. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  1741. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  1742. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  1743. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  1744. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1745. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1746. at java.lang.Thread.run(Thread.java:745)
  1747. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1748. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  1749. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  1750. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  1751. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  1752. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  1753. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  1754. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  1755. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  1756. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  1757. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  1758. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  1759. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  1760. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  1761. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  1762. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  1763. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1764. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1765. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1766. at java.lang.reflect.Method.invoke(Method.java:497)
  1767. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  1768. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  1769. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  1770. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  1771. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  1772. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  1773. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  1774. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  1775. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  1776. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  1777. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  1778. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  1779. at com.sun.proxy.$Proxy98.query(Unknown Source)
  1780. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  1781. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  1782. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1783. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1784. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1785. at java.lang.reflect.Method.invoke(Method.java:497)
  1786. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  1787. ... 36 more
  1788. ]], channel: /192.168.68.111:63852 -> /192.168.68.111:7685, dubbo version: 2.0.1, current host: 192.168.68.111
  1789. 2018-08-15 13:13:32.199 |-WARN [DubboClientHandler-192.168.68.111:7685-thread-1] com.alibaba.dubbo.remoting.exchange.support.DefaultFuture [71] -| [DUBBO] The timeout response finally returned at 2018-08-15 13:13:32.198, response Response [id=4, version=null, status=20, event=false, error=null, result=RpcResult [result=null, exception=java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  1790. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1791. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1792. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1793. ### The error occurred while setting parameters
  1794. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1795. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1796. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1797. org.springframework.jdbc.BadSqlGrammarException:
  1798. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1799. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1800. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1801. ### The error occurred while setting parameters
  1802. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1803. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1804. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1805. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  1806. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  1807. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  1808. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  1809. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  1810. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  1811. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  1812. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  1813. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  1814. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  1815. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  1816. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  1817. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  1818. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  1819. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  1820. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  1821. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  1822. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1823. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  1824. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1825. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  1826. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1827. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  1828. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1829. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  1830. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1831. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  1832. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1833. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  1834. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1835. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  1836. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1837. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  1838. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  1839. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  1840. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  1841. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  1842. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1843. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1844. at java.lang.Thread.run(Thread.java:745)
  1845. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1846. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  1847. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  1848. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  1849. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  1850. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  1851. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  1852. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  1853. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  1854. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  1855. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  1856. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  1857. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  1858. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  1859. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  1860. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  1861. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1862. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1863. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1864. at java.lang.reflect.Method.invoke(Method.java:497)
  1865. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  1866. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  1867. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  1868. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  1869. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  1870. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  1871. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  1872. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  1873. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  1874. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  1875. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  1876. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  1877. at com.sun.proxy.$Proxy98.query(Unknown Source)
  1878. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  1879. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  1880. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1881. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1882. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1883. at java.lang.reflect.Method.invoke(Method.java:497)
  1884. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  1885. ... 36 more
  1886. ]], channel: /192.168.68.111:63852 -> /192.168.68.111:7685, dubbo version: 2.0.1, current host: 192.168.68.111
  1887. 2018-08-15 13:13:35.145 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1888. 2018-08-15 13:13:35.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1889. 2018-08-15 13:13:35.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  1890. 2018-08-15 13:13:35.150 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1891. 2018-08-15 13:13:35.151 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1892. 2018-08-15 13:13:35.151 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  1893. 2018-08-15 13:13:35.158 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  1894. 2018-08-15 13:13:35.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1895. 2018-08-15 13:13:35.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  1896. 2018-08-15 13:13:35.161 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  1897. 2018-08-15 13:13:35.165 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  1898. 2018-08-15 13:13:35.167 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  1899. 2018-08-15 13:13:35.186 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  1900. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  1901. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1902. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1903. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1904. ### The error occurred while setting parameters
  1905. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1906. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1907. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1908. org.springframework.jdbc.BadSqlGrammarException:
  1909. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1910. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  1911. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  1912. ### The error occurred while setting parameters
  1913. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  1914. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1915. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1916. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  1917. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  1918. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  1919. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  1920. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  1921. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  1922. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  1923. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  1924. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  1925. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  1926. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  1927. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  1928. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  1929. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  1930. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  1931. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  1932. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  1933. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1934. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  1935. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1936. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  1937. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1938. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  1939. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1940. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  1941. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1942. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  1943. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1944. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  1945. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1946. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  1947. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1948. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  1949. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  1950. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  1951. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  1952. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  1953. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  1954. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  1955. at java.lang.Thread.run(Thread.java:745)
  1956. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  1957. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  1958. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  1959. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  1960. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  1961. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  1962. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  1963. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  1964. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  1965. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  1966. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  1967. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  1968. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  1969. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  1970. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  1971. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  1972. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1973. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1974. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1975. at java.lang.reflect.Method.invoke(Method.java:497)
  1976. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  1977. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  1978. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  1979. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  1980. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  1981. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  1982. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  1983. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  1984. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  1985. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  1986. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  1987. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  1988. at com.sun.proxy.$Proxy98.query(Unknown Source)
  1989. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  1990. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  1991. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  1992. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  1993. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  1994. at java.lang.reflect.Method.invoke(Method.java:497)
  1995. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  1996. ... 36 more
  1997. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  1998. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  1999. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2000. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2001. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2002. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2003. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2004. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2005. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2006. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2007. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2008. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2009. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2010. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2011. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2012. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2013. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2014. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2015. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2016. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2017. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2018. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2019. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2020. at java.lang.Thread.run(Thread.java:745)
  2021. 2018-08-15 13:13:35.187 |-WARN [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2022. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2023. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2024. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2025. ### The error occurred while setting parameters
  2026. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2027. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2028. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2029. org.springframework.jdbc.BadSqlGrammarException:
  2030. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2031. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2032. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2033. ### The error occurred while setting parameters
  2034. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2035. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2036. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2037. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2038. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2039. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2040. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2041. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2042. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2043. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2044. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2045. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2046. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  2047. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  2048. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  2049. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2050. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2051. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2052. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2053. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2054. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2055. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2056. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2057. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2058. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2059. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2060. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2061. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2062. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2063. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2064. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2065. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2066. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2067. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2068. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2069. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2070. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2071. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2072. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2073. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2074. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2075. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2076. at java.lang.Thread.run(Thread.java:745)
  2077. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2078. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2079. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2080. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2081. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2082. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2083. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2084. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2085. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2086. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2087. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2088. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2089. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2090. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2091. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2092. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2093. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2094. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2095. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2096. at java.lang.reflect.Method.invoke(Method.java:497)
  2097. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2098. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2099. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2100. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2101. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2102. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2103. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2104. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2105. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  2106. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2107. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2108. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2109. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2110. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2111. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2112. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2113. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2114. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2115. at java.lang.reflect.Method.invoke(Method.java:497)
  2116. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2117. ... 36 more
  2118. 2018-08-15 13:13:39.524 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2119. 2018-08-15 13:13:39.526 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2120. 2018-08-15 13:13:39.527 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2121. 2018-08-15 13:13:39.527 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2122. 2018-08-15 13:13:39.527 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2123. 2018-08-15 13:13:39.528 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2124. 2018-08-15 13:13:39.528 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2125. 2018-08-15 13:13:39.529 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2126. 2018-08-15 13:13:39.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2127. 2018-08-15 13:13:39.530 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2128. 2018-08-15 13:13:39.530 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2129. 2018-08-15 13:13:39.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2130. 2018-08-15 13:13:39.531 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2131. 2018-08-15 13:13:39.531 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2132. 2018-08-15 13:13:39.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2133. 2018-08-15 13:13:39.532 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2134. 2018-08-15 13:13:39.532 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2135. 2018-08-15 13:13:39.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2136. 2018-08-15 13:13:39.533 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2137. 2018-08-15 13:13:39.533 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2138. 2018-08-15 13:13:39.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2139. 2018-08-15 13:13:39.534 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2140. 2018-08-15 13:13:39.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2141. 2018-08-15 13:13:39.534 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2142. 2018-08-15 13:13:39.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2143. 2018-08-15 13:13:39.535 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2144. 2018-08-15 13:13:39.535 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2145. 2018-08-15 13:13:39.535 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2146. 2018-08-15 13:13:39.536 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2147. 2018-08-15 13:13:39.536 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2148. 2018-08-15 13:13:39.542 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2149. 2018-08-15 13:13:39.543 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2150. 2018-08-15 13:13:39.544 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2151. 2018-08-15 13:13:39.544 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2152. 2018-08-15 13:13:39.544 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2153. 2018-08-15 13:13:39.545 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2154. 2018-08-15 13:13:39.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2155. 2018-08-15 13:13:39.545 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2156. 2018-08-15 13:13:39.546 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2157. 2018-08-15 13:13:39.546 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2158. 2018-08-15 13:13:39.546 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2159. 2018-08-15 13:13:39.546 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2160. 2018-08-15 13:13:39.547 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2161. 2018-08-15 13:13:39.547 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2162. 2018-08-15 13:13:39.547 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2163. 2018-08-15 13:13:39.547 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2164. 2018-08-15 13:13:39.548 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2165. 2018-08-15 13:13:39.548 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2166. 2018-08-15 13:13:39.549 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2167. 2018-08-15 13:13:39.549 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2168. 2018-08-15 13:13:39.550 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2169. 2018-08-15 13:13:39.551 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2170. 2018-08-15 13:13:39.551 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2171. 2018-08-15 13:13:39.552 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2172. 2018-08-15 13:13:39.552 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2173. 2018-08-15 13:13:39.553 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2174. 2018-08-15 13:13:39.553 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2175. 2018-08-15 13:13:39.553 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2176. 2018-08-15 13:13:39.554 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2177. 2018-08-15 13:13:39.554 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2178. 2018-08-15 13:13:39.555 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  2179. 2018-08-15 13:13:39.555 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  2180. 2018-08-15 13:13:39.557 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  2181. 2018-08-15 13:13:39.559 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  2182. 2018-08-15 13:13:39.559 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  2183. 2018-08-15 13:13:39.559 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  2184. 2018-08-15 13:13:39.560 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  2185. 2018-08-15 13:13:39.562 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  2186. 2018-08-15 13:13:39.563 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2187. 2018-08-15 13:13:39.563 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  2188. 2018-08-15 13:13:39.564 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2189. 2018-08-15 13:13:39.564 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  2190. 2018-08-15 13:13:39.565 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  2191. 2018-08-15 13:13:39.566 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  2192. 2018-08-15 13:13:39.570 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2193. 2018-08-15 13:13:39.616 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2194. 2018-08-15 13:13:39.618 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2195. 2018-08-15 13:13:39.618 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2196. 2018-08-15 13:13:39.618 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2197. 2018-08-15 13:13:39.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2198. 2018-08-15 13:13:39.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2199. 2018-08-15 13:13:39.621 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2200. 2018-08-15 13:13:39.621 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2201. 2018-08-15 13:13:39.621 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2202. 2018-08-15 13:13:39.621 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2203. 2018-08-15 13:13:39.621 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2204. 2018-08-15 13:13:39.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2205. 2018-08-15 13:13:39.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2206. 2018-08-15 13:13:39.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2207. 2018-08-15 13:13:39.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2208. 2018-08-15 13:13:39.624 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2209. 2018-08-15 13:13:39.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2210. 2018-08-15 13:13:39.624 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2211. 2018-08-15 13:13:39.625 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2212. 2018-08-15 13:13:39.625 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2213. 2018-08-15 13:13:39.625 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2214. 2018-08-15 13:13:39.625 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2215. 2018-08-15 13:13:39.625 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2216. 2018-08-15 13:13:39.625 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2217. 2018-08-15 13:13:39.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2218. 2018-08-15 13:13:39.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2219. 2018-08-15 13:13:39.632 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2220. 2018-08-15 13:13:39.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2221. 2018-08-15 13:13:39.633 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2222. 2018-08-15 13:13:39.633 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2223. 2018-08-15 13:13:39.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2224. 2018-08-15 13:13:39.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2225. 2018-08-15 13:13:39.634 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2226. 2018-08-15 13:13:39.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2227. 2018-08-15 13:13:39.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2228. 2018-08-15 13:13:39.635 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2229. 2018-08-15 13:13:39.635 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2230. 2018-08-15 13:13:39.636 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2231. 2018-08-15 13:13:39.636 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2232. 2018-08-15 13:13:39.637 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2233. 2018-08-15 13:13:39.637 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2234. 2018-08-15 13:13:39.639 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2235. 2018-08-15 13:13:39.639 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2236. 2018-08-15 13:13:39.639 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2237. 2018-08-15 13:13:39.639 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2238. 2018-08-15 13:13:39.640 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2239. 2018-08-15 13:13:39.640 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2240. 2018-08-15 13:13:39.640 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2241. 2018-08-15 13:13:39.641 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  2242. 2018-08-15 13:13:39.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  2243. 2018-08-15 13:13:39.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  2244. 2018-08-15 13:13:39.641 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  2245. 2018-08-15 13:13:39.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  2246. 2018-08-15 13:13:39.641 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  2247. 2018-08-15 13:13:39.642 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  2248. 2018-08-15 13:13:39.642 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  2249. 2018-08-15 13:13:39.644 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  2250. 2018-08-15 13:13:39.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  2251. 2018-08-15 13:13:39.645 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  2252. 2018-08-15 13:13:39.647 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  2253. 2018-08-15 13:13:39.654 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2254. 2018-08-15 13:13:39.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2255. 2018-08-15 13:13:39.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2256. 2018-08-15 13:13:39.658 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2257. 2018-08-15 13:13:39.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2258. 2018-08-15 13:13:39.659 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2259. 2018-08-15 13:13:39.666 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2260. 2018-08-15 13:13:39.667 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2261. 2018-08-15 13:13:39.667 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2262. 2018-08-15 13:13:39.668 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2263. 2018-08-15 13:13:39.671 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2264. 2018-08-15 13:13:39.672 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2265. 2018-08-15 13:13:39.678 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  2266. 2018-08-15 13:13:39.679 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  2267. 2018-08-15 13:13:39.711 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  2268. 2018-08-15 13:13:39.746 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2269. 2018-08-15 13:13:39.748 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2270. 2018-08-15 13:13:39.749 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2271. 2018-08-15 13:13:39.751 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2272. 2018-08-15 13:13:39.752 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2273. 2018-08-15 13:13:39.753 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2274. 2018-08-15 13:13:39.760 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2275. 2018-08-15 13:13:39.760 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2276. 2018-08-15 13:13:39.761 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2277. 2018-08-15 13:13:39.762 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2278. 2018-08-15 13:13:39.765 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2279. 2018-08-15 13:13:39.766 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2280. 2018-08-15 13:13:39.770 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  2281. 2018-08-15 13:13:39.771 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  2282. 2018-08-15 13:13:39.772 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  2283. 2018-08-15 13:13:39.870 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2284. 2018-08-15 13:13:39.872 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2285. 2018-08-15 13:13:39.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2286. 2018-08-15 13:13:39.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2287. 2018-08-15 13:13:39.878 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2288. 2018-08-15 13:13:39.878 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2289. 2018-08-15 13:13:39.885 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2290. 2018-08-15 13:13:39.886 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2291. 2018-08-15 13:13:39.886 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2292. 2018-08-15 13:13:39.888 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2293. 2018-08-15 13:13:39.890 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2294. 2018-08-15 13:13:39.891 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2295. 2018-08-15 13:13:39.909 |-ERROR [http-nio-8089-exec-8] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  2296. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2297. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2298. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2299. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2300. ### The error occurred while setting parameters
  2301. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2302. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2303. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2304. org.springframework.jdbc.BadSqlGrammarException:
  2305. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2306. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2307. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2308. ### The error occurred while setting parameters
  2309. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2310. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2311. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2312. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2313. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2314. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2315. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2316. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2317. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2318. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2319. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2320. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2321. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  2322. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  2323. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  2324. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2325. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2326. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2327. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2328. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2329. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2330. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2331. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2332. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2333. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2334. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2335. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2336. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2337. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2338. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2339. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2340. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2341. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2342. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2343. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2344. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2345. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2346. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2347. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2348. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2349. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2350. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2351. at java.lang.Thread.run(Thread.java:745)
  2352. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2353. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2354. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2355. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2356. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2357. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2358. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2359. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2360. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2361. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2362. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2363. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2364. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2365. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2366. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2367. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2368. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2369. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2370. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2371. at java.lang.reflect.Method.invoke(Method.java:497)
  2372. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2373. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2374. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2375. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2376. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2377. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2378. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2379. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2380. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  2381. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2382. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2383. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2384. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2385. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2386. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2387. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2388. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2389. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2390. at java.lang.reflect.Method.invoke(Method.java:497)
  2391. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2392. ... 36 more
  2393. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  2394. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2395. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2396. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2397. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2398. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2399. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2400. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2401. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2402. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2403. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2404. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2405. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2406. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2407. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2408. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2409. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2410. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2411. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2412. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2413. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2414. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2415. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2416. at java.lang.Thread.run(Thread.java:745)
  2417. 2018-08-15 13:13:39.910 |-WARN [http-nio-8089-exec-8] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2418. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2419. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2420. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2421. ### The error occurred while setting parameters
  2422. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2423. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2424. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2425. org.springframework.jdbc.BadSqlGrammarException:
  2426. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2427. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2428. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2429. ### The error occurred while setting parameters
  2430. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2431. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2432. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2433. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2434. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2435. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2436. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2437. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2438. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2439. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2440. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2441. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2442. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  2443. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  2444. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  2445. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2446. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2447. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2448. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2449. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2450. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2451. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2452. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2453. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2454. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2455. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2456. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2457. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2458. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2459. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2460. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2461. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2462. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2463. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2464. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2465. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2466. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2467. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2468. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2469. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2470. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2471. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2472. at java.lang.Thread.run(Thread.java:745)
  2473. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2474. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2475. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2476. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2477. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2478. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2479. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2480. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2481. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2482. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2483. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2484. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2485. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2486. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2487. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2488. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2489. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2490. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2491. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2492. at java.lang.reflect.Method.invoke(Method.java:497)
  2493. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2494. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2495. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2496. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2497. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2498. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2499. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2500. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2501. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  2502. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2503. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2504. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2505. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2506. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2507. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2508. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2509. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2510. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2511. at java.lang.reflect.Method.invoke(Method.java:497)
  2512. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2513. ... 36 more
  2514. 2018-08-15 13:13:41.594 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2515. 2018-08-15 13:13:41.597 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2516. 2018-08-15 13:13:41.597 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2517. 2018-08-15 13:13:41.599 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2518. 2018-08-15 13:13:41.600 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2519. 2018-08-15 13:13:41.601 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2520. 2018-08-15 13:13:41.608 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2521. 2018-08-15 13:13:41.610 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2522. 2018-08-15 13:13:41.610 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2523. 2018-08-15 13:13:41.612 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2524. 2018-08-15 13:13:41.616 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2525. 2018-08-15 13:13:41.617 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2526. 2018-08-15 13:13:41.648 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  2527. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2528. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2529. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/RecordMapper.xml]
  2530. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdRecordDao.getall-Inline
  2531. ### The error occurred while setting parameters
  2532. ### SQL: select t.*,c.check_status from record_info t left join check_task c on t.id = c.record_id where 1=1 and t.received_time between ? and ? ORDER BY t.received_time DESC
  2533. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2534. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2535. org.springframework.jdbc.BadSqlGrammarException:
  2536. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2537. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/RecordMapper.xml]
  2538. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdRecordDao.getall-Inline
  2539. ### The error occurred while setting parameters
  2540. ### SQL: select t.*,c.check_status from record_info t left join check_task c on t.id = c.record_id where 1=1 and t.received_time between ? and ? ORDER BY t.received_time DESC
  2541. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2542. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2543. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2544. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2545. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2546. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2547. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2548. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2549. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2550. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2551. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2552. at com.sun.proxy.$Proxy94.getall(Unknown Source)
  2553. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.RecordServiceImpl.getAllRecord(RecordServiceImpl.java:48)
  2554. at com.alibaba.dubbo.common.bytecode.Wrapper9.invokeMethod(Wrapper9.java)
  2555. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2556. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2557. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2558. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2559. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2560. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2561. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2562. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2563. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2564. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2565. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2566. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2567. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2568. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2569. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2570. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2571. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2572. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2573. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2574. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2575. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2576. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2577. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2578. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2579. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2580. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2581. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2582. at java.lang.Thread.run(Thread.java:745)
  2583. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2584. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2585. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2586. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2587. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2588. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2589. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2590. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2591. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2592. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2593. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2594. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2595. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2596. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2597. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2598. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2599. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2600. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2601. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2602. at java.lang.reflect.Method.invoke(Method.java:497)
  2603. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2604. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2605. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2606. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2607. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2608. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2609. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2610. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2611. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  2612. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2613. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2614. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2615. at java.lang.reflect.Method.invoke(Method.java:497)
  2616. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  2617. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  2618. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2619. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2620. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2621. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2622. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2623. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2624. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2625. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2626. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2627. at java.lang.reflect.Method.invoke(Method.java:497)
  2628. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2629. ... 36 more
  2630. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  2631. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2632. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2633. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2634. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2635. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2636. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2637. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2638. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2639. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2640. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2641. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2642. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2643. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2644. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2645. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2646. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2647. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2648. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2649. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2650. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2651. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2652. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2653. at java.lang.Thread.run(Thread.java:745)
  2654. 2018-08-15 13:13:41.649 |-WARN [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2655. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2656. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/RecordMapper.xml]
  2657. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdRecordDao.getall-Inline
  2658. ### The error occurred while setting parameters
  2659. ### SQL: select t.*,c.check_status from record_info t left join check_task c on t.id = c.record_id where 1=1 and t.received_time between ? and ? ORDER BY t.received_time DESC
  2660. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2661. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2662. org.springframework.jdbc.BadSqlGrammarException:
  2663. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2664. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/RecordMapper.xml]
  2665. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdRecordDao.getall-Inline
  2666. ### The error occurred while setting parameters
  2667. ### SQL: select t.*,c.check_status from record_info t left join check_task c on t.id = c.record_id where 1=1 and t.received_time between ? and ? ORDER BY t.received_time DESC
  2668. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2669. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2670. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2671. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2672. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2673. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2674. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2675. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2676. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2677. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2678. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2679. at com.sun.proxy.$Proxy94.getall(Unknown Source)
  2680. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.RecordServiceImpl.getAllRecord(RecordServiceImpl.java:48)
  2681. at com.alibaba.dubbo.common.bytecode.Wrapper9.invokeMethod(Wrapper9.java)
  2682. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2683. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2684. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2685. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2686. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2687. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2688. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2689. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2690. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2691. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2692. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2693. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2694. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2695. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2696. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2697. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2698. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2699. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2700. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2701. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2702. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2703. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2704. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2705. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2706. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2707. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2708. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2709. at java.lang.Thread.run(Thread.java:745)
  2710. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2711. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2712. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2713. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2714. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2715. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2716. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2717. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2718. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2719. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2720. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2721. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2722. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2723. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2724. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2725. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2726. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2727. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2728. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2729. at java.lang.reflect.Method.invoke(Method.java:497)
  2730. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2731. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2732. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2733. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2734. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2735. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2736. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2737. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2738. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  2739. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2740. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2741. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2742. at java.lang.reflect.Method.invoke(Method.java:497)
  2743. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  2744. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  2745. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2746. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2747. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2748. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2749. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2750. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2751. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2752. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2753. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2754. at java.lang.reflect.Method.invoke(Method.java:497)
  2755. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2756. ... 36 more
  2757. 2018-08-15 13:13:46.377 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2758. 2018-08-15 13:13:46.380 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2759. 2018-08-15 13:13:46.380 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2760. 2018-08-15 13:13:46.383 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2761. 2018-08-15 13:13:46.384 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  2762. 2018-08-15 13:13:46.384 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  2763. 2018-08-15 13:13:46.391 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  2764. 2018-08-15 13:13:46.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  2765. 2018-08-15 13:13:46.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  2766. 2018-08-15 13:13:46.394 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  2767. 2018-08-15 13:13:46.397 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  2768. 2018-08-15 13:13:46.399 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2769. 2018-08-15 13:13:46.422 |-ERROR [http-nio-8089-exec-6] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  2770. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2771. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2772. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2773. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2774. ### The error occurred while setting parameters
  2775. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2776. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2777. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2778. org.springframework.jdbc.BadSqlGrammarException:
  2779. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2780. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2781. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2782. ### The error occurred while setting parameters
  2783. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2784. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2785. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2786. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2787. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2788. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2789. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2790. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2791. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2792. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2793. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2794. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2795. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  2796. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  2797. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  2798. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2799. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2800. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2801. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2802. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2803. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2804. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2805. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2806. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2807. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2808. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2809. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2810. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2811. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2812. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2813. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2814. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2815. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2816. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2817. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2818. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2819. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2820. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2821. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2822. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2823. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2824. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2825. at java.lang.Thread.run(Thread.java:745)
  2826. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2827. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2828. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2829. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2830. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2831. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2832. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2833. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2834. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2835. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2836. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2837. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2838. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2839. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2840. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2841. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2842. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2843. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2844. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2845. at java.lang.reflect.Method.invoke(Method.java:497)
  2846. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2847. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2848. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2849. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2850. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2851. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2852. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2853. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2854. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  2855. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2856. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2857. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2858. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2859. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2860. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2861. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2862. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2863. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2864. at java.lang.reflect.Method.invoke(Method.java:497)
  2865. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2866. ... 36 more
  2867. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  2868. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2869. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2870. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2871. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2872. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2873. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2874. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2875. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2876. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2877. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2878. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2879. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2880. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2881. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2882. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2883. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2884. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2885. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2886. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2887. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2888. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2889. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2890. at java.lang.Thread.run(Thread.java:745)
  2891. 2018-08-15 13:13:46.423 |-WARN [http-nio-8089-exec-6] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  2892. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2893. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2894. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2895. ### The error occurred while setting parameters
  2896. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2897. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2898. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2899. org.springframework.jdbc.BadSqlGrammarException:
  2900. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2901. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  2902. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  2903. ### The error occurred while setting parameters
  2904. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  2905. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2906. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2907. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  2908. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  2909. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  2910. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  2911. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  2912. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  2913. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  2914. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  2915. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  2916. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  2917. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  2918. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  2919. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  2920. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  2921. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  2922. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  2923. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  2924. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2925. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  2926. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2927. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  2928. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2929. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  2930. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2931. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  2932. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2933. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  2934. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2935. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  2936. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2937. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  2938. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  2939. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  2940. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  2941. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  2942. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  2943. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  2944. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  2945. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  2946. at java.lang.Thread.run(Thread.java:745)
  2947. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  2948. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  2949. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  2950. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  2951. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  2952. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  2953. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  2954. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  2955. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  2956. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  2957. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  2958. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  2959. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  2960. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  2961. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  2962. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  2963. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2964. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2965. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2966. at java.lang.reflect.Method.invoke(Method.java:497)
  2967. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  2968. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  2969. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  2970. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  2971. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  2972. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  2973. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  2974. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  2975. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  2976. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  2977. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  2978. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  2979. at com.sun.proxy.$Proxy98.query(Unknown Source)
  2980. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  2981. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  2982. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  2983. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  2984. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  2985. at java.lang.reflect.Method.invoke(Method.java:497)
  2986. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  2987. ... 36 more
  2988. 2018-08-15 13:13:50.872 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2989. 2018-08-15 13:13:50.872 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2990. 2018-08-15 13:13:50.872 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2991. 2018-08-15 13:13:50.873 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2992. 2018-08-15 13:13:50.874 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  2993. 2018-08-15 13:13:50.875 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2994. 2018-08-15 13:13:50.875 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2995. 2018-08-15 13:13:50.876 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2996. 2018-08-15 13:13:50.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2997. 2018-08-15 13:13:50.876 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  2998. 2018-08-15 13:13:50.876 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2999. 2018-08-15 13:13:50.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3000. 2018-08-15 13:13:50.877 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3001. 2018-08-15 13:13:50.877 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3002. 2018-08-15 13:13:50.877 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3003. 2018-08-15 13:13:50.878 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3004. 2018-08-15 13:13:50.879 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3005. 2018-08-15 13:13:50.879 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3006. 2018-08-15 13:13:50.879 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3007. 2018-08-15 13:13:50.880 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3008. 2018-08-15 13:13:50.879 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3009. 2018-08-15 13:13:50.880 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3010. 2018-08-15 13:13:50.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3011. 2018-08-15 13:13:50.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3012. 2018-08-15 13:13:50.880 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3013. 2018-08-15 13:13:50.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3014. 2018-08-15 13:13:50.881 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3015. 2018-08-15 13:13:50.881 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3016. 2018-08-15 13:13:50.882 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3017. 2018-08-15 13:13:50.882 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3018. 2018-08-15 13:13:50.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3019. 2018-08-15 13:13:50.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3020. 2018-08-15 13:13:50.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3021. 2018-08-15 13:13:50.891 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3022. 2018-08-15 13:13:50.892 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3023. 2018-08-15 13:13:50.892 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3024. 2018-08-15 13:13:50.892 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3025. 2018-08-15 13:13:50.892 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3026. 2018-08-15 13:13:50.893 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3027. 2018-08-15 13:13:50.893 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3028. 2018-08-15 13:13:50.893 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3029. 2018-08-15 13:13:50.893 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3030. 2018-08-15 13:13:50.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3031. 2018-08-15 13:13:50.894 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3032. 2018-08-15 13:13:50.894 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3033. 2018-08-15 13:13:50.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3034. 2018-08-15 13:13:50.895 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3035. 2018-08-15 13:13:50.895 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3036. 2018-08-15 13:13:50.897 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3037. 2018-08-15 13:13:50.897 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3038. 2018-08-15 13:13:50.897 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3039. 2018-08-15 13:13:50.898 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3040. 2018-08-15 13:13:50.899 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3041. 2018-08-15 13:13:50.900 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3042. 2018-08-15 13:13:50.900 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3043. 2018-08-15 13:13:50.901 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3044. 2018-08-15 13:13:50.901 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3045. 2018-08-15 13:13:50.901 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3046. 2018-08-15 13:13:50.902 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3047. 2018-08-15 13:13:50.902 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3048. 2018-08-15 13:13:50.904 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3049. 2018-08-15 13:13:50.905 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3050. 2018-08-15 13:13:50.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3051. 2018-08-15 13:13:50.907 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3052. 2018-08-15 13:13:50.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3053. 2018-08-15 13:13:50.908 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  3054. 2018-08-15 13:13:50.909 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  3055. 2018-08-15 13:13:50.910 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3056. 2018-08-15 13:13:50.910 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3057. 2018-08-15 13:13:50.911 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  3058. 2018-08-15 13:13:50.912 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  3059. 2018-08-15 13:13:50.912 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3060. 2018-08-15 13:13:50.913 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3061. 2018-08-15 13:13:50.913 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3062. 2018-08-15 13:13:50.920 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3063. 2018-08-15 13:13:50.958 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3064. 2018-08-15 13:13:50.958 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3065. 2018-08-15 13:13:50.958 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3066. 2018-08-15 13:13:50.959 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3067. 2018-08-15 13:13:50.961 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3068. 2018-08-15 13:13:50.961 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3069. 2018-08-15 13:13:50.961 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3070. 2018-08-15 13:13:50.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3071. 2018-08-15 13:13:50.962 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3072. 2018-08-15 13:13:50.962 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3073. 2018-08-15 13:13:50.962 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3074. 2018-08-15 13:13:50.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3075. 2018-08-15 13:13:50.965 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3076. 2018-08-15 13:13:50.965 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3077. 2018-08-15 13:13:50.965 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3078. 2018-08-15 13:13:50.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3079. 2018-08-15 13:13:50.966 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3080. 2018-08-15 13:13:50.966 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3081. 2018-08-15 13:13:50.966 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3082. 2018-08-15 13:13:50.966 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3083. 2018-08-15 13:13:50.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3084. 2018-08-15 13:13:50.967 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3085. 2018-08-15 13:13:50.967 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3086. 2018-08-15 13:13:50.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3087. 2018-08-15 13:13:50.974 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3088. 2018-08-15 13:13:50.975 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3089. 2018-08-15 13:13:50.975 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3090. 2018-08-15 13:13:50.975 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3091. 2018-08-15 13:13:50.976 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3092. 2018-08-15 13:13:50.976 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3093. 2018-08-15 13:13:50.977 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3094. 2018-08-15 13:13:50.977 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3095. 2018-08-15 13:13:50.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3096. 2018-08-15 13:13:50.977 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3097. 2018-08-15 13:13:50.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3098. 2018-08-15 13:13:50.978 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3099. 2018-08-15 13:13:50.978 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3100. 2018-08-15 13:13:50.978 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3101. 2018-08-15 13:13:50.979 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3102. 2018-08-15 13:13:50.980 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3103. 2018-08-15 13:13:50.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3104. 2018-08-15 13:13:50.981 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3105. 2018-08-15 13:13:50.981 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3106. 2018-08-15 13:13:50.982 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3107. 2018-08-15 13:13:50.982 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3108. 2018-08-15 13:13:50.996 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3109. 2018-08-15 13:13:50.996 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3110. 2018-08-15 13:13:50.996 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3111. 2018-08-15 13:13:50.997 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3112. 2018-08-15 13:13:50.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3113. 2018-08-15 13:13:50.998 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3114. 2018-08-15 13:13:50.998 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  3115. 2018-08-15 13:13:50.998 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3116. 2018-08-15 13:13:50.999 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  3117. 2018-08-15 13:13:51.000 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3118. 2018-08-15 13:13:51.000 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3119. 2018-08-15 13:13:51.000 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3120. 2018-08-15 13:13:51.001 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  3121. 2018-08-15 13:13:51.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  3122. 2018-08-15 13:13:51.011 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3123. 2018-08-15 13:13:51.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3124. 2018-08-15 13:13:51.013 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3125. 2018-08-15 13:13:51.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3126. 2018-08-15 13:13:51.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3127. 2018-08-15 13:13:51.016 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3128. 2018-08-15 13:13:51.016 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3129. 2018-08-15 13:13:51.021 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3130. 2018-08-15 13:13:51.022 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3131. 2018-08-15 13:13:51.022 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3132. 2018-08-15 13:13:51.024 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3133. 2018-08-15 13:13:51.026 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3134. 2018-08-15 13:13:51.027 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3135. 2018-08-15 13:13:51.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3136. 2018-08-15 13:13:51.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3137. 2018-08-15 13:13:51.060 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  3138. 2018-08-15 13:13:51.087 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3139. 2018-08-15 13:13:51.089 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3140. 2018-08-15 13:13:51.089 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3141. 2018-08-15 13:13:51.091 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3142. 2018-08-15 13:13:51.092 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3143. 2018-08-15 13:13:51.092 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3144. 2018-08-15 13:13:51.098 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3145. 2018-08-15 13:13:51.099 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3146. 2018-08-15 13:13:51.099 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3147. 2018-08-15 13:13:51.101 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3148. 2018-08-15 13:13:51.104 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3149. 2018-08-15 13:13:51.105 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3150. 2018-08-15 13:13:51.108 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3151. 2018-08-15 13:13:51.109 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3152. 2018-08-15 13:13:51.111 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3153. 2018-08-15 13:13:51.195 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3154. 2018-08-15 13:13:51.198 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3155. 2018-08-15 13:13:51.198 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3156. 2018-08-15 13:13:51.200 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3157. 2018-08-15 13:13:51.201 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3158. 2018-08-15 13:13:51.202 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3159. 2018-08-15 13:13:51.207 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3160. 2018-08-15 13:13:51.208 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3161. 2018-08-15 13:13:51.208 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3162. 2018-08-15 13:13:51.211 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3163. 2018-08-15 13:13:51.215 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3164. 2018-08-15 13:13:51.217 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3165. 2018-08-15 13:13:51.232 |-ERROR [http-nio-8089-exec-5] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  3166. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  3167. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3168. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  3169. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  3170. ### The error occurred while setting parameters
  3171. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  3172. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3173. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3174. org.springframework.jdbc.BadSqlGrammarException:
  3175. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3176. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  3177. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  3178. ### The error occurred while setting parameters
  3179. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  3180. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3181. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3182. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  3183. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  3184. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  3185. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  3186. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  3187. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  3188. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  3189. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  3190. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  3191. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  3192. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  3193. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  3194. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  3195. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  3196. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  3197. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  3198. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  3199. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3200. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  3201. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3202. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  3203. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3204. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  3205. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3206. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  3207. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3208. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  3209. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3210. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  3211. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3212. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  3213. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3214. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  3215. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  3216. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  3217. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  3218. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  3219. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  3220. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  3221. at java.lang.Thread.run(Thread.java:745)
  3222. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3223. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  3224. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  3225. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  3226. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  3227. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  3228. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  3229. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  3230. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  3231. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  3232. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  3233. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  3234. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  3235. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  3236. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  3237. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  3238. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  3239. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  3240. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  3241. at java.lang.reflect.Method.invoke(Method.java:497)
  3242. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  3243. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  3244. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  3245. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  3246. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  3247. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  3248. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  3249. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  3250. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  3251. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  3252. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  3253. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  3254. at com.sun.proxy.$Proxy98.query(Unknown Source)
  3255. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  3256. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  3257. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  3258. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  3259. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  3260. at java.lang.reflect.Method.invoke(Method.java:497)
  3261. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  3262. ... 36 more
  3263. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  3264. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3265. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  3266. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3267. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  3268. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3269. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  3270. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3271. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  3272. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3273. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  3274. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3275. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  3276. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3277. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  3278. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3279. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  3280. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  3281. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  3282. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  3283. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  3284. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  3285. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  3286. at java.lang.Thread.run(Thread.java:745)
  3287. 2018-08-15 13:13:51.233 |-WARN [http-nio-8089-exec-5] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  3288. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3289. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  3290. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  3291. ### The error occurred while setting parameters
  3292. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  3293. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3294. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3295. org.springframework.jdbc.BadSqlGrammarException:
  3296. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3297. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/TaskMapper.xml]
  3298. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdTaskDao.getall-Inline
  3299. ### The error occurred while setting parameters
  3300. ### SQL: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, ca.appeal_result AS appeal_result, r.videos AS recordVideos FROM check_task t LEFT JOIN record_info r ON t.record_id = r.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND t.check_status IN (?, ?)) table_count
  3301. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3302. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3303. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  3304. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  3305. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  3306. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  3307. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  3308. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  3309. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  3310. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  3311. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  3312. at com.sun.proxy.$Proxy95.getall(Unknown Source)
  3313. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.TaskService_QImpl.getAllTask(TaskService_QImpl.java:65)
  3314. at com.alibaba.dubbo.common.bytecode.Wrapper15.invokeMethod(Wrapper15.java)
  3315. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  3316. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  3317. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  3318. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  3319. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  3320. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3321. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  3322. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3323. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  3324. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3325. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  3326. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3327. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  3328. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3329. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  3330. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3331. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  3332. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3333. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  3334. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  3335. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  3336. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  3337. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  3338. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  3339. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  3340. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  3341. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  3342. at java.lang.Thread.run(Thread.java:745)
  3343. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_2.record_info' doesn't exist
  3344. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  3345. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  3346. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  3347. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  3348. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  3349. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  3350. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  3351. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  3352. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  3353. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  3354. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  3355. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  3356. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  3357. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  3358. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  3359. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  3360. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  3361. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  3362. at java.lang.reflect.Method.invoke(Method.java:497)
  3363. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  3364. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  3365. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  3366. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  3367. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  3368. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  3369. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  3370. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  3371. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  3372. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  3373. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  3374. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  3375. at com.sun.proxy.$Proxy98.query(Unknown Source)
  3376. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  3377. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  3378. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  3379. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  3380. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  3381. at java.lang.reflect.Method.invoke(Method.java:497)
  3382. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  3383. ... 36 more
  3384. 2018-08-15 13:14:18.184 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3385. 2018-08-15 13:14:18.185 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3386. 2018-08-15 13:14:18.186 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3387. 2018-08-15 13:14:18.187 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3388. 2018-08-15 13:14:18.188 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3389. 2018-08-15 13:14:18.189 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3390. 2018-08-15 13:14:18.193 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, urls: [empty://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3391. 2018-08-15 13:14:18.193 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.netty.NettyChannel [59] -| [DUBBO] Close netty channel [id: 0x2b8a8f90, /192.168.68.111:63852 => /192.168.68.111:7685], dubbo version: 2.0.1, current host: 192.168.68.111
  3392. 2018-08-15 13:14:18.194 |-INFO [DubboSharedHandler-thread-2] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /192.168.68.111:7685,url:dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckAppealService_Q?anyhost=true&application=jicha_base-provider&check=false&codec=dubbo&default.check=false&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&register.ip=192.168.68.111&remote.timestamp=1534309981990&revision=1.0-SNAPSHOT&side=consumer&status=server&timestamp=1534309877697&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  3393. 2018-08-15 13:14:28.210 |-INFO [DubboServerHandler-192.168.68.111:7682-thread-5] com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol [59] -| [DUBBO] disconected from /192.168.68.111:63847,url:dubbo://192.168.68.111:7682/com.xintong.visualinspection.service.CommonService?anyhost=true&application=jicha_base-provider&bind.ip=192.168.68.111&bind.port=7682&channel.readonly.sent=true&codec=dubbo&dubbo=2.0.1&generic=false&heartbeat=60000&interface=com.xintong.visualinspection.service.CommonService&methods=getCommonDataMap,getAllDeptByLayer,getCodeFlagMap,getDeptMap,getJobMap,getCheckItemName,getCodeMap,getCheckTaskPeriod,getAllCheckTaskPeriod,getUserMap,getItemMap&pid=27789&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534309883250&version=1.0.0, dubbo version: 2.0.1, current host: 192.168.68.111
  3394. 2018-08-15 13:14:35.330 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckAppealService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877697&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckAppealService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckAppealService_Q&methods=getById,getList,update,insert,delete,getByTaskId&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534310075293&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3395. 2018-08-15 13:14:35.331 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Successed connect to server /192.168.68.111:7685 from NettyClient 192.168.68.111 using dubbo version 2.0.1, channel is NettyChannel [channel=[id: 0xc0ba7640, /192.168.68.111:64092 => /192.168.68.111:7685]], dubbo version: 2.0.1, current host: 192.168.68.111
  3396. 2018-08-15 13:14:35.331 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.remoting.transport.AbstractClient [59] -| [DUBBO] Start NettyClient pds.local/192.168.68.111 connect to the server /192.168.68.111:7685, dubbo version: 2.0.1, current host: 192.168.68.111
  3397. 2018-08-15 13:14:35.351 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckApplyService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877837&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckApplyService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckApplyService_Q&methods=getById,getTopReasonList,getList,update,insert,delete,getByTaskId&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534310075340&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3398. 2018-08-15 13:14:35.368 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.CheckOtherService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877943&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.CheckOtherService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.CheckOtherService_Q&methods=deleteCheckOther,addCheckOther,updateCheckOther,selectCheckById,getCheckOtherStatistics,getAllCheckOther&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534310075357&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3399. 2018-08-15 13:14:35.390 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.RecordService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877993&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.RecordService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.RecordService_Q&methods=getAllRecord,getRecord,updateRecord,addRecord,deleteRecord&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534310075378&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3400. 2018-08-15 13:14:35.406 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.ScoreService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=backoutScore,getScoreListByTaskId,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878107&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.ScoreService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.ScoreService_Q&methods=getScoreListByTaskId,backoutScore,getAll,getScoreList,getOne,update,insert,getTopRemarkList,delete,updateByTaskIdAndPerson&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534310075394&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3401. 2018-08-15 13:14:35.424 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.StatisticsService_F?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,get2CheckedItemScoreInfo,getOneCheckedDetailInfo,getCenterManageScoreInfo,getOneCheckedItemInfo,getFwqStatistic&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309878169&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.StatisticsService_F?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.StatisticsService_F&methods=getOneSACheckedInfo,getYearScoreChange,getOperationInfo,getDeptStatistic,getEmployeeCheckedInfo,getCheckedItemScoreInfo,getFeeStationScoreInfo,getFeeStationCheckItemScore,getFeeStationCheckedScore,getEmployeeRankingData,getOneCheckedDetailInfo,get2CheckedItemScoreInfo,getOneCheckedItemInfo,getCenterManageScoreInfo,getFwqStatistic&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timeout=3000&timestamp=1534310075410&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3402. 2018-08-15 13:14:35.438 |-INFO [ZkClient-EventThread-51-127.0.0.1:2181] com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry [59] -| [DUBBO] Notify urls for subscribe url consumer://192.168.68.111/com.xintong.visualinspection.service.TaskService_Q?application=jicha_base-provider&category=providers,configurators,routers&check=false&default.check=false&dubbo=2.0.1&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=27789&revision=1.0-SNAPSHOT&side=consumer&timestamp=1534309877720&version=1.0.0, urls: [dubbo://192.168.68.111:7685/com.xintong.visualinspection.service.TaskService_Q?anyhost=true&application=jicha_qzd-provider_consumer&dubbo=2.0.1&generic=false&interface=com.xintong.visualinspection.service.TaskService_Q&methods=updateStatus,getTaskStatusList,getAllTask,getTask,addTask&pid=28072&revision=1.0-SNAPSHOT&side=provider&status=server&timestamp=1534310075429&version=1.0.0], dubbo version: 2.0.1, current host: 192.168.68.111
  3403. 2018-08-15 13:16:12.973 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3404. 2018-08-15 13:16:12.974 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3405. 2018-08-15 13:16:12.975 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3406. 2018-08-15 13:16:12.975 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3407. 2018-08-15 13:16:12.975 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3408. 2018-08-15 13:16:12.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3409. 2018-08-15 13:16:12.978 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3410. 2018-08-15 13:16:12.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3411. 2018-08-15 13:16:12.978 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3412. 2018-08-15 13:16:12.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3413. 2018-08-15 13:16:12.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3414. 2018-08-15 13:16:12.981 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3415. 2018-08-15 13:16:12.981 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3416. 2018-08-15 13:16:12.981 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3417. 2018-08-15 13:16:12.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3418. 2018-08-15 13:16:12.982 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3419. 2018-08-15 13:16:12.982 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3420. 2018-08-15 13:16:12.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3421. 2018-08-15 13:16:12.983 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3422. 2018-08-15 13:16:12.984 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3423. 2018-08-15 13:16:12.984 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3424. 2018-08-15 13:16:12.984 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3425. 2018-08-15 13:16:12.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3426. 2018-08-15 13:16:12.985 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3427. 2018-08-15 13:16:12.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3428. 2018-08-15 13:16:12.985 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3429. 2018-08-15 13:16:12.990 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3430. 2018-08-15 13:16:12.990 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3431. 2018-08-15 13:16:12.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3432. 2018-08-15 13:16:12.991 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3433. 2018-08-15 13:16:12.992 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3434. 2018-08-15 13:16:12.993 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3435. 2018-08-15 13:16:12.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3436. 2018-08-15 13:16:12.993 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3437. 2018-08-15 13:16:12.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3438. 2018-08-15 13:16:12.993 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3439. 2018-08-15 13:16:12.994 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3440. 2018-08-15 13:16:12.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3441. 2018-08-15 13:16:12.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3442. 2018-08-15 13:16:12.996 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3443. 2018-08-15 13:16:12.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3444. 2018-08-15 13:16:12.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3445. 2018-08-15 13:16:12.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3446. 2018-08-15 13:16:12.998 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3447. 2018-08-15 13:16:12.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3448. 2018-08-15 13:16:12.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3449. 2018-08-15 13:16:12.999 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3450. 2018-08-15 13:16:12.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3451. 2018-08-15 13:16:13.000 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3452. 2018-08-15 13:16:13.000 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3453. 2018-08-15 13:16:13.001 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3454. 2018-08-15 13:16:13.001 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3455. 2018-08-15 13:16:13.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3456. 2018-08-15 13:16:13.001 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3457. 2018-08-15 13:16:13.001 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3458. 2018-08-15 13:16:13.002 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3459. 2018-08-15 13:16:13.005 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3460. 2018-08-15 13:16:13.005 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3461. 2018-08-15 13:16:13.005 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3462. 2018-08-15 13:16:13.005 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3463. 2018-08-15 13:16:13.006 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3464. 2018-08-15 13:16:13.007 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3465. 2018-08-15 13:16:13.007 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3466. 2018-08-15 13:16:13.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  3467. 2018-08-15 13:16:13.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  3468. 2018-08-15 13:16:13.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3469. 2018-08-15 13:16:13.011 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3470. 2018-08-15 13:16:13.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  3471. 2018-08-15 13:16:13.013 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3472. 2018-08-15 13:16:13.013 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3473. 2018-08-15 13:16:13.013 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3474. 2018-08-15 13:16:13.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3475. 2018-08-15 13:16:13.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3476. 2018-08-15 13:16:13.016 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  3477. 2018-08-15 13:16:13.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3478. 2018-08-15 13:16:13.058 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3479. 2018-08-15 13:16:13.058 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3480. 2018-08-15 13:16:13.058 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3481. 2018-08-15 13:16:13.059 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3482. 2018-08-15 13:16:13.060 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3483. 2018-08-15 13:16:13.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3484. 2018-08-15 13:16:13.061 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3485. 2018-08-15 13:16:13.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3486. 2018-08-15 13:16:13.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3487. 2018-08-15 13:16:13.061 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3488. 2018-08-15 13:16:13.061 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3489. 2018-08-15 13:16:13.062 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3490. 2018-08-15 13:16:13.063 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3491. 2018-08-15 13:16:13.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3492. 2018-08-15 13:16:13.064 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3493. 2018-08-15 13:16:13.064 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3494. 2018-08-15 13:16:13.064 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3495. 2018-08-15 13:16:13.064 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3496. 2018-08-15 13:16:13.064 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3497. 2018-08-15 13:16:13.065 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3498. 2018-08-15 13:16:13.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3499. 2018-08-15 13:16:13.065 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3500. 2018-08-15 13:16:13.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3501. 2018-08-15 13:16:13.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3502. 2018-08-15 13:16:13.074 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3503. 2018-08-15 13:16:13.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3504. 2018-08-15 13:16:13.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3505. 2018-08-15 13:16:13.075 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3506. 2018-08-15 13:16:13.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3507. 2018-08-15 13:16:13.075 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3508. 2018-08-15 13:16:13.075 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3509. 2018-08-15 13:16:13.076 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3510. 2018-08-15 13:16:13.076 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3511. 2018-08-15 13:16:13.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3512. 2018-08-15 13:16:13.076 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3513. 2018-08-15 13:16:13.076 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3514. 2018-08-15 13:16:13.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3515. 2018-08-15 13:16:13.078 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3516. 2018-08-15 13:16:13.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3517. 2018-08-15 13:16:13.078 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3518. 2018-08-15 13:16:13.080 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3519. 2018-08-15 13:16:13.080 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3520. 2018-08-15 13:16:13.080 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3521. 2018-08-15 13:16:13.080 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3522. 2018-08-15 13:16:13.081 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3523. 2018-08-15 13:16:13.081 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3524. 2018-08-15 13:16:13.081 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3525. 2018-08-15 13:16:13.082 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3526. 2018-08-15 13:16:13.082 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3527. 2018-08-15 13:16:13.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3528. 2018-08-15 13:16:13.083 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3529. 2018-08-15 13:16:13.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  3530. 2018-08-15 13:16:13.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3531. 2018-08-15 13:16:13.083 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3532. 2018-08-15 13:16:13.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  3533. 2018-08-15 13:16:13.084 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3534. 2018-08-15 13:16:13.085 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3535. 2018-08-15 13:16:13.085 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3536. 2018-08-15 13:16:13.086 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  3537. 2018-08-15 13:16:13.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  3538. 2018-08-15 13:16:13.094 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3539. 2018-08-15 13:16:13.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3540. 2018-08-15 13:16:13.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3541. 2018-08-15 13:16:13.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3542. 2018-08-15 13:16:13.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3543. 2018-08-15 13:16:13.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3544. 2018-08-15 13:16:13.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3545. 2018-08-15 13:16:13.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3546. 2018-08-15 13:16:13.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3547. 2018-08-15 13:16:13.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3548. 2018-08-15 13:16:13.111 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3549. 2018-08-15 13:16:13.112 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3550. 2018-08-15 13:16:13.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3551. 2018-08-15 13:16:13.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3552. 2018-08-15 13:16:13.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  3553. 2018-08-15 13:16:13.174 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3554. 2018-08-15 13:16:13.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3555. 2018-08-15 13:16:13.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3556. 2018-08-15 13:16:13.178 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3557. 2018-08-15 13:16:13.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3558. 2018-08-15 13:16:13.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3559. 2018-08-15 13:16:13.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3560. 2018-08-15 13:16:13.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3561. 2018-08-15 13:16:13.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3562. 2018-08-15 13:16:13.189 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3563. 2018-08-15 13:16:13.191 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3564. 2018-08-15 13:16:13.193 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3565. 2018-08-15 13:16:13.196 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3566. 2018-08-15 13:16:13.197 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3567. 2018-08-15 13:16:13.198 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3568. 2018-08-15 13:16:13.287 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3569. 2018-08-15 13:16:13.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3570. 2018-08-15 13:16:13.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3571. 2018-08-15 13:16:13.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3572. 2018-08-15 13:16:13.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3573. 2018-08-15 13:16:13.293 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3574. 2018-08-15 13:16:13.298 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3575. 2018-08-15 13:16:13.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3576. 2018-08-15 13:16:13.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3577. 2018-08-15 13:16:13.300 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3578. 2018-08-15 13:16:13.303 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3579. 2018-08-15 13:16:13.304 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3580. 2018-08-15 13:16:15.277 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3581. 2018-08-15 13:16:15.279 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3582. 2018-08-15 13:16:15.280 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3583. 2018-08-15 13:16:15.282 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3584. 2018-08-15 13:16:15.282 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3585. 2018-08-15 13:16:15.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3586. 2018-08-15 13:16:15.289 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3587. 2018-08-15 13:16:15.289 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3588. 2018-08-15 13:16:15.290 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3589. 2018-08-15 13:16:15.291 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3590. 2018-08-15 13:16:15.293 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3591. 2018-08-15 13:16:15.294 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3592. 2018-08-15 13:16:15.321 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3593. 2018-08-15 13:16:15.321 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3594. 2018-08-15 13:16:15.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3595. 2018-08-15 13:16:15.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3596. 2018-08-15 13:16:15.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3597. 2018-08-15 13:16:15.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3598. 2018-08-15 13:16:15.326 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3599. 2018-08-15 13:16:15.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3600. 2018-08-15 13:16:15.327 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3601. 2018-08-15 13:16:15.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3602. 2018-08-15 13:16:15.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3603. 2018-08-15 13:16:15.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3604. 2018-08-15 13:16:15.335 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3605. 2018-08-15 13:16:15.336 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3606. 2018-08-15 13:16:15.336 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3607. 2018-08-15 13:16:15.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3608. 2018-08-15 13:16:15.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3609. 2018-08-15 13:16:15.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3610. 2018-08-15 13:16:15.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3611. 2018-08-15 13:16:15.339 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3612. 2018-08-15 13:16:15.341 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3613. 2018-08-15 13:16:15.342 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3614. 2018-08-15 13:16:15.342 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3615. 2018-08-15 13:16:15.343 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3616. 2018-08-15 13:16:15.366 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-14] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  3617. 2018-08-15 13:16:15.366 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-14] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  3618. 2018-08-15 13:16:15.374 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-14] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  3619. 2018-08-15 13:19:04.905 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3620. 2018-08-15 13:19:04.907 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3621. 2018-08-15 13:19:04.907 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3622. 2018-08-15 13:19:04.909 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3623. 2018-08-15 13:19:04.910 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3624. 2018-08-15 13:19:04.910 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3625. 2018-08-15 13:19:04.911 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3626. 2018-08-15 13:19:04.913 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3627. 2018-08-15 13:19:04.911 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3628. 2018-08-15 13:19:04.914 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3629. 2018-08-15 13:19:04.915 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3630. 2018-08-15 13:19:04.914 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3631. 2018-08-15 13:19:04.916 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3632. 2018-08-15 13:19:04.916 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3633. 2018-08-15 13:19:04.917 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3634. 2018-08-15 13:19:04.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3635. 2018-08-15 13:19:04.918 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3636. 2018-08-15 13:19:04.918 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3637. 2018-08-15 13:19:04.919 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3638. 2018-08-15 13:19:04.919 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3639. 2018-08-15 13:19:04.919 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3640. 2018-08-15 13:19:04.919 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3641. 2018-08-15 13:19:04.920 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3642. 2018-08-15 13:19:04.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3643. 2018-08-15 13:19:04.921 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3644. 2018-08-15 13:19:04.921 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3645. 2018-08-15 13:19:04.921 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3646. 2018-08-15 13:19:04.924 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3647. 2018-08-15 13:19:04.927 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3648. 2018-08-15 13:19:04.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3649. 2018-08-15 13:19:04.928 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3650. 2018-08-15 13:19:04.928 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3651. 2018-08-15 13:19:04.930 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3652. 2018-08-15 13:19:04.930 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3653. 2018-08-15 13:19:04.931 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3654. 2018-08-15 13:19:04.932 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3655. 2018-08-15 13:19:04.932 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3656. 2018-08-15 13:19:04.932 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3657. 2018-08-15 13:19:04.933 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3658. 2018-08-15 13:19:04.933 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3659. 2018-08-15 13:19:04.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3660. 2018-08-15 13:19:04.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3661. 2018-08-15 13:19:04.935 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3662. 2018-08-15 13:19:04.935 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3663. 2018-08-15 13:19:04.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3664. 2018-08-15 13:19:04.936 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3665. 2018-08-15 13:19:04.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3666. 2018-08-15 13:19:04.937 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3667. 2018-08-15 13:19:04.938 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3668. 2018-08-15 13:19:04.938 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3669. 2018-08-15 13:19:04.939 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3670. 2018-08-15 13:19:04.939 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3671. 2018-08-15 13:19:04.939 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3672. 2018-08-15 13:19:04.940 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3673. 2018-08-15 13:19:04.940 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3674. 2018-08-15 13:19:04.940 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3675. 2018-08-15 13:19:04.941 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3676. 2018-08-15 13:19:04.942 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3677. 2018-08-15 13:19:04.942 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3678. 2018-08-15 13:19:04.943 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3679. 2018-08-15 13:19:04.943 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3680. 2018-08-15 13:19:04.944 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3681. 2018-08-15 13:19:04.945 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3682. 2018-08-15 13:19:04.947 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  3683. 2018-08-15 13:19:04.948 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  3684. 2018-08-15 13:19:04.950 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3685. 2018-08-15 13:19:04.950 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3686. 2018-08-15 13:19:04.951 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  3687. 2018-08-15 13:19:04.952 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3688. 2018-08-15 13:19:04.952 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3689. 2018-08-15 13:19:04.953 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3690. 2018-08-15 13:19:04.953 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  3691. 2018-08-15 13:19:04.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3692. 2018-08-15 13:19:04.956 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3693. 2018-08-15 13:19:04.972 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3694. 2018-08-15 13:19:05.025 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3695. 2018-08-15 13:19:05.025 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3696. 2018-08-15 13:19:05.026 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3697. 2018-08-15 13:19:05.030 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3698. 2018-08-15 13:19:05.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3699. 2018-08-15 13:19:05.031 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3700. 2018-08-15 13:19:05.030 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3701. 2018-08-15 13:19:05.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3702. 2018-08-15 13:19:05.032 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3703. 2018-08-15 13:19:05.032 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3704. 2018-08-15 13:19:05.038 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3705. 2018-08-15 13:19:05.038 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3706. 2018-08-15 13:19:05.038 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3707. 2018-08-15 13:19:05.038 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3708. 2018-08-15 13:19:05.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3709. 2018-08-15 13:19:05.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3710. 2018-08-15 13:19:05.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3711. 2018-08-15 13:19:05.039 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3712. 2018-08-15 13:19:05.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3713. 2018-08-15 13:19:05.040 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3714. 2018-08-15 13:19:05.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3715. 2018-08-15 13:19:05.041 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3716. 2018-08-15 13:19:05.041 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3717. 2018-08-15 13:19:05.042 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3718. 2018-08-15 13:19:05.048 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3719. 2018-08-15 13:19:05.049 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3720. 2018-08-15 13:19:05.049 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3721. 2018-08-15 13:19:05.049 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3722. 2018-08-15 13:19:05.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3723. 2018-08-15 13:19:05.050 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3724. 2018-08-15 13:19:05.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3725. 2018-08-15 13:19:05.050 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3726. 2018-08-15 13:19:05.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3727. 2018-08-15 13:19:05.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3728. 2018-08-15 13:19:05.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3729. 2018-08-15 13:19:05.051 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3730. 2018-08-15 13:19:05.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3731. 2018-08-15 13:19:05.052 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3732. 2018-08-15 13:19:05.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3733. 2018-08-15 13:19:05.053 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3734. 2018-08-15 13:19:05.053 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3735. 2018-08-15 13:19:05.054 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3736. 2018-08-15 13:19:05.054 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3737. 2018-08-15 13:19:05.055 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3738. 2018-08-15 13:19:05.055 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3739. 2018-08-15 13:19:05.055 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3740. 2018-08-15 13:19:05.056 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3741. 2018-08-15 13:19:05.056 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3742. 2018-08-15 13:19:05.056 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3743. 2018-08-15 13:19:05.056 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3744. 2018-08-15 13:19:05.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3745. 2018-08-15 13:19:05.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3746. 2018-08-15 13:19:05.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3747. 2018-08-15 13:19:05.057 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  3748. 2018-08-15 13:19:05.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3749. 2018-08-15 13:19:05.058 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  3750. 2018-08-15 13:19:05.058 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3751. 2018-08-15 13:19:05.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3752. 2018-08-15 13:19:05.061 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  3753. 2018-08-15 13:19:05.062 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  3754. 2018-08-15 13:19:05.071 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3755. 2018-08-15 13:19:05.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3756. 2018-08-15 13:19:05.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3757. 2018-08-15 13:19:05.075 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3758. 2018-08-15 13:19:05.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3759. 2018-08-15 13:19:05.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3760. 2018-08-15 13:19:05.082 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3761. 2018-08-15 13:19:05.083 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3762. 2018-08-15 13:19:05.083 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3763. 2018-08-15 13:19:05.084 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3764. 2018-08-15 13:19:05.086 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3765. 2018-08-15 13:19:05.087 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3766. 2018-08-15 13:19:05.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3767. 2018-08-15 13:19:05.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3768. 2018-08-15 13:19:05.129 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  3769. 2018-08-15 13:19:05.164 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3770. 2018-08-15 13:19:05.167 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3771. 2018-08-15 13:19:05.167 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3772. 2018-08-15 13:19:05.169 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3773. 2018-08-15 13:19:05.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3774. 2018-08-15 13:19:05.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3775. 2018-08-15 13:19:05.177 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3776. 2018-08-15 13:19:05.178 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3777. 2018-08-15 13:19:05.179 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3778. 2018-08-15 13:19:05.180 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3779. 2018-08-15 13:19:05.183 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3780. 2018-08-15 13:19:05.183 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3781. 2018-08-15 13:19:05.187 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3782. 2018-08-15 13:19:05.187 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3783. 2018-08-15 13:19:05.188 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3784. 2018-08-15 13:19:05.330 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3785. 2018-08-15 13:19:05.333 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3786. 2018-08-15 13:19:05.334 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3787. 2018-08-15 13:19:05.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3788. 2018-08-15 13:19:05.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3789. 2018-08-15 13:19:05.339 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3790. 2018-08-15 13:19:05.347 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3791. 2018-08-15 13:19:05.348 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3792. 2018-08-15 13:19:05.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3793. 2018-08-15 13:19:05.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3794. 2018-08-15 13:19:05.356 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3795. 2018-08-15 13:19:05.360 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3796. 2018-08-15 13:19:13.075 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3797. 2018-08-15 13:19:13.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3798. 2018-08-15 13:19:13.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3799. 2018-08-15 13:19:13.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3800. 2018-08-15 13:19:13.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3801. 2018-08-15 13:19:13.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3802. 2018-08-15 13:19:13.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3803. 2018-08-15 13:19:13.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3804. 2018-08-15 13:19:13.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3805. 2018-08-15 13:19:13.088 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3806. 2018-08-15 13:19:13.091 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3807. 2018-08-15 13:19:13.092 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3808. 2018-08-15 13:19:13.109 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3809. 2018-08-15 13:19:13.110 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3810. 2018-08-15 13:19:13.112 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3811. 2018-08-15 13:19:13.112 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3812. 2018-08-15 13:19:13.113 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3813. 2018-08-15 13:19:13.113 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3814. 2018-08-15 13:19:13.115 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3815. 2018-08-15 13:19:13.115 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3816. 2018-08-15 13:19:13.116 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3817. 2018-08-15 13:19:13.116 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3818. 2018-08-15 13:19:13.116 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3819. 2018-08-15 13:19:13.116 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3820. 2018-08-15 13:19:13.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3821. 2018-08-15 13:19:13.123 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3822. 2018-08-15 13:19:13.123 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3823. 2018-08-15 13:19:13.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3824. 2018-08-15 13:19:13.124 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3825. 2018-08-15 13:19:13.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3826. 2018-08-15 13:19:13.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3827. 2018-08-15 13:19:13.126 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3828. 2018-08-15 13:19:13.126 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3829. 2018-08-15 13:19:13.127 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3830. 2018-08-15 13:19:13.129 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3831. 2018-08-15 13:19:13.131 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3832. 2018-08-15 13:19:13.147 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-27] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  3833. 2018-08-15 13:19:13.148 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-27] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  3834. 2018-08-15 13:19:13.155 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-27] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  3835. 2018-08-15 13:20:51.660 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3836. 2018-08-15 13:20:51.661 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3837. 2018-08-15 13:20:51.664 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3838. 2018-08-15 13:20:51.665 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3839. 2018-08-15 13:20:51.665 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3840. 2018-08-15 13:20:51.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3841. 2018-08-15 13:20:51.666 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3842. 2018-08-15 13:20:51.668 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3843. 2018-08-15 13:20:51.668 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3844. 2018-08-15 13:20:51.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3845. 2018-08-15 13:20:51.669 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3846. 2018-08-15 13:20:51.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3847. 2018-08-15 13:20:51.670 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3848. 2018-08-15 13:20:51.671 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3849. 2018-08-15 13:20:51.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3850. 2018-08-15 13:20:51.671 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3851. 2018-08-15 13:20:51.671 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3852. 2018-08-15 13:20:51.671 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3853. 2018-08-15 13:20:51.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3854. 2018-08-15 13:20:51.672 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3855. 2018-08-15 13:20:51.672 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3856. 2018-08-15 13:20:51.673 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3857. 2018-08-15 13:20:51.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3858. 2018-08-15 13:20:51.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3859. 2018-08-15 13:20:51.675 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3860. 2018-08-15 13:20:51.677 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3861. 2018-08-15 13:20:51.678 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3862. 2018-08-15 13:20:51.679 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3863. 2018-08-15 13:20:51.680 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3864. 2018-08-15 13:20:51.680 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3865. 2018-08-15 13:20:51.681 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3866. 2018-08-15 13:20:51.682 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3867. 2018-08-15 13:20:51.683 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3868. 2018-08-15 13:20:51.683 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3869. 2018-08-15 13:20:51.683 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3870. 2018-08-15 13:20:51.683 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3871. 2018-08-15 13:20:51.683 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3872. 2018-08-15 13:20:51.684 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3873. 2018-08-15 13:20:51.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3874. 2018-08-15 13:20:51.685 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3875. 2018-08-15 13:20:51.685 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3876. 2018-08-15 13:20:51.686 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3877. 2018-08-15 13:20:51.686 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3878. 2018-08-15 13:20:51.686 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3879. 2018-08-15 13:20:51.686 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3880. 2018-08-15 13:20:51.686 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3881. 2018-08-15 13:20:51.687 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3882. 2018-08-15 13:20:51.688 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3883. 2018-08-15 13:20:51.688 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3884. 2018-08-15 13:20:51.688 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3885. 2018-08-15 13:20:51.688 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3886. 2018-08-15 13:20:51.689 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3887. 2018-08-15 13:20:51.689 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3888. 2018-08-15 13:20:51.689 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3889. 2018-08-15 13:20:51.691 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3890. 2018-08-15 13:20:51.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  3891. 2018-08-15 13:20:51.692 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3892. 2018-08-15 13:20:51.692 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3893. 2018-08-15 13:20:51.692 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  3894. 2018-08-15 13:20:51.693 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3895. 2018-08-15 13:20:51.694 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3896. 2018-08-15 13:20:51.695 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3897. 2018-08-15 13:20:51.695 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  3898. 2018-08-15 13:20:51.700 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  3899. 2018-08-15 13:20:51.701 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  3900. 2018-08-15 13:20:51.701 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  3901. 2018-08-15 13:20:51.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  3902. 2018-08-15 13:20:51.702 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  3903. 2018-08-15 13:20:51.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  3904. 2018-08-15 13:20:51.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  3905. 2018-08-15 13:20:51.705 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  3906. 2018-08-15 13:20:51.706 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  3907. 2018-08-15 13:20:51.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3908. 2018-08-15 13:20:51.707 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3909. 2018-08-15 13:20:51.715 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3910. 2018-08-15 13:20:51.863 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3911. 2018-08-15 13:20:51.864 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3912. 2018-08-15 13:20:51.866 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3913. 2018-08-15 13:20:51.867 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3914. 2018-08-15 13:20:51.867 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3915. 2018-08-15 13:20:51.867 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3916. 2018-08-15 13:20:51.867 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3917. 2018-08-15 13:20:51.868 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3918. 2018-08-15 13:20:51.869 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3919. 2018-08-15 13:20:51.869 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3920. 2018-08-15 13:20:51.870 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3921. 2018-08-15 13:20:51.870 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3922. 2018-08-15 13:20:51.870 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3923. 2018-08-15 13:20:51.871 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3924. 2018-08-15 13:20:51.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3925. 2018-08-15 13:20:51.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3926. 2018-08-15 13:20:51.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3927. 2018-08-15 13:20:51.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3928. 2018-08-15 13:20:51.872 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3929. 2018-08-15 13:20:51.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3930. 2018-08-15 13:20:51.872 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3931. 2018-08-15 13:20:51.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3932. 2018-08-15 13:20:51.878 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3933. 2018-08-15 13:20:51.878 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3934. 2018-08-15 13:20:51.879 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3935. 2018-08-15 13:20:51.880 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3936. 2018-08-15 13:20:51.880 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3937. 2018-08-15 13:20:51.882 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3938. 2018-08-15 13:20:51.883 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3939. 2018-08-15 13:20:51.884 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3940. 2018-08-15 13:20:51.884 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3941. 2018-08-15 13:20:51.885 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3942. 2018-08-15 13:20:51.885 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3943. 2018-08-15 13:20:51.886 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3944. 2018-08-15 13:20:51.888 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3945. 2018-08-15 13:20:51.888 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3946. 2018-08-15 13:20:51.888 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3947. 2018-08-15 13:20:51.890 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3948. 2018-08-15 13:20:51.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3949. 2018-08-15 13:20:51.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3950. 2018-08-15 13:20:51.892 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3951. 2018-08-15 13:20:51.892 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3952. 2018-08-15 13:20:51.892 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3953. 2018-08-15 13:20:51.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3954. 2018-08-15 13:20:51.893 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3955. 2018-08-15 13:20:51.893 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3956. 2018-08-15 13:20:51.894 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  3957. 2018-08-15 13:20:51.895 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  3958. 2018-08-15 13:20:51.895 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  3959. 2018-08-15 13:20:51.895 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  3960. 2018-08-15 13:20:51.896 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  3961. 2018-08-15 13:20:51.896 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3962. 2018-08-15 13:20:51.897 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  3963. 2018-08-15 13:20:51.896 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  3964. 2018-08-15 13:20:51.898 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3965. 2018-08-15 13:20:51.899 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  3966. 2018-08-15 13:20:51.900 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  3967. 2018-08-15 13:20:51.900 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  3968. 2018-08-15 13:20:51.900 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  3969. 2018-08-15 13:20:51.904 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  3970. 2018-08-15 13:20:51.913 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3971. 2018-08-15 13:20:51.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3972. 2018-08-15 13:20:51.915 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3973. 2018-08-15 13:20:51.917 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3974. 2018-08-15 13:20:51.918 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3975. 2018-08-15 13:20:51.918 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3976. 2018-08-15 13:20:51.924 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3977. 2018-08-15 13:20:51.924 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3978. 2018-08-15 13:20:51.925 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3979. 2018-08-15 13:20:51.926 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3980. 2018-08-15 13:20:51.930 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3981. 2018-08-15 13:20:51.931 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3982. 2018-08-15 13:20:51.938 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  3983. 2018-08-15 13:20:51.939 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  3984. 2018-08-15 13:20:51.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  3985. 2018-08-15 13:20:52.009 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3986. 2018-08-15 13:20:52.011 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3987. 2018-08-15 13:20:52.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  3988. 2018-08-15 13:20:52.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3989. 2018-08-15 13:20:52.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  3990. 2018-08-15 13:20:52.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  3991. 2018-08-15 13:20:52.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  3992. 2018-08-15 13:20:52.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  3993. 2018-08-15 13:20:52.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  3994. 2018-08-15 13:20:52.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  3995. 2018-08-15 13:20:52.026 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  3996. 2018-08-15 13:20:52.027 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  3997. 2018-08-15 13:20:52.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  3998. 2018-08-15 13:20:52.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  3999. 2018-08-15 13:20:52.033 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4000. 2018-08-15 13:20:52.172 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4001. 2018-08-15 13:20:52.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4002. 2018-08-15 13:20:52.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4003. 2018-08-15 13:20:52.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4004. 2018-08-15 13:20:52.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4005. 2018-08-15 13:20:52.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4006. 2018-08-15 13:20:52.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4007. 2018-08-15 13:20:52.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4008. 2018-08-15 13:20:52.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4009. 2018-08-15 13:20:52.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4010. 2018-08-15 13:20:52.189 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4011. 2018-08-15 13:20:52.189 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4012. 2018-08-15 13:24:06.040 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4013. 2018-08-15 13:24:06.042 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4014. 2018-08-15 13:24:06.043 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4015. 2018-08-15 13:24:06.045 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4016. 2018-08-15 13:24:06.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4017. 2018-08-15 13:24:06.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4018. 2018-08-15 13:24:06.046 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4019. 2018-08-15 13:24:06.046 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4020. 2018-08-15 13:24:06.047 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4021. 2018-08-15 13:24:06.048 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4022. 2018-08-15 13:24:06.048 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4023. 2018-08-15 13:24:06.048 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4024. 2018-08-15 13:24:06.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4025. 2018-08-15 13:24:06.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4026. 2018-08-15 13:24:06.049 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4027. 2018-08-15 13:24:06.049 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4028. 2018-08-15 13:24:06.050 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4029. 2018-08-15 13:24:06.051 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4030. 2018-08-15 13:24:06.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4031. 2018-08-15 13:24:06.051 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4032. 2018-08-15 13:24:06.052 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4033. 2018-08-15 13:24:06.052 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4034. 2018-08-15 13:24:06.053 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4035. 2018-08-15 13:24:06.053 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4036. 2018-08-15 13:24:06.053 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4037. 2018-08-15 13:24:06.054 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4038. 2018-08-15 13:24:06.056 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4039. 2018-08-15 13:24:06.056 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4040. 2018-08-15 13:24:06.057 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4041. 2018-08-15 13:24:06.057 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4042. 2018-08-15 13:24:06.058 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4043. 2018-08-15 13:24:06.059 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4044. 2018-08-15 13:24:06.060 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4045. 2018-08-15 13:24:06.063 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4046. 2018-08-15 13:24:06.063 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4047. 2018-08-15 13:24:06.064 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4048. 2018-08-15 13:24:06.064 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4049. 2018-08-15 13:24:06.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4050. 2018-08-15 13:24:06.066 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4051. 2018-08-15 13:24:06.067 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4052. 2018-08-15 13:24:06.067 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4053. 2018-08-15 13:24:06.067 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4054. 2018-08-15 13:24:06.067 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4055. 2018-08-15 13:24:06.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4056. 2018-08-15 13:24:06.068 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4057. 2018-08-15 13:24:06.069 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4058. 2018-08-15 13:24:06.069 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4059. 2018-08-15 13:24:06.069 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4060. 2018-08-15 13:24:06.069 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4061. 2018-08-15 13:24:06.070 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4062. 2018-08-15 13:24:06.070 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4063. 2018-08-15 13:24:06.071 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4064. 2018-08-15 13:24:06.071 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4065. 2018-08-15 13:24:06.072 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4066. 2018-08-15 13:24:06.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4067. 2018-08-15 13:24:06.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4068. 2018-08-15 13:24:06.076 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4069. 2018-08-15 13:24:06.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4070. 2018-08-15 13:24:06.077 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4071. 2018-08-15 13:24:06.080 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4072. 2018-08-15 13:24:06.080 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4073. 2018-08-15 13:24:06.081 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4074. 2018-08-15 13:24:06.082 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4075. 2018-08-15 13:24:06.083 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4076. 2018-08-15 13:24:06.085 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4077. 2018-08-15 13:24:06.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  4078. 2018-08-15 13:24:06.091 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  4079. 2018-08-15 13:24:06.092 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  4080. 2018-08-15 13:24:06.093 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4081. 2018-08-15 13:24:06.093 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4082. 2018-08-15 13:24:06.094 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  4083. 2018-08-15 13:24:06.095 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4084. 2018-08-15 13:24:06.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4085. 2018-08-15 13:24:06.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4086. 2018-08-15 13:24:06.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4087. 2018-08-15 13:24:06.194 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4088. 2018-08-15 13:24:06.195 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4089. 2018-08-15 13:24:06.197 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4090. 2018-08-15 13:24:06.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4091. 2018-08-15 13:24:06.198 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4092. 2018-08-15 13:24:06.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4093. 2018-08-15 13:24:06.199 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4094. 2018-08-15 13:24:06.199 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4095. 2018-08-15 13:24:06.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4096. 2018-08-15 13:24:06.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4097. 2018-08-15 13:24:06.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4098. 2018-08-15 13:24:06.203 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4099. 2018-08-15 13:24:06.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4100. 2018-08-15 13:24:06.203 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4101. 2018-08-15 13:24:06.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4102. 2018-08-15 13:24:06.203 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4103. 2018-08-15 13:24:06.204 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4104. 2018-08-15 13:24:06.204 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4105. 2018-08-15 13:24:06.204 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4106. 2018-08-15 13:24:06.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4107. 2018-08-15 13:24:06.205 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4108. 2018-08-15 13:24:06.206 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4109. 2018-08-15 13:24:06.206 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4110. 2018-08-15 13:24:06.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4111. 2018-08-15 13:24:06.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4112. 2018-08-15 13:24:06.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4113. 2018-08-15 13:24:06.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4114. 2018-08-15 13:24:06.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4115. 2018-08-15 13:24:06.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4116. 2018-08-15 13:24:06.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4117. 2018-08-15 13:24:06.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4118. 2018-08-15 13:24:06.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4119. 2018-08-15 13:24:06.213 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4120. 2018-08-15 13:24:06.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4121. 2018-08-15 13:24:06.214 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4122. 2018-08-15 13:24:06.214 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4123. 2018-08-15 13:24:06.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4124. 2018-08-15 13:24:06.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4125. 2018-08-15 13:24:06.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4126. 2018-08-15 13:24:06.216 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4127. 2018-08-15 13:24:06.217 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4128. 2018-08-15 13:24:06.217 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4129. 2018-08-15 13:24:06.217 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4130. 2018-08-15 13:24:06.218 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4131. 2018-08-15 13:24:06.218 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4132. 2018-08-15 13:24:06.219 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4133. 2018-08-15 13:24:06.219 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4134. 2018-08-15 13:24:06.221 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4135. 2018-08-15 13:24:06.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4136. 2018-08-15 13:24:06.221 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  4137. 2018-08-15 13:24:06.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  4138. 2018-08-15 13:24:06.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4139. 2018-08-15 13:24:06.222 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  4140. 2018-08-15 13:24:06.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  4141. 2018-08-15 13:24:06.222 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4142. 2018-08-15 13:24:06.224 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4143. 2018-08-15 13:24:06.224 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4144. 2018-08-15 13:24:06.225 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  4145. 2018-08-15 13:24:06.226 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  4146. 2018-08-15 13:24:06.228 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  4147. 2018-08-15 13:24:06.248 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4148. 2018-08-15 13:24:06.250 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4149. 2018-08-15 13:24:06.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4150. 2018-08-15 13:24:06.252 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4151. 2018-08-15 13:24:06.253 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4152. 2018-08-15 13:24:06.253 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4153. 2018-08-15 13:24:06.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4154. 2018-08-15 13:24:06.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4155. 2018-08-15 13:24:06.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4156. 2018-08-15 13:24:06.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4157. 2018-08-15 13:24:06.266 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4158. 2018-08-15 13:24:06.266 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4159. 2018-08-15 13:24:06.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4160. 2018-08-15 13:24:06.272 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4161. 2018-08-15 13:24:06.299 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  4162. 2018-08-15 13:24:06.331 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4163. 2018-08-15 13:24:06.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4164. 2018-08-15 13:24:06.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4165. 2018-08-15 13:24:06.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4166. 2018-08-15 13:24:06.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4167. 2018-08-15 13:24:06.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4168. 2018-08-15 13:24:06.342 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4169. 2018-08-15 13:24:06.343 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4170. 2018-08-15 13:24:06.343 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4171. 2018-08-15 13:24:06.344 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4172. 2018-08-15 13:24:06.347 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4173. 2018-08-15 13:24:06.347 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4174. 2018-08-15 13:24:06.351 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4175. 2018-08-15 13:24:06.352 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4176. 2018-08-15 13:24:06.355 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4177. 2018-08-15 13:24:06.495 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4178. 2018-08-15 13:24:06.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4179. 2018-08-15 13:24:06.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4180. 2018-08-15 13:24:06.500 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4181. 2018-08-15 13:24:06.501 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4182. 2018-08-15 13:24:06.501 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4183. 2018-08-15 13:24:06.508 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4184. 2018-08-15 13:24:06.509 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4185. 2018-08-15 13:24:06.510 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4186. 2018-08-15 13:24:06.511 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4187. 2018-08-15 13:24:06.515 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4188. 2018-08-15 13:24:06.516 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4189. 2018-08-15 13:24:07.830 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4190. 2018-08-15 13:24:07.832 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4191. 2018-08-15 13:24:07.832 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4192. 2018-08-15 13:24:07.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4193. 2018-08-15 13:24:07.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4194. 2018-08-15 13:24:07.836 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4195. 2018-08-15 13:24:07.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4196. 2018-08-15 13:24:07.843 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4197. 2018-08-15 13:24:07.843 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4198. 2018-08-15 13:24:07.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4199. 2018-08-15 13:24:07.847 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4200. 2018-08-15 13:24:07.848 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4201. 2018-08-15 13:24:07.855 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4202. 2018-08-15 13:24:07.857 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4203. 2018-08-15 13:24:07.858 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4204. 2018-08-15 13:24:07.858 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4205. 2018-08-15 13:24:07.859 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4206. 2018-08-15 13:24:07.859 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4207. 2018-08-15 13:24:07.860 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4208. 2018-08-15 13:24:07.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4209. 2018-08-15 13:24:07.861 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4210. 2018-08-15 13:24:07.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4211. 2018-08-15 13:24:07.862 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4212. 2018-08-15 13:24:07.862 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4213. 2018-08-15 13:24:07.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4214. 2018-08-15 13:24:07.872 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4215. 2018-08-15 13:24:07.872 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4216. 2018-08-15 13:24:07.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4217. 2018-08-15 13:24:07.873 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4218. 2018-08-15 13:24:07.874 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4219. 2018-08-15 13:24:07.874 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4220. 2018-08-15 13:24:07.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4221. 2018-08-15 13:24:07.877 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4222. 2018-08-15 13:24:07.878 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4223. 2018-08-15 13:24:07.878 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4224. 2018-08-15 13:24:07.878 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4225. 2018-08-15 13:24:07.892 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-43] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  4226. 2018-08-15 13:24:07.893 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-43] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  4227. 2018-08-15 13:24:07.903 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-43] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  4228. 2018-08-15 13:24:19.181 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4229. 2018-08-15 13:24:19.182 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4230. 2018-08-15 13:24:19.183 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4231. 2018-08-15 13:24:19.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4232. 2018-08-15 13:24:19.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4233. 2018-08-15 13:24:19.185 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4234. 2018-08-15 13:24:19.185 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4235. 2018-08-15 13:24:19.186 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4236. 2018-08-15 13:24:19.187 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4237. 2018-08-15 13:24:19.187 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4238. 2018-08-15 13:24:19.188 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4239. 2018-08-15 13:24:19.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4240. 2018-08-15 13:24:19.189 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4241. 2018-08-15 13:24:19.189 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4242. 2018-08-15 13:24:19.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4243. 2018-08-15 13:24:19.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4244. 2018-08-15 13:24:19.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4245. 2018-08-15 13:24:19.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4246. 2018-08-15 13:24:19.191 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4247. 2018-08-15 13:24:19.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4248. 2018-08-15 13:24:19.192 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4249. 2018-08-15 13:24:19.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4250. 2018-08-15 13:24:19.193 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4251. 2018-08-15 13:24:19.194 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4252. 2018-08-15 13:24:19.194 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4253. 2018-08-15 13:24:19.195 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4254. 2018-08-15 13:24:19.195 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4255. 2018-08-15 13:24:19.197 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4256. 2018-08-15 13:24:19.198 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4257. 2018-08-15 13:24:19.198 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4258. 2018-08-15 13:24:19.198 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4259. 2018-08-15 13:24:19.199 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4260. 2018-08-15 13:24:19.199 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4261. 2018-08-15 13:24:19.199 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4262. 2018-08-15 13:24:19.199 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4263. 2018-08-15 13:24:19.199 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4264. 2018-08-15 13:24:19.201 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4265. 2018-08-15 13:24:19.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4266. 2018-08-15 13:24:19.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4267. 2018-08-15 13:24:19.202 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4268. 2018-08-15 13:24:19.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4269. 2018-08-15 13:24:19.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4270. 2018-08-15 13:24:19.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4271. 2018-08-15 13:24:19.203 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4272. 2018-08-15 13:24:19.204 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4273. 2018-08-15 13:24:19.205 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4274. 2018-08-15 13:24:19.205 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4275. 2018-08-15 13:24:19.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4276. 2018-08-15 13:24:19.206 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4277. 2018-08-15 13:24:19.206 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4278. 2018-08-15 13:24:19.207 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4279. 2018-08-15 13:24:19.207 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4280. 2018-08-15 13:24:19.208 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4281. 2018-08-15 13:24:19.208 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4282. 2018-08-15 13:24:19.208 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4283. 2018-08-15 13:24:19.209 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4284. 2018-08-15 13:24:19.209 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4285. 2018-08-15 13:24:19.209 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4286. 2018-08-15 13:24:19.209 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4287. 2018-08-15 13:24:19.209 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4288. 2018-08-15 13:24:19.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4289. 2018-08-15 13:24:19.213 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4290. 2018-08-15 13:24:19.214 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4291. 2018-08-15 13:24:19.215 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4292. 2018-08-15 13:24:19.216 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4293. 2018-08-15 13:24:19.216 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4294. 2018-08-15 13:24:19.216 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4295. 2018-08-15 13:24:19.218 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4296. 2018-08-15 13:24:19.219 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  4297. 2018-08-15 13:24:19.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  4298. 2018-08-15 13:24:19.221 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  4299. 2018-08-15 13:24:19.224 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  4300. 2018-08-15 13:24:19.224 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4301. 2018-08-15 13:24:19.225 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4302. 2018-08-15 13:24:19.231 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4303. 2018-08-15 13:24:19.267 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4304. 2018-08-15 13:24:19.268 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4305. 2018-08-15 13:24:19.268 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4306. 2018-08-15 13:24:19.269 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4307. 2018-08-15 13:24:19.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4308. 2018-08-15 13:24:19.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4309. 2018-08-15 13:24:19.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4310. 2018-08-15 13:24:19.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4311. 2018-08-15 13:24:19.272 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4312. 2018-08-15 13:24:19.272 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4313. 2018-08-15 13:24:19.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4314. 2018-08-15 13:24:19.273 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4315. 2018-08-15 13:24:19.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4316. 2018-08-15 13:24:19.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4317. 2018-08-15 13:24:19.273 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4318. 2018-08-15 13:24:19.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4319. 2018-08-15 13:24:19.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4320. 2018-08-15 13:24:19.274 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4321. 2018-08-15 13:24:19.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4322. 2018-08-15 13:24:19.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4323. 2018-08-15 13:24:19.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4324. 2018-08-15 13:24:19.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4325. 2018-08-15 13:24:19.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4326. 2018-08-15 13:24:19.276 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4327. 2018-08-15 13:24:19.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4328. 2018-08-15 13:24:19.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4329. 2018-08-15 13:24:19.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4330. 2018-08-15 13:24:19.282 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4331. 2018-08-15 13:24:19.283 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4332. 2018-08-15 13:24:19.283 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4333. 2018-08-15 13:24:19.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4334. 2018-08-15 13:24:19.284 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4335. 2018-08-15 13:24:19.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4336. 2018-08-15 13:24:19.285 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4337. 2018-08-15 13:24:19.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4338. 2018-08-15 13:24:19.285 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4339. 2018-08-15 13:24:19.287 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4340. 2018-08-15 13:24:19.287 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4341. 2018-08-15 13:24:19.287 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4342. 2018-08-15 13:24:19.287 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4343. 2018-08-15 13:24:19.289 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4344. 2018-08-15 13:24:19.289 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4345. 2018-08-15 13:24:19.290 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4346. 2018-08-15 13:24:19.290 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4347. 2018-08-15 13:24:19.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4348. 2018-08-15 13:24:19.291 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4349. 2018-08-15 13:24:19.291 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4350. 2018-08-15 13:24:19.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4351. 2018-08-15 13:24:19.291 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  4352. 2018-08-15 13:24:19.292 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  4353. 2018-08-15 13:24:19.292 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  4354. 2018-08-15 13:24:19.293 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  4355. 2018-08-15 13:24:19.293 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4356. 2018-08-15 13:24:19.293 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4357. 2018-08-15 13:24:19.294 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4358. 2018-08-15 13:24:19.294 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  4359. 2018-08-15 13:24:19.295 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  4360. 2018-08-15 13:24:19.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4361. 2018-08-15 13:24:19.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4362. 2018-08-15 13:24:19.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  4363. 2018-08-15 13:24:19.309 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4364. 2018-08-15 13:24:19.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4365. 2018-08-15 13:24:19.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4366. 2018-08-15 13:24:19.313 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4367. 2018-08-15 13:24:19.314 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4368. 2018-08-15 13:24:19.314 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4369. 2018-08-15 13:24:19.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4370. 2018-08-15 13:24:19.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4371. 2018-08-15 13:24:19.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4372. 2018-08-15 13:24:19.325 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4373. 2018-08-15 13:24:19.327 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4374. 2018-08-15 13:24:19.328 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4375. 2018-08-15 13:24:19.334 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4376. 2018-08-15 13:24:19.335 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4377. 2018-08-15 13:24:19.369 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  4378. 2018-08-15 13:24:19.418 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4379. 2018-08-15 13:24:19.421 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4380. 2018-08-15 13:24:19.421 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4381. 2018-08-15 13:24:19.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4382. 2018-08-15 13:24:19.425 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4383. 2018-08-15 13:24:19.425 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4384. 2018-08-15 13:24:19.432 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4385. 2018-08-15 13:24:19.433 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4386. 2018-08-15 13:24:19.433 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4387. 2018-08-15 13:24:19.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4388. 2018-08-15 13:24:19.438 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4389. 2018-08-15 13:24:19.439 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4390. 2018-08-15 13:24:19.443 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4391. 2018-08-15 13:24:19.444 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4392. 2018-08-15 13:24:19.446 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4393. 2018-08-15 13:24:19.583 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4394. 2018-08-15 13:24:19.585 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4395. 2018-08-15 13:24:19.585 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4396. 2018-08-15 13:24:19.588 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4397. 2018-08-15 13:24:19.588 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4398. 2018-08-15 13:24:19.589 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4399. 2018-08-15 13:24:19.596 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4400. 2018-08-15 13:24:19.596 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4401. 2018-08-15 13:24:19.597 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4402. 2018-08-15 13:24:19.598 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4403. 2018-08-15 13:24:19.601 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4404. 2018-08-15 13:24:19.602 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4405. 2018-08-15 13:24:29.044 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4406. 2018-08-15 13:24:29.047 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4407. 2018-08-15 13:24:29.048 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4408. 2018-08-15 13:24:29.049 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4409. 2018-08-15 13:24:29.050 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4410. 2018-08-15 13:24:29.052 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4411. 2018-08-15 13:24:29.053 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4412. 2018-08-15 13:24:29.054 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4413. 2018-08-15 13:24:29.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4414. 2018-08-15 13:24:29.055 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4415. 2018-08-15 13:24:29.056 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4416. 2018-08-15 13:24:29.057 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4417. 2018-08-15 13:24:29.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4418. 2018-08-15 13:24:29.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4419. 2018-08-15 13:24:29.059 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4420. 2018-08-15 13:24:29.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4421. 2018-08-15 13:24:29.060 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4422. 2018-08-15 13:24:29.062 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4423. 2018-08-15 13:24:29.063 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4424. 2018-08-15 13:24:29.064 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4425. 2018-08-15 13:24:29.064 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4426. 2018-08-15 13:24:29.065 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4427. 2018-08-15 13:24:29.065 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4428. 2018-08-15 13:24:29.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4429. 2018-08-15 13:24:29.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4430. 2018-08-15 13:24:29.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4431. 2018-08-15 13:24:29.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4432. 2018-08-15 13:24:29.069 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4433. 2018-08-15 13:24:29.070 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4434. 2018-08-15 13:24:29.070 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4435. 2018-08-15 13:24:29.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4436. 2018-08-15 13:24:29.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4437. 2018-08-15 13:24:29.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4438. 2018-08-15 13:24:29.077 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4439. 2018-08-15 13:24:29.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4440. 2018-08-15 13:24:29.081 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4441. 2018-08-15 13:24:29.082 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4442. 2018-08-15 13:24:29.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4443. 2018-08-15 13:24:29.083 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4444. 2018-08-15 13:24:29.083 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4445. 2018-08-15 13:24:29.083 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4446. 2018-08-15 13:24:29.083 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4447. 2018-08-15 13:24:29.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4448. 2018-08-15 13:24:29.084 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4449. 2018-08-15 13:24:29.084 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4450. 2018-08-15 13:24:29.085 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4451. 2018-08-15 13:24:29.085 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4452. 2018-08-15 13:24:29.085 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4453. 2018-08-15 13:24:29.087 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4454. 2018-08-15 13:24:29.087 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4455. 2018-08-15 13:24:29.087 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4456. 2018-08-15 13:24:29.087 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4457. 2018-08-15 13:24:29.088 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4458. 2018-08-15 13:24:29.088 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4459. 2018-08-15 13:24:29.088 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4460. 2018-08-15 13:24:29.090 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4461. 2018-08-15 13:24:29.090 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4462. 2018-08-15 13:24:29.090 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4463. 2018-08-15 13:24:29.090 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4464. 2018-08-15 13:24:29.090 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4465. 2018-08-15 13:24:29.092 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4466. 2018-08-15 13:24:29.094 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4467. 2018-08-15 13:24:29.094 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4468. 2018-08-15 13:24:29.097 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4469. 2018-08-15 13:24:29.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4470. 2018-08-15 13:24:29.099 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4471. 2018-08-15 13:24:29.100 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4472. 2018-08-15 13:24:29.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  4473. 2018-08-15 13:24:29.102 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  4474. 2018-08-15 13:24:29.102 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4475. 2018-08-15 13:24:29.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  4476. 2018-08-15 13:24:29.106 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  4477. 2018-08-15 13:24:29.107 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4478. 2018-08-15 13:24:29.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4479. 2018-08-15 13:24:29.114 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4480. 2018-08-15 13:24:29.220 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4481. 2018-08-15 13:24:29.221 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4482. 2018-08-15 13:24:29.223 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4483. 2018-08-15 13:24:29.223 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4484. 2018-08-15 13:24:29.224 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4485. 2018-08-15 13:24:29.225 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4486. 2018-08-15 13:24:29.225 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4487. 2018-08-15 13:24:29.225 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4488. 2018-08-15 13:24:29.225 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4489. 2018-08-15 13:24:29.226 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4490. 2018-08-15 13:24:29.227 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4491. 2018-08-15 13:24:29.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4492. 2018-08-15 13:24:29.228 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4493. 2018-08-15 13:24:29.228 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4494. 2018-08-15 13:24:29.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4495. 2018-08-15 13:24:29.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4496. 2018-08-15 13:24:29.229 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4497. 2018-08-15 13:24:29.229 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4498. 2018-08-15 13:24:29.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4499. 2018-08-15 13:24:29.230 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4500. 2018-08-15 13:24:29.231 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4501. 2018-08-15 13:24:29.231 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4502. 2018-08-15 13:24:29.231 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4503. 2018-08-15 13:24:29.232 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4504. 2018-08-15 13:24:29.237 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4505. 2018-08-15 13:24:29.238 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4506. 2018-08-15 13:24:29.239 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4507. 2018-08-15 13:24:29.239 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4508. 2018-08-15 13:24:29.239 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4509. 2018-08-15 13:24:29.239 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4510. 2018-08-15 13:24:29.240 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4511. 2018-08-15 13:24:29.240 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4512. 2018-08-15 13:24:29.240 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4513. 2018-08-15 13:24:29.241 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4514. 2018-08-15 13:24:29.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4515. 2018-08-15 13:24:29.241 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4516. 2018-08-15 13:24:29.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4517. 2018-08-15 13:24:29.242 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4518. 2018-08-15 13:24:29.242 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4519. 2018-08-15 13:24:29.243 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4520. 2018-08-15 13:24:29.244 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4521. 2018-08-15 13:24:29.244 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4522. 2018-08-15 13:24:29.244 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4523. 2018-08-15 13:24:29.244 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4524. 2018-08-15 13:24:29.244 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4525. 2018-08-15 13:24:29.245 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4526. 2018-08-15 13:24:29.245 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4527. 2018-08-15 13:24:29.246 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4528. 2018-08-15 13:24:29.246 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  4529. 2018-08-15 13:24:29.246 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4530. 2018-08-15 13:24:29.246 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  4531. 2018-08-15 13:24:29.246 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  4532. 2018-08-15 13:24:29.247 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4533. 2018-08-15 13:24:29.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4534. 2018-08-15 13:24:29.247 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  4535. 2018-08-15 13:24:29.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4536. 2018-08-15 13:24:29.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  4537. 2018-08-15 13:24:29.249 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4538. 2018-08-15 13:24:29.250 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  4539. 2018-08-15 13:24:29.252 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  4540. 2018-08-15 13:24:29.263 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4541. 2018-08-15 13:24:29.265 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4542. 2018-08-15 13:24:29.265 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4543. 2018-08-15 13:24:29.267 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4544. 2018-08-15 13:24:29.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4545. 2018-08-15 13:24:29.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4546. 2018-08-15 13:24:29.274 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4547. 2018-08-15 13:24:29.275 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4548. 2018-08-15 13:24:29.275 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4549. 2018-08-15 13:24:29.277 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4550. 2018-08-15 13:24:29.279 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4551. 2018-08-15 13:24:29.280 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4552. 2018-08-15 13:24:29.284 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4553. 2018-08-15 13:24:29.284 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4554. 2018-08-15 13:24:29.315 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  4555. 2018-08-15 13:24:29.350 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4556. 2018-08-15 13:24:29.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4557. 2018-08-15 13:24:29.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4558. 2018-08-15 13:24:29.356 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4559. 2018-08-15 13:24:29.357 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4560. 2018-08-15 13:24:29.357 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4561. 2018-08-15 13:24:29.363 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4562. 2018-08-15 13:24:29.364 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4563. 2018-08-15 13:24:29.364 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4564. 2018-08-15 13:24:29.366 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4565. 2018-08-15 13:24:29.369 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4566. 2018-08-15 13:24:29.370 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4567. 2018-08-15 13:24:29.375 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4568. 2018-08-15 13:24:29.375 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4569. 2018-08-15 13:24:29.377 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4570. 2018-08-15 13:24:29.519 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4571. 2018-08-15 13:24:29.522 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4572. 2018-08-15 13:24:29.523 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4573. 2018-08-15 13:24:29.525 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4574. 2018-08-15 13:24:29.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4575. 2018-08-15 13:24:29.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4576. 2018-08-15 13:24:29.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4577. 2018-08-15 13:24:29.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4578. 2018-08-15 13:24:29.533 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4579. 2018-08-15 13:24:29.534 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4580. 2018-08-15 13:24:29.538 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4581. 2018-08-15 13:24:29.538 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4582. 2018-08-15 13:24:44.168 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4583. 2018-08-15 13:24:44.169 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4584. 2018-08-15 13:24:44.171 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4585. 2018-08-15 13:24:44.172 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4586. 2018-08-15 13:24:44.171 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4587. 2018-08-15 13:24:44.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4588. 2018-08-15 13:24:44.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4589. 2018-08-15 13:24:44.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4590. 2018-08-15 13:24:44.175 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4591. 2018-08-15 13:24:44.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4592. 2018-08-15 13:24:44.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4593. 2018-08-15 13:24:44.176 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4594. 2018-08-15 13:24:44.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4595. 2018-08-15 13:24:44.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4596. 2018-08-15 13:24:44.177 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4597. 2018-08-15 13:24:44.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4598. 2018-08-15 13:24:44.178 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4599. 2018-08-15 13:24:44.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4600. 2018-08-15 13:24:44.179 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4601. 2018-08-15 13:24:44.179 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4602. 2018-08-15 13:24:44.180 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4603. 2018-08-15 13:24:44.180 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4604. 2018-08-15 13:24:44.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4605. 2018-08-15 13:24:44.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4606. 2018-08-15 13:24:44.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4607. 2018-08-15 13:24:44.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4608. 2018-08-15 13:24:44.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4609. 2018-08-15 13:24:44.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4610. 2018-08-15 13:24:44.185 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4611. 2018-08-15 13:24:44.185 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4612. 2018-08-15 13:24:44.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4613. 2018-08-15 13:24:44.185 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4614. 2018-08-15 13:24:44.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4615. 2018-08-15 13:24:44.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4616. 2018-08-15 13:24:44.187 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4617. 2018-08-15 13:24:44.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4618. 2018-08-15 13:24:44.187 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4619. 2018-08-15 13:24:44.188 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4620. 2018-08-15 13:24:44.189 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4621. 2018-08-15 13:24:44.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4622. 2018-08-15 13:24:44.191 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4623. 2018-08-15 13:24:44.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4624. 2018-08-15 13:24:44.192 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4625. 2018-08-15 13:24:44.193 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4626. 2018-08-15 13:24:44.193 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4627. 2018-08-15 13:24:44.193 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4628. 2018-08-15 13:24:44.194 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4629. 2018-08-15 13:24:44.194 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4630. 2018-08-15 13:24:44.194 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4631. 2018-08-15 13:24:44.195 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4632. 2018-08-15 13:24:44.195 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4633. 2018-08-15 13:24:44.195 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4634. 2018-08-15 13:24:44.195 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4635. 2018-08-15 13:24:44.195 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4636. 2018-08-15 13:24:44.195 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4637. 2018-08-15 13:24:44.196 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4638. 2018-08-15 13:24:44.197 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4639. 2018-08-15 13:24:44.197 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4640. 2018-08-15 13:24:44.198 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4641. 2018-08-15 13:24:44.198 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4642. 2018-08-15 13:24:44.199 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4643. 2018-08-15 13:24:44.200 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4644. 2018-08-15 13:24:44.201 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4645. 2018-08-15 13:24:44.203 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4646. 2018-08-15 13:24:44.203 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4647. 2018-08-15 13:24:44.204 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4648. 2018-08-15 13:24:44.204 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4649. 2018-08-15 13:24:44.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4650. 2018-08-15 13:24:44.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  4651. 2018-08-15 13:24:44.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  4652. 2018-08-15 13:24:44.208 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  4653. 2018-08-15 13:24:44.210 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  4654. 2018-08-15 13:24:44.210 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4655. 2018-08-15 13:24:44.211 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4656. 2018-08-15 13:24:44.217 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4657. 2018-08-15 13:24:44.253 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4658. 2018-08-15 13:24:44.253 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4659. 2018-08-15 13:24:44.254 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4660. 2018-08-15 13:24:44.256 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4661. 2018-08-15 13:24:44.256 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4662. 2018-08-15 13:24:44.256 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4663. 2018-08-15 13:24:44.257 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4664. 2018-08-15 13:24:44.257 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4665. 2018-08-15 13:24:44.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4666. 2018-08-15 13:24:44.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4667. 2018-08-15 13:24:44.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4668. 2018-08-15 13:24:44.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4669. 2018-08-15 13:24:44.259 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4670. 2018-08-15 13:24:44.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4671. 2018-08-15 13:24:44.260 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4672. 2018-08-15 13:24:44.260 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4673. 2018-08-15 13:24:44.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4674. 2018-08-15 13:24:44.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4675. 2018-08-15 13:24:44.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4676. 2018-08-15 13:24:44.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4677. 2018-08-15 13:24:44.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4678. 2018-08-15 13:24:44.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4679. 2018-08-15 13:24:44.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4680. 2018-08-15 13:24:44.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4681. 2018-08-15 13:24:44.266 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4682. 2018-08-15 13:24:44.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4683. 2018-08-15 13:24:44.267 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4684. 2018-08-15 13:24:44.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4685. 2018-08-15 13:24:44.268 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4686. 2018-08-15 13:24:44.268 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4687. 2018-08-15 13:24:44.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4688. 2018-08-15 13:24:44.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4689. 2018-08-15 13:24:44.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4690. 2018-08-15 13:24:44.269 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4691. 2018-08-15 13:24:44.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4692. 2018-08-15 13:24:44.269 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4693. 2018-08-15 13:24:44.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4694. 2018-08-15 13:24:44.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4695. 2018-08-15 13:24:44.270 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4696. 2018-08-15 13:24:44.271 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4697. 2018-08-15 13:24:44.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4698. 2018-08-15 13:24:44.272 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4699. 2018-08-15 13:24:44.273 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4700. 2018-08-15 13:24:44.273 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4701. 2018-08-15 13:24:44.274 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4702. 2018-08-15 13:24:44.274 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4703. 2018-08-15 13:24:44.274 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4704. 2018-08-15 13:24:44.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  4705. 2018-08-15 13:24:44.275 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4706. 2018-08-15 13:24:44.275 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4707. 2018-08-15 13:24:44.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  4708. 2018-08-15 13:24:44.276 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  4709. 2018-08-15 13:24:44.276 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4710. 2018-08-15 13:24:44.276 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  4711. 2018-08-15 13:24:44.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4712. 2018-08-15 13:24:44.277 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4713. 2018-08-15 13:24:44.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4714. 2018-08-15 13:24:44.278 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  4715. 2018-08-15 13:24:44.278 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  4716. 2018-08-15 13:24:44.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  4717. 2018-08-15 13:24:44.288 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4718. 2018-08-15 13:24:44.290 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4719. 2018-08-15 13:24:44.291 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4720. 2018-08-15 13:24:44.292 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4721. 2018-08-15 13:24:44.293 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4722. 2018-08-15 13:24:44.293 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4723. 2018-08-15 13:24:44.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4724. 2018-08-15 13:24:44.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4725. 2018-08-15 13:24:44.300 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4726. 2018-08-15 13:24:44.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4727. 2018-08-15 13:24:44.304 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4728. 2018-08-15 13:24:44.306 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4729. 2018-08-15 13:24:44.311 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4730. 2018-08-15 13:24:44.311 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4731. 2018-08-15 13:24:44.340 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  4732. 2018-08-15 13:24:44.391 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4733. 2018-08-15 13:24:44.393 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4734. 2018-08-15 13:24:44.394 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4735. 2018-08-15 13:24:44.396 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4736. 2018-08-15 13:24:44.397 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4737. 2018-08-15 13:24:44.397 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4738. 2018-08-15 13:24:44.403 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4739. 2018-08-15 13:24:44.403 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4740. 2018-08-15 13:24:44.404 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4741. 2018-08-15 13:24:44.405 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4742. 2018-08-15 13:24:44.407 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4743. 2018-08-15 13:24:44.409 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4744. 2018-08-15 13:24:44.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4745. 2018-08-15 13:24:44.413 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4746. 2018-08-15 13:24:44.414 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4747. 2018-08-15 13:24:44.551 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4748. 2018-08-15 13:24:44.553 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4749. 2018-08-15 13:24:44.553 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4750. 2018-08-15 13:24:44.555 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4751. 2018-08-15 13:24:44.556 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4752. 2018-08-15 13:24:44.557 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4753. 2018-08-15 13:24:44.563 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4754. 2018-08-15 13:24:44.563 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4755. 2018-08-15 13:24:44.563 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4756. 2018-08-15 13:24:44.565 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4757. 2018-08-15 13:24:44.567 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4758. 2018-08-15 13:24:44.567 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4759. 2018-08-15 13:24:49.478 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4760. 2018-08-15 13:24:49.480 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4761. 2018-08-15 13:24:49.481 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4762. 2018-08-15 13:24:49.483 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4763. 2018-08-15 13:24:49.484 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4764. 2018-08-15 13:24:49.484 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4765. 2018-08-15 13:24:49.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4766. 2018-08-15 13:24:49.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4767. 2018-08-15 13:24:49.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4768. 2018-08-15 13:24:49.493 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4769. 2018-08-15 13:24:49.495 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4770. 2018-08-15 13:24:49.496 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4771. 2018-08-15 13:24:49.503 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4772. 2018-08-15 13:24:49.504 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4773. 2018-08-15 13:24:49.505 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4774. 2018-08-15 13:24:49.506 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4775. 2018-08-15 13:24:49.506 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4776. 2018-08-15 13:24:49.506 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4777. 2018-08-15 13:24:49.508 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4778. 2018-08-15 13:24:49.509 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4779. 2018-08-15 13:24:49.509 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4780. 2018-08-15 13:24:49.509 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4781. 2018-08-15 13:24:49.510 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4782. 2018-08-15 13:24:49.510 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4783. 2018-08-15 13:24:49.516 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4784. 2018-08-15 13:24:49.517 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4785. 2018-08-15 13:24:49.517 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4786. 2018-08-15 13:24:49.517 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4787. 2018-08-15 13:24:49.518 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4788. 2018-08-15 13:24:49.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4789. 2018-08-15 13:24:49.518 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4790. 2018-08-15 13:24:49.520 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4791. 2018-08-15 13:24:49.521 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4792. 2018-08-15 13:24:49.522 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4793. 2018-08-15 13:24:49.523 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4794. 2018-08-15 13:24:49.524 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4795. 2018-08-15 13:24:49.536 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-63] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  4796. 2018-08-15 13:24:49.536 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-63] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  4797. 2018-08-15 13:24:49.544 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-63] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  4798. 2018-08-15 13:25:17.305 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4799. 2018-08-15 13:25:17.306 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4800. 2018-08-15 13:25:17.308 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4801. 2018-08-15 13:25:17.308 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4802. 2018-08-15 13:25:17.308 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4803. 2018-08-15 13:25:17.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4804. 2018-08-15 13:25:17.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4805. 2018-08-15 13:25:17.311 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4806. 2018-08-15 13:25:17.311 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4807. 2018-08-15 13:25:17.312 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4808. 2018-08-15 13:25:17.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4809. 2018-08-15 13:25:17.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4810. 2018-08-15 13:25:17.314 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4811. 2018-08-15 13:25:17.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4812. 2018-08-15 13:25:17.315 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4813. 2018-08-15 13:25:17.315 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4814. 2018-08-15 13:25:17.315 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4815. 2018-08-15 13:25:17.316 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4816. 2018-08-15 13:25:17.316 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4817. 2018-08-15 13:25:17.316 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4818. 2018-08-15 13:25:17.319 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4819. 2018-08-15 13:25:17.319 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4820. 2018-08-15 13:25:17.319 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4821. 2018-08-15 13:25:17.320 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4822. 2018-08-15 13:25:17.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4823. 2018-08-15 13:25:17.322 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4824. 2018-08-15 13:25:17.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4825. 2018-08-15 13:25:17.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4826. 2018-08-15 13:25:17.322 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4827. 2018-08-15 13:25:17.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4828. 2018-08-15 13:25:17.323 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4829. 2018-08-15 13:25:17.323 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4830. 2018-08-15 13:25:17.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4831. 2018-08-15 13:25:17.323 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4832. 2018-08-15 13:25:17.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4833. 2018-08-15 13:25:17.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4834. 2018-08-15 13:25:17.324 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4835. 2018-08-15 13:25:17.324 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4836. 2018-08-15 13:25:17.325 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4837. 2018-08-15 13:25:17.325 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4838. 2018-08-15 13:25:17.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4839. 2018-08-15 13:25:17.329 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4840. 2018-08-15 13:25:17.329 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4841. 2018-08-15 13:25:17.329 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4842. 2018-08-15 13:25:17.330 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4843. 2018-08-15 13:25:17.330 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4844. 2018-08-15 13:25:17.333 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4845. 2018-08-15 13:25:17.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  4846. 2018-08-15 13:25:17.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  4847. 2018-08-15 13:25:17.334 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4848. 2018-08-15 13:25:17.334 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4849. 2018-08-15 13:25:17.335 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4850. 2018-08-15 13:25:17.336 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4851. 2018-08-15 13:25:17.336 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4852. 2018-08-15 13:25:17.336 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4853. 2018-08-15 13:25:17.336 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4854. 2018-08-15 13:25:17.337 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4855. 2018-08-15 13:25:17.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4856. 2018-08-15 13:25:17.339 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4857. 2018-08-15 13:25:17.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  4858. 2018-08-15 13:25:17.341 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  4859. 2018-08-15 13:25:17.341 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4860. 2018-08-15 13:25:17.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  4861. 2018-08-15 13:25:17.342 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  4862. 2018-08-15 13:25:17.342 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4863. 2018-08-15 13:25:17.342 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4864. 2018-08-15 13:25:17.343 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4865. 2018-08-15 13:25:17.344 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  4866. 2018-08-15 13:25:17.345 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  4867. 2018-08-15 13:25:17.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  4868. 2018-08-15 13:25:17.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  4869. 2018-08-15 13:25:17.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  4870. 2018-08-15 13:25:17.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4871. 2018-08-15 13:25:17.354 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4872. 2018-08-15 13:25:17.361 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4873. 2018-08-15 13:25:17.399 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4874. 2018-08-15 13:25:17.400 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4875. 2018-08-15 13:25:17.400 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4876. 2018-08-15 13:25:17.401 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4877. 2018-08-15 13:25:17.401 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4878. 2018-08-15 13:25:17.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4879. 2018-08-15 13:25:17.402 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4880. 2018-08-15 13:25:17.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4881. 2018-08-15 13:25:17.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4882. 2018-08-15 13:25:17.402 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4883. 2018-08-15 13:25:17.403 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4884. 2018-08-15 13:25:17.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4885. 2018-08-15 13:25:17.404 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4886. 2018-08-15 13:25:17.404 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4887. 2018-08-15 13:25:17.405 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4888. 2018-08-15 13:25:17.405 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4889. 2018-08-15 13:25:17.405 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4890. 2018-08-15 13:25:17.405 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4891. 2018-08-15 13:25:17.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4892. 2018-08-15 13:25:17.405 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4893. 2018-08-15 13:25:17.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4894. 2018-08-15 13:25:17.406 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4895. 2018-08-15 13:25:17.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4896. 2018-08-15 13:25:17.406 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4897. 2018-08-15 13:25:17.413 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4898. 2018-08-15 13:25:17.414 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4899. 2018-08-15 13:25:17.414 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4900. 2018-08-15 13:25:17.414 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4901. 2018-08-15 13:25:17.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4902. 2018-08-15 13:25:17.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4903. 2018-08-15 13:25:17.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4904. 2018-08-15 13:25:17.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4905. 2018-08-15 13:25:17.415 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4906. 2018-08-15 13:25:17.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4907. 2018-08-15 13:25:17.416 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4908. 2018-08-15 13:25:17.416 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4909. 2018-08-15 13:25:17.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4910. 2018-08-15 13:25:17.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4911. 2018-08-15 13:25:17.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4912. 2018-08-15 13:25:17.418 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4913. 2018-08-15 13:25:17.419 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4914. 2018-08-15 13:25:17.419 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4915. 2018-08-15 13:25:17.419 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4916. 2018-08-15 13:25:17.420 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4917. 2018-08-15 13:25:17.420 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4918. 2018-08-15 13:25:17.420 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4919. 2018-08-15 13:25:17.421 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4920. 2018-08-15 13:25:17.421 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  4921. 2018-08-15 13:25:17.421 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  4922. 2018-08-15 13:25:17.421 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4923. 2018-08-15 13:25:17.422 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  4924. 2018-08-15 13:25:17.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  4925. 2018-08-15 13:25:17.422 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  4926. 2018-08-15 13:25:17.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  4927. 2018-08-15 13:25:17.423 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  4928. 2018-08-15 13:25:17.423 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  4929. 2018-08-15 13:25:17.423 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  4930. 2018-08-15 13:25:17.425 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  4931. 2018-08-15 13:25:17.425 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  4932. 2018-08-15 13:25:17.427 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  4933. 2018-08-15 13:25:17.437 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4934. 2018-08-15 13:25:17.439 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4935. 2018-08-15 13:25:17.439 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4936. 2018-08-15 13:25:17.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4937. 2018-08-15 13:25:17.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4938. 2018-08-15 13:25:17.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4939. 2018-08-15 13:25:17.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4940. 2018-08-15 13:25:17.449 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4941. 2018-08-15 13:25:17.449 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4942. 2018-08-15 13:25:17.450 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4943. 2018-08-15 13:25:17.452 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4944. 2018-08-15 13:25:17.453 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4945. 2018-08-15 13:25:17.457 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  4946. 2018-08-15 13:25:17.457 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  4947. 2018-08-15 13:25:17.486 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  4948. 2018-08-15 13:25:17.527 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4949. 2018-08-15 13:25:17.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4950. 2018-08-15 13:25:17.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4951. 2018-08-15 13:25:17.532 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4952. 2018-08-15 13:25:17.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4953. 2018-08-15 13:25:17.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4954. 2018-08-15 13:25:17.539 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4955. 2018-08-15 13:25:17.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4956. 2018-08-15 13:25:17.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4957. 2018-08-15 13:25:17.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4958. 2018-08-15 13:25:17.544 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4959. 2018-08-15 13:25:17.545 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4960. 2018-08-15 13:25:17.548 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  4961. 2018-08-15 13:25:17.549 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  4962. 2018-08-15 13:25:17.550 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  4963. 2018-08-15 13:25:17.759 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4964. 2018-08-15 13:25:17.761 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4965. 2018-08-15 13:25:17.762 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4966. 2018-08-15 13:25:17.764 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4967. 2018-08-15 13:25:17.765 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4968. 2018-08-15 13:25:17.765 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4969. 2018-08-15 13:25:17.771 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  4970. 2018-08-15 13:25:17.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  4971. 2018-08-15 13:25:17.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  4972. 2018-08-15 13:25:17.774 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  4973. 2018-08-15 13:25:17.776 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  4974. 2018-08-15 13:25:17.777 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4975. 2018-08-15 13:25:27.113 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4976. 2018-08-15 13:25:27.115 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4977. 2018-08-15 13:25:27.116 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4978. 2018-08-15 13:25:27.116 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4979. 2018-08-15 13:25:27.116 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4980. 2018-08-15 13:25:27.117 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4981. 2018-08-15 13:25:27.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4982. 2018-08-15 13:25:27.119 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4983. 2018-08-15 13:25:27.119 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4984. 2018-08-15 13:25:27.119 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  4985. 2018-08-15 13:25:27.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4986. 2018-08-15 13:25:27.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4987. 2018-08-15 13:25:27.120 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4988. 2018-08-15 13:25:27.120 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4989. 2018-08-15 13:25:27.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4990. 2018-08-15 13:25:27.121 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4991. 2018-08-15 13:25:27.122 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4992. 2018-08-15 13:25:27.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4993. 2018-08-15 13:25:27.123 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4994. 2018-08-15 13:25:27.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  4995. 2018-08-15 13:25:27.123 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4996. 2018-08-15 13:25:27.124 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4997. 2018-08-15 13:25:27.124 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  4998. 2018-08-15 13:25:27.124 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  4999. 2018-08-15 13:25:27.125 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5000. 2018-08-15 13:25:27.125 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5001. 2018-08-15 13:25:27.125 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5002. 2018-08-15 13:25:27.127 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5003. 2018-08-15 13:25:27.127 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5004. 2018-08-15 13:25:27.128 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5005. 2018-08-15 13:25:27.129 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5006. 2018-08-15 13:25:27.129 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5007. 2018-08-15 13:25:27.130 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5008. 2018-08-15 13:25:27.133 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5009. 2018-08-15 13:25:27.134 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5010. 2018-08-15 13:25:27.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5011. 2018-08-15 13:25:27.135 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5012. 2018-08-15 13:25:27.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5013. 2018-08-15 13:25:27.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5014. 2018-08-15 13:25:27.136 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5015. 2018-08-15 13:25:27.136 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5016. 2018-08-15 13:25:27.136 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5017. 2018-08-15 13:25:27.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5018. 2018-08-15 13:25:27.137 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5019. 2018-08-15 13:25:27.137 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5020. 2018-08-15 13:25:27.137 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5021. 2018-08-15 13:25:27.138 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5022. 2018-08-15 13:25:27.138 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5023. 2018-08-15 13:25:27.138 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5024. 2018-08-15 13:25:27.139 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5025. 2018-08-15 13:25:27.139 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5026. 2018-08-15 13:25:27.140 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5027. 2018-08-15 13:25:27.141 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5028. 2018-08-15 13:25:27.141 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5029. 2018-08-15 13:25:27.141 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5030. 2018-08-15 13:25:27.142 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5031. 2018-08-15 13:25:27.142 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5032. 2018-08-15 13:25:27.142 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5033. 2018-08-15 13:25:27.142 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5034. 2018-08-15 13:25:27.143 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5035. 2018-08-15 13:25:27.143 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5036. 2018-08-15 13:25:27.144 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5037. 2018-08-15 13:25:27.145 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5038. 2018-08-15 13:25:27.150 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5039. 2018-08-15 13:25:27.151 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5040. 2018-08-15 13:25:27.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5041. 2018-08-15 13:25:27.153 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5042. 2018-08-15 13:25:27.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  5043. 2018-08-15 13:25:27.153 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  5044. 2018-08-15 13:25:27.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  5045. 2018-08-15 13:25:27.154 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5046. 2018-08-15 13:25:27.156 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  5047. 2018-08-15 13:25:27.157 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5048. 2018-08-15 13:25:27.158 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5049. 2018-08-15 13:25:27.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5050. 2018-08-15 13:25:27.262 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5051. 2018-08-15 13:25:27.264 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5052. 2018-08-15 13:25:27.264 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5053. 2018-08-15 13:25:27.265 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5054. 2018-08-15 13:25:27.266 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5055. 2018-08-15 13:25:27.266 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5056. 2018-08-15 13:25:27.267 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5057. 2018-08-15 13:25:27.267 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5058. 2018-08-15 13:25:27.267 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5059. 2018-08-15 13:25:27.267 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5060. 2018-08-15 13:25:27.268 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5061. 2018-08-15 13:25:27.268 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5062. 2018-08-15 13:25:27.269 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5063. 2018-08-15 13:25:27.269 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5064. 2018-08-15 13:25:27.269 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5065. 2018-08-15 13:25:27.270 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5066. 2018-08-15 13:25:27.270 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5067. 2018-08-15 13:25:27.270 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5068. 2018-08-15 13:25:27.271 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5069. 2018-08-15 13:25:27.271 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5070. 2018-08-15 13:25:27.271 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5071. 2018-08-15 13:25:27.271 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5072. 2018-08-15 13:25:27.272 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5073. 2018-08-15 13:25:27.272 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5074. 2018-08-15 13:25:27.277 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5075. 2018-08-15 13:25:27.278 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5076. 2018-08-15 13:25:27.278 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5077. 2018-08-15 13:25:27.279 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5078. 2018-08-15 13:25:27.280 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5079. 2018-08-15 13:25:27.280 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5080. 2018-08-15 13:25:27.281 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5081. 2018-08-15 13:25:27.281 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5082. 2018-08-15 13:25:27.281 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5083. 2018-08-15 13:25:27.282 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5084. 2018-08-15 13:25:27.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5085. 2018-08-15 13:25:27.282 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5086. 2018-08-15 13:25:27.283 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5087. 2018-08-15 13:25:27.284 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5088. 2018-08-15 13:25:27.284 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5089. 2018-08-15 13:25:27.284 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5090. 2018-08-15 13:25:27.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5091. 2018-08-15 13:25:27.286 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5092. 2018-08-15 13:25:27.287 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5093. 2018-08-15 13:25:27.287 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5094. 2018-08-15 13:25:27.287 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5095. 2018-08-15 13:25:27.288 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5096. 2018-08-15 13:25:27.288 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5097. 2018-08-15 13:25:27.288 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5098. 2018-08-15 13:25:27.288 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5099. 2018-08-15 13:25:27.289 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5100. 2018-08-15 13:25:27.289 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5101. 2018-08-15 13:25:27.289 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5102. 2018-08-15 13:25:27.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  5103. 2018-08-15 13:25:27.290 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5104. 2018-08-15 13:25:27.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5105. 2018-08-15 13:25:27.290 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  5106. 2018-08-15 13:25:27.290 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5107. 2018-08-15 13:25:27.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5108. 2018-08-15 13:25:27.292 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  5109. 2018-08-15 13:25:27.294 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  5110. 2018-08-15 13:25:27.303 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5111. 2018-08-15 13:25:27.304 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5112. 2018-08-15 13:25:27.305 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5113. 2018-08-15 13:25:27.306 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5114. 2018-08-15 13:25:27.307 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5115. 2018-08-15 13:25:27.307 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5116. 2018-08-15 13:25:27.313 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5117. 2018-08-15 13:25:27.314 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5118. 2018-08-15 13:25:27.315 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5119. 2018-08-15 13:25:27.316 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5120. 2018-08-15 13:25:27.318 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5121. 2018-08-15 13:25:27.318 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5122. 2018-08-15 13:25:27.322 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5123. 2018-08-15 13:25:27.323 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5124. 2018-08-15 13:25:27.351 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  5125. 2018-08-15 13:25:27.384 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5126. 2018-08-15 13:25:27.385 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5127. 2018-08-15 13:25:27.386 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5128. 2018-08-15 13:25:27.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5129. 2018-08-15 13:25:27.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5130. 2018-08-15 13:25:27.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5131. 2018-08-15 13:25:27.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5132. 2018-08-15 13:25:27.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5133. 2018-08-15 13:25:27.396 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5134. 2018-08-15 13:25:27.398 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5135. 2018-08-15 13:25:27.400 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5136. 2018-08-15 13:25:27.401 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5137. 2018-08-15 13:25:27.404 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5138. 2018-08-15 13:25:27.404 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5139. 2018-08-15 13:25:27.406 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5140. 2018-08-15 13:25:27.552 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5141. 2018-08-15 13:25:27.554 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5142. 2018-08-15 13:25:27.554 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5143. 2018-08-15 13:25:27.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5144. 2018-08-15 13:25:27.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5145. 2018-08-15 13:25:27.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5146. 2018-08-15 13:25:27.564 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5147. 2018-08-15 13:25:27.565 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5148. 2018-08-15 13:25:27.565 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5149. 2018-08-15 13:25:27.567 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5150. 2018-08-15 13:25:27.569 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5151. 2018-08-15 13:25:27.570 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5152. 2018-08-15 13:25:30.306 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5153. 2018-08-15 13:25:30.308 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5154. 2018-08-15 13:25:30.308 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5155. 2018-08-15 13:25:30.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5156. 2018-08-15 13:25:30.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5157. 2018-08-15 13:25:30.312 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5158. 2018-08-15 13:25:30.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5159. 2018-08-15 13:25:30.318 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5160. 2018-08-15 13:25:30.319 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5161. 2018-08-15 13:25:30.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5162. 2018-08-15 13:25:30.322 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5163. 2018-08-15 13:25:30.323 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5164. 2018-08-15 13:25:30.330 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5165. 2018-08-15 13:25:30.331 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5166. 2018-08-15 13:25:30.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5167. 2018-08-15 13:25:30.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5168. 2018-08-15 13:25:30.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5169. 2018-08-15 13:25:30.334 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5170. 2018-08-15 13:25:30.334 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5171. 2018-08-15 13:25:30.335 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5172. 2018-08-15 13:25:30.335 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5173. 2018-08-15 13:25:30.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5174. 2018-08-15 13:25:30.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5175. 2018-08-15 13:25:30.337 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5176. 2018-08-15 13:25:30.341 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5177. 2018-08-15 13:25:30.342 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5178. 2018-08-15 13:25:30.342 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5179. 2018-08-15 13:25:30.343 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5180. 2018-08-15 13:25:30.343 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5181. 2018-08-15 13:25:30.343 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5182. 2018-08-15 13:25:30.344 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5183. 2018-08-15 13:25:30.345 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5184. 2018-08-15 13:25:30.346 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5185. 2018-08-15 13:25:30.348 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5186. 2018-08-15 13:25:30.348 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5187. 2018-08-15 13:25:30.349 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5188. 2018-08-15 13:25:30.359 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-81] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  5189. 2018-08-15 13:25:30.360 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-81] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  5190. 2018-08-15 13:25:30.371 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-81] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  5191. 2018-08-15 13:25:46.853 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5192. 2018-08-15 13:25:46.855 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5193. 2018-08-15 13:25:46.856 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5194. 2018-08-15 13:25:46.857 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5195. 2018-08-15 13:25:46.857 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5196. 2018-08-15 13:25:46.857 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5197. 2018-08-15 13:25:46.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5198. 2018-08-15 13:25:46.858 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5199. 2018-08-15 13:25:46.860 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5200. 2018-08-15 13:25:46.860 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5201. 2018-08-15 13:25:46.860 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5202. 2018-08-15 13:25:46.861 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5203. 2018-08-15 13:25:46.861 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5204. 2018-08-15 13:25:46.861 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5205. 2018-08-15 13:25:46.861 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5206. 2018-08-15 13:25:46.861 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5207. 2018-08-15 13:25:46.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5208. 2018-08-15 13:25:46.862 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5209. 2018-08-15 13:25:46.863 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5210. 2018-08-15 13:25:46.863 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5211. 2018-08-15 13:25:46.864 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5212. 2018-08-15 13:25:46.864 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5213. 2018-08-15 13:25:46.864 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5214. 2018-08-15 13:25:46.864 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5215. 2018-08-15 13:25:46.865 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5216. 2018-08-15 13:25:46.866 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5217. 2018-08-15 13:25:46.866 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5218. 2018-08-15 13:25:46.867 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5219. 2018-08-15 13:25:46.868 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5220. 2018-08-15 13:25:46.869 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5221. 2018-08-15 13:25:46.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5222. 2018-08-15 13:25:46.872 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5223. 2018-08-15 13:25:46.872 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5224. 2018-08-15 13:25:46.873 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5225. 2018-08-15 13:25:46.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5226. 2018-08-15 13:25:46.873 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5227. 2018-08-15 13:25:46.875 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5228. 2018-08-15 13:25:46.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5229. 2018-08-15 13:25:46.875 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5230. 2018-08-15 13:25:46.876 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5231. 2018-08-15 13:25:46.876 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5232. 2018-08-15 13:25:46.876 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5233. 2018-08-15 13:25:46.876 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5234. 2018-08-15 13:25:46.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5235. 2018-08-15 13:25:46.877 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5236. 2018-08-15 13:25:46.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5237. 2018-08-15 13:25:46.877 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5238. 2018-08-15 13:25:46.878 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5239. 2018-08-15 13:25:46.878 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5240. 2018-08-15 13:25:46.878 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5241. 2018-08-15 13:25:46.878 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5242. 2018-08-15 13:25:46.879 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5243. 2018-08-15 13:25:46.879 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5244. 2018-08-15 13:25:46.880 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5245. 2018-08-15 13:25:46.881 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5246. 2018-08-15 13:25:46.881 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5247. 2018-08-15 13:25:46.882 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5248. 2018-08-15 13:25:46.882 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5249. 2018-08-15 13:25:46.882 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5250. 2018-08-15 13:25:46.884 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5251. 2018-08-15 13:25:46.884 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5252. 2018-08-15 13:25:46.885 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5253. 2018-08-15 13:25:46.887 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5254. 2018-08-15 13:25:46.890 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5255. 2018-08-15 13:25:46.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5256. 2018-08-15 13:25:46.891 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5257. 2018-08-15 13:25:46.891 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5258. 2018-08-15 13:25:46.892 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  5259. 2018-08-15 13:25:46.893 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  5260. 2018-08-15 13:25:46.893 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5261. 2018-08-15 13:25:46.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  5262. 2018-08-15 13:25:46.895 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  5263. 2018-08-15 13:25:46.896 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5264. 2018-08-15 13:25:46.897 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5265. 2018-08-15 13:25:46.903 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5266. 2018-08-15 13:25:47.006 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5267. 2018-08-15 13:25:47.006 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5268. 2018-08-15 13:25:47.008 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5269. 2018-08-15 13:25:47.008 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5270. 2018-08-15 13:25:47.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5271. 2018-08-15 13:25:47.009 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5272. 2018-08-15 13:25:47.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5273. 2018-08-15 13:25:47.009 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5274. 2018-08-15 13:25:47.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5275. 2018-08-15 13:25:47.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5276. 2018-08-15 13:25:47.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5277. 2018-08-15 13:25:47.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5278. 2018-08-15 13:25:47.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5279. 2018-08-15 13:25:47.012 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5280. 2018-08-15 13:25:47.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5281. 2018-08-15 13:25:47.012 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5282. 2018-08-15 13:25:47.013 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5283. 2018-08-15 13:25:47.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5284. 2018-08-15 13:25:47.013 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5285. 2018-08-15 13:25:47.013 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5286. 2018-08-15 13:25:47.013 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5287. 2018-08-15 13:25:47.014 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5288. 2018-08-15 13:25:47.014 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5289. 2018-08-15 13:25:47.014 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5290. 2018-08-15 13:25:47.020 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5291. 2018-08-15 13:25:47.021 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5292. 2018-08-15 13:25:47.021 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5293. 2018-08-15 13:25:47.021 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5294. 2018-08-15 13:25:47.022 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5295. 2018-08-15 13:25:47.022 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5296. 2018-08-15 13:25:47.022 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5297. 2018-08-15 13:25:47.022 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5298. 2018-08-15 13:25:47.023 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5299. 2018-08-15 13:25:47.023 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5300. 2018-08-15 13:25:47.023 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5301. 2018-08-15 13:25:47.024 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5302. 2018-08-15 13:25:47.024 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5303. 2018-08-15 13:25:47.024 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5304. 2018-08-15 13:25:47.025 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5305. 2018-08-15 13:25:47.026 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5306. 2018-08-15 13:25:47.026 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5307. 2018-08-15 13:25:47.027 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5308. 2018-08-15 13:25:47.027 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5309. 2018-08-15 13:25:47.028 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5310. 2018-08-15 13:25:47.028 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5311. 2018-08-15 13:25:47.028 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5312. 2018-08-15 13:25:47.029 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5313. 2018-08-15 13:25:47.029 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5314. 2018-08-15 13:25:47.029 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5315. 2018-08-15 13:25:47.029 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5316. 2018-08-15 13:25:47.030 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5317. 2018-08-15 13:25:47.032 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5318. 2018-08-15 13:25:47.033 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5319. 2018-08-15 13:25:47.034 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5320. 2018-08-15 13:25:47.034 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5321. 2018-08-15 13:25:47.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  5322. 2018-08-15 13:25:47.035 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  5323. 2018-08-15 13:25:47.037 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5324. 2018-08-15 13:25:47.038 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  5325. 2018-08-15 13:25:47.038 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  5326. 2018-08-15 13:25:47.057 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5327. 2018-08-15 13:25:47.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5328. 2018-08-15 13:25:47.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5329. 2018-08-15 13:25:47.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5330. 2018-08-15 13:25:47.062 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5331. 2018-08-15 13:25:47.062 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5332. 2018-08-15 13:25:47.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5333. 2018-08-15 13:25:47.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5334. 2018-08-15 13:25:47.069 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5335. 2018-08-15 13:25:47.070 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5336. 2018-08-15 13:25:47.072 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5337. 2018-08-15 13:25:47.073 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5338. 2018-08-15 13:25:47.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5339. 2018-08-15 13:25:47.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5340. 2018-08-15 13:25:47.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  5341. 2018-08-15 13:25:47.138 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5342. 2018-08-15 13:25:47.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5343. 2018-08-15 13:25:47.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5344. 2018-08-15 13:25:47.143 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5345. 2018-08-15 13:25:47.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5346. 2018-08-15 13:25:47.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5347. 2018-08-15 13:25:47.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5348. 2018-08-15 13:25:47.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5349. 2018-08-15 13:25:47.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5350. 2018-08-15 13:25:47.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5351. 2018-08-15 13:25:47.155 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5352. 2018-08-15 13:25:47.155 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5353. 2018-08-15 13:25:47.159 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5354. 2018-08-15 13:25:47.159 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5355. 2018-08-15 13:25:47.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5356. 2018-08-15 13:25:47.302 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5357. 2018-08-15 13:25:47.304 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5358. 2018-08-15 13:25:47.305 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5359. 2018-08-15 13:25:47.307 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5360. 2018-08-15 13:25:47.308 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5361. 2018-08-15 13:25:47.309 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5362. 2018-08-15 13:25:47.315 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5363. 2018-08-15 13:25:47.316 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5364. 2018-08-15 13:25:47.316 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5365. 2018-08-15 13:25:47.318 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5366. 2018-08-15 13:25:47.321 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5367. 2018-08-15 13:25:47.321 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5368. 2018-08-15 13:25:49.059 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5369. 2018-08-15 13:25:49.061 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5370. 2018-08-15 13:25:49.061 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5371. 2018-08-15 13:25:49.064 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5372. 2018-08-15 13:25:49.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5373. 2018-08-15 13:25:49.065 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5374. 2018-08-15 13:25:49.071 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5375. 2018-08-15 13:25:49.072 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5376. 2018-08-15 13:25:49.072 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5377. 2018-08-15 13:25:49.073 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5378. 2018-08-15 13:25:49.076 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5379. 2018-08-15 13:25:49.077 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5380. 2018-08-15 13:25:49.085 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5381. 2018-08-15 13:25:49.086 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5382. 2018-08-15 13:25:49.088 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5383. 2018-08-15 13:25:49.088 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5384. 2018-08-15 13:25:49.089 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5385. 2018-08-15 13:25:49.089 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5386. 2018-08-15 13:25:49.090 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5387. 2018-08-15 13:25:49.091 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5388. 2018-08-15 13:25:49.091 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5389. 2018-08-15 13:25:49.092 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5390. 2018-08-15 13:25:49.092 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5391. 2018-08-15 13:25:49.092 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5392. 2018-08-15 13:25:49.099 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5393. 2018-08-15 13:25:49.100 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5394. 2018-08-15 13:25:49.100 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5395. 2018-08-15 13:25:49.100 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5396. 2018-08-15 13:25:49.101 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5397. 2018-08-15 13:25:49.101 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5398. 2018-08-15 13:25:49.102 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5399. 2018-08-15 13:25:49.103 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5400. 2018-08-15 13:25:49.105 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5401. 2018-08-15 13:25:49.106 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5402. 2018-08-15 13:25:49.106 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5403. 2018-08-15 13:25:49.107 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5404. 2018-08-15 13:25:49.116 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-95] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  5405. 2018-08-15 13:25:49.117 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-95] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  5406. 2018-08-15 13:25:49.124 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-95] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  5407. 2018-08-15 13:26:22.404 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5408. 2018-08-15 13:26:22.406 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5409. 2018-08-15 13:26:22.407 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5410. 2018-08-15 13:26:22.408 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5411. 2018-08-15 13:26:22.408 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5412. 2018-08-15 13:26:22.409 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5413. 2018-08-15 13:26:22.410 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5414. 2018-08-15 13:26:22.410 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5415. 2018-08-15 13:26:22.410 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5416. 2018-08-15 13:26:22.411 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5417. 2018-08-15 13:26:22.411 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5418. 2018-08-15 13:26:22.411 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5419. 2018-08-15 13:26:22.411 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5420. 2018-08-15 13:26:22.412 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5421. 2018-08-15 13:26:22.413 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5422. 2018-08-15 13:26:22.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5423. 2018-08-15 13:26:22.413 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5424. 2018-08-15 13:26:22.413 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5425. 2018-08-15 13:26:22.413 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5426. 2018-08-15 13:26:22.413 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5427. 2018-08-15 13:26:22.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5428. 2018-08-15 13:26:22.414 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5429. 2018-08-15 13:26:22.414 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5430. 2018-08-15 13:26:22.414 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5431. 2018-08-15 13:26:22.415 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5432. 2018-08-15 13:26:22.415 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5433. 2018-08-15 13:26:22.416 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5434. 2018-08-15 13:26:22.417 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5435. 2018-08-15 13:26:22.418 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5436. 2018-08-15 13:26:22.418 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5437. 2018-08-15 13:26:22.422 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5438. 2018-08-15 13:26:22.423 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5439. 2018-08-15 13:26:22.423 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5440. 2018-08-15 13:26:22.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5441. 2018-08-15 13:26:22.424 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5442. 2018-08-15 13:26:22.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5443. 2018-08-15 13:26:22.424 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5444. 2018-08-15 13:26:22.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5445. 2018-08-15 13:26:22.425 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5446. 2018-08-15 13:26:22.425 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5447. 2018-08-15 13:26:22.426 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5448. 2018-08-15 13:26:22.426 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5449. 2018-08-15 13:26:22.426 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5450. 2018-08-15 13:26:22.426 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5451. 2018-08-15 13:26:22.426 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5452. 2018-08-15 13:26:22.427 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5453. 2018-08-15 13:26:22.427 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5454. 2018-08-15 13:26:22.428 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5455. 2018-08-15 13:26:22.429 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5456. 2018-08-15 13:26:22.431 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5457. 2018-08-15 13:26:22.431 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5458. 2018-08-15 13:26:22.432 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5459. 2018-08-15 13:26:22.432 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5460. 2018-08-15 13:26:22.433 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5461. 2018-08-15 13:26:22.433 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5462. 2018-08-15 13:26:22.433 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5463. 2018-08-15 13:26:22.434 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5464. 2018-08-15 13:26:22.435 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5465. 2018-08-15 13:26:22.436 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5466. 2018-08-15 13:26:22.436 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5467. 2018-08-15 13:26:22.436 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5468. 2018-08-15 13:26:22.436 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5469. 2018-08-15 13:26:22.438 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5470. 2018-08-15 13:26:22.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5471. 2018-08-15 13:26:22.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5472. 2018-08-15 13:26:22.443 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  5473. 2018-08-15 13:26:22.443 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5474. 2018-08-15 13:26:22.444 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  5475. 2018-08-15 13:26:22.444 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  5476. 2018-08-15 13:26:22.444 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5477. 2018-08-15 13:26:22.446 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5478. 2018-08-15 13:26:22.446 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  5479. 2018-08-15 13:26:22.448 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5480. 2018-08-15 13:26:22.448 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5481. 2018-08-15 13:26:22.454 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5482. 2018-08-15 13:26:22.546 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5483. 2018-08-15 13:26:22.546 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5484. 2018-08-15 13:26:22.547 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5485. 2018-08-15 13:26:22.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5486. 2018-08-15 13:26:22.549 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5487. 2018-08-15 13:26:22.549 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5488. 2018-08-15 13:26:22.549 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5489. 2018-08-15 13:26:22.549 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5490. 2018-08-15 13:26:22.550 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5491. 2018-08-15 13:26:22.550 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5492. 2018-08-15 13:26:22.551 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5493. 2018-08-15 13:26:22.551 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5494. 2018-08-15 13:26:22.551 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5495. 2018-08-15 13:26:22.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5496. 2018-08-15 13:26:22.552 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5497. 2018-08-15 13:26:22.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5498. 2018-08-15 13:26:22.553 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5499. 2018-08-15 13:26:22.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5500. 2018-08-15 13:26:22.554 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5501. 2018-08-15 13:26:22.554 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5502. 2018-08-15 13:26:22.554 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5503. 2018-08-15 13:26:22.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5504. 2018-08-15 13:26:22.555 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5505. 2018-08-15 13:26:22.555 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5506. 2018-08-15 13:26:22.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5507. 2018-08-15 13:26:22.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5508. 2018-08-15 13:26:22.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5509. 2018-08-15 13:26:22.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5510. 2018-08-15 13:26:22.562 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5511. 2018-08-15 13:26:22.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5512. 2018-08-15 13:26:22.563 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5513. 2018-08-15 13:26:22.563 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5514. 2018-08-15 13:26:22.563 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5515. 2018-08-15 13:26:22.563 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5516. 2018-08-15 13:26:22.564 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5517. 2018-08-15 13:26:22.564 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5518. 2018-08-15 13:26:22.565 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5519. 2018-08-15 13:26:22.565 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5520. 2018-08-15 13:26:22.565 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5521. 2018-08-15 13:26:22.565 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5522. 2018-08-15 13:26:22.566 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5523. 2018-08-15 13:26:22.567 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5524. 2018-08-15 13:26:22.568 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5525. 2018-08-15 13:26:22.568 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5526. 2018-08-15 13:26:22.568 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5527. 2018-08-15 13:26:22.569 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5528. 2018-08-15 13:26:22.569 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5529. 2018-08-15 13:26:22.569 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5530. 2018-08-15 13:26:22.570 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5531. 2018-08-15 13:26:22.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5532. 2018-08-15 13:26:22.572 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5533. 2018-08-15 13:26:22.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  5534. 2018-08-15 13:26:22.572 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5535. 2018-08-15 13:26:22.573 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  5536. 2018-08-15 13:26:22.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5537. 2018-08-15 13:26:22.574 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5538. 2018-08-15 13:26:22.575 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5539. 2018-08-15 13:26:22.576 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  5540. 2018-08-15 13:26:22.576 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5541. 2018-08-15 13:26:22.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  5542. 2018-08-15 13:26:22.587 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5543. 2018-08-15 13:26:22.589 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5544. 2018-08-15 13:26:22.589 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5545. 2018-08-15 13:26:22.591 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5546. 2018-08-15 13:26:22.592 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5547. 2018-08-15 13:26:22.592 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5548. 2018-08-15 13:26:22.598 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5549. 2018-08-15 13:26:22.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5550. 2018-08-15 13:26:22.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5551. 2018-08-15 13:26:22.601 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5552. 2018-08-15 13:26:22.605 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5553. 2018-08-15 13:26:22.606 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5554. 2018-08-15 13:26:22.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5555. 2018-08-15 13:26:22.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5556. 2018-08-15 13:26:22.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  5557. 2018-08-15 13:26:22.673 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5558. 2018-08-15 13:26:22.675 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5559. 2018-08-15 13:26:22.675 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5560. 2018-08-15 13:26:22.677 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5561. 2018-08-15 13:26:22.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5562. 2018-08-15 13:26:22.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5563. 2018-08-15 13:26:22.684 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5564. 2018-08-15 13:26:22.684 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5565. 2018-08-15 13:26:22.684 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5566. 2018-08-15 13:26:22.686 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5567. 2018-08-15 13:26:22.688 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5568. 2018-08-15 13:26:22.689 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5569. 2018-08-15 13:26:22.692 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5570. 2018-08-15 13:26:22.692 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5571. 2018-08-15 13:26:22.694 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5572. 2018-08-15 13:26:22.853 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5573. 2018-08-15 13:26:22.855 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5574. 2018-08-15 13:26:22.856 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5575. 2018-08-15 13:26:22.858 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5576. 2018-08-15 13:26:22.859 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5577. 2018-08-15 13:26:22.859 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5578. 2018-08-15 13:26:22.866 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5579. 2018-08-15 13:26:22.867 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5580. 2018-08-15 13:26:22.868 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5581. 2018-08-15 13:26:22.869 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5582. 2018-08-15 13:26:22.872 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5583. 2018-08-15 13:26:22.873 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5584. 2018-08-15 13:26:24.398 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5585. 2018-08-15 13:26:24.400 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5586. 2018-08-15 13:26:24.400 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5587. 2018-08-15 13:26:24.402 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5588. 2018-08-15 13:26:24.403 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5589. 2018-08-15 13:26:24.403 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5590. 2018-08-15 13:26:24.410 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5591. 2018-08-15 13:26:24.410 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5592. 2018-08-15 13:26:24.411 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5593. 2018-08-15 13:26:24.412 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5594. 2018-08-15 13:26:24.414 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5595. 2018-08-15 13:26:24.415 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5596. 2018-08-15 13:26:24.423 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5597. 2018-08-15 13:26:24.424 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5598. 2018-08-15 13:26:24.425 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5599. 2018-08-15 13:26:24.426 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5600. 2018-08-15 13:26:24.426 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5601. 2018-08-15 13:26:24.426 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5602. 2018-08-15 13:26:24.427 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5603. 2018-08-15 13:26:24.428 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5604. 2018-08-15 13:26:24.429 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5605. 2018-08-15 13:26:24.429 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5606. 2018-08-15 13:26:24.430 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5607. 2018-08-15 13:26:24.430 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5608. 2018-08-15 13:26:24.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5609. 2018-08-15 13:26:24.436 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5610. 2018-08-15 13:26:24.437 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5611. 2018-08-15 13:26:24.438 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5612. 2018-08-15 13:26:24.438 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5613. 2018-08-15 13:26:24.440 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5614. 2018-08-15 13:26:24.440 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5615. 2018-08-15 13:26:24.442 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5616. 2018-08-15 13:26:24.442 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5617. 2018-08-15 13:26:24.443 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5618. 2018-08-15 13:26:24.445 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5619. 2018-08-15 13:26:24.445 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5620. 2018-08-15 13:26:24.456 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-109] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  5621. 2018-08-15 13:26:24.456 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-109] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  5622. 2018-08-15 13:26:24.463 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-109] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  5623. 2018-08-15 13:27:56.105 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5624. 2018-08-15 13:27:56.106 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5625. 2018-08-15 13:27:56.107 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5626. 2018-08-15 13:27:56.109 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5627. 2018-08-15 13:27:56.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5628. 2018-08-15 13:27:56.110 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5629. 2018-08-15 13:27:56.110 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5630. 2018-08-15 13:27:56.110 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5631. 2018-08-15 13:27:56.111 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5632. 2018-08-15 13:27:56.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5633. 2018-08-15 13:27:56.112 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5634. 2018-08-15 13:27:56.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5635. 2018-08-15 13:27:56.113 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5636. 2018-08-15 13:27:56.113 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5637. 2018-08-15 13:27:56.113 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5638. 2018-08-15 13:27:56.113 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5639. 2018-08-15 13:27:56.113 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5640. 2018-08-15 13:27:56.114 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5641. 2018-08-15 13:27:56.115 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5642. 2018-08-15 13:27:56.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5643. 2018-08-15 13:27:56.115 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5644. 2018-08-15 13:27:56.116 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5645. 2018-08-15 13:27:56.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5646. 2018-08-15 13:27:56.116 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5647. 2018-08-15 13:27:56.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5648. 2018-08-15 13:27:56.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5649. 2018-08-15 13:27:56.118 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5650. 2018-08-15 13:27:56.119 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5651. 2018-08-15 13:27:56.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5652. 2018-08-15 13:27:56.119 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5653. 2018-08-15 13:27:56.122 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5654. 2018-08-15 13:27:56.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5655. 2018-08-15 13:27:56.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5656. 2018-08-15 13:27:56.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5657. 2018-08-15 13:27:56.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5658. 2018-08-15 13:27:56.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5659. 2018-08-15 13:27:56.125 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5660. 2018-08-15 13:27:56.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5661. 2018-08-15 13:27:56.127 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5662. 2018-08-15 13:27:56.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5663. 2018-08-15 13:27:56.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5664. 2018-08-15 13:27:56.127 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5665. 2018-08-15 13:27:56.127 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5666. 2018-08-15 13:27:56.128 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5667. 2018-08-15 13:27:56.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5668. 2018-08-15 13:27:56.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5669. 2018-08-15 13:27:56.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5670. 2018-08-15 13:27:56.129 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5671. 2018-08-15 13:27:56.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5672. 2018-08-15 13:27:56.129 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5673. 2018-08-15 13:27:56.129 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5674. 2018-08-15 13:27:56.130 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5675. 2018-08-15 13:27:56.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5676. 2018-08-15 13:27:56.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5677. 2018-08-15 13:27:56.132 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5678. 2018-08-15 13:27:56.132 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5679. 2018-08-15 13:27:56.133 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5680. 2018-08-15 13:27:56.133 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5681. 2018-08-15 13:27:56.134 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5682. 2018-08-15 13:27:56.135 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5683. 2018-08-15 13:27:56.135 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5684. 2018-08-15 13:27:56.135 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5685. 2018-08-15 13:27:56.136 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5686. 2018-08-15 13:27:56.140 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  5687. 2018-08-15 13:27:56.141 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  5688. 2018-08-15 13:27:56.143 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  5689. 2018-08-15 13:27:56.144 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5690. 2018-08-15 13:27:56.144 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5691. 2018-08-15 13:27:56.150 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5692. 2018-08-15 13:27:56.182 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5693. 2018-08-15 13:27:56.182 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5694. 2018-08-15 13:27:56.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5695. 2018-08-15 13:27:56.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5696. 2018-08-15 13:27:56.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5697. 2018-08-15 13:27:56.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  5698. 2018-08-15 13:27:56.243 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5699. 2018-08-15 13:27:56.244 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5700. 2018-08-15 13:27:56.246 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5701. 2018-08-15 13:27:56.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5702. 2018-08-15 13:27:56.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5703. 2018-08-15 13:27:56.248 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5704. 2018-08-15 13:27:56.248 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5705. 2018-08-15 13:27:56.249 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5706. 2018-08-15 13:27:56.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5707. 2018-08-15 13:27:56.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5708. 2018-08-15 13:27:56.250 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5709. 2018-08-15 13:27:56.250 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5710. 2018-08-15 13:27:56.250 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5711. 2018-08-15 13:27:56.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5712. 2018-08-15 13:27:56.251 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5713. 2018-08-15 13:27:56.251 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5714. 2018-08-15 13:27:56.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5715. 2018-08-15 13:27:56.252 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5716. 2018-08-15 13:27:56.252 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5717. 2018-08-15 13:27:56.252 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5718. 2018-08-15 13:27:56.253 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5719. 2018-08-15 13:27:56.254 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5720. 2018-08-15 13:27:56.255 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5721. 2018-08-15 13:27:56.255 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5722. 2018-08-15 13:27:56.257 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5723. 2018-08-15 13:27:56.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5724. 2018-08-15 13:27:56.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5725. 2018-08-15 13:27:56.259 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5726. 2018-08-15 13:27:56.260 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5727. 2018-08-15 13:27:56.261 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5728. 2018-08-15 13:27:56.261 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5729. 2018-08-15 13:27:56.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5730. 2018-08-15 13:27:56.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5731. 2018-08-15 13:27:56.262 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5732. 2018-08-15 13:27:56.262 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5733. 2018-08-15 13:27:56.263 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5734. 2018-08-15 13:27:56.263 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5735. 2018-08-15 13:27:56.264 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5736. 2018-08-15 13:27:56.264 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5737. 2018-08-15 13:27:56.264 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5738. 2018-08-15 13:27:56.265 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5739. 2018-08-15 13:27:56.266 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5740. 2018-08-15 13:27:56.266 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5741. 2018-08-15 13:27:56.267 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5742. 2018-08-15 13:27:56.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5743. 2018-08-15 13:27:56.267 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5744. 2018-08-15 13:27:56.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5745. 2018-08-15 13:27:56.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5746. 2018-08-15 13:27:56.268 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5747. 2018-08-15 13:27:56.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5748. 2018-08-15 13:27:56.269 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5749. 2018-08-15 13:27:56.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5750. 2018-08-15 13:27:56.270 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5751. 2018-08-15 13:27:56.270 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  5752. 2018-08-15 13:27:56.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  5753. 2018-08-15 13:27:56.271 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5754. 2018-08-15 13:27:56.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5755. 2018-08-15 13:27:56.272 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5756. 2018-08-15 13:27:56.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  5757. 2018-08-15 13:27:56.276 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  5758. 2018-08-15 13:27:56.284 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5759. 2018-08-15 13:27:56.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5760. 2018-08-15 13:27:56.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5761. 2018-08-15 13:27:56.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5762. 2018-08-15 13:27:56.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5763. 2018-08-15 13:27:56.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5764. 2018-08-15 13:27:56.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5765. 2018-08-15 13:27:56.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5766. 2018-08-15 13:27:56.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5767. 2018-08-15 13:27:56.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5768. 2018-08-15 13:27:56.298 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5769. 2018-08-15 13:27:56.299 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5770. 2018-08-15 13:27:56.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5771. 2018-08-15 13:27:56.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5772. 2018-08-15 13:27:56.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  5773. 2018-08-15 13:27:56.367 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5774. 2018-08-15 13:27:56.369 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5775. 2018-08-15 13:27:56.369 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5776. 2018-08-15 13:27:56.371 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5777. 2018-08-15 13:27:56.372 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5778. 2018-08-15 13:27:56.372 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5779. 2018-08-15 13:27:56.380 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5780. 2018-08-15 13:27:56.380 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5781. 2018-08-15 13:27:56.380 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5782. 2018-08-15 13:27:56.382 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5783. 2018-08-15 13:27:56.386 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5784. 2018-08-15 13:27:56.387 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5785. 2018-08-15 13:27:56.391 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  5786. 2018-08-15 13:27:56.391 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  5787. 2018-08-15 13:27:56.393 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5788. 2018-08-15 13:27:56.548 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5789. 2018-08-15 13:27:56.550 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5790. 2018-08-15 13:27:56.551 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5791. 2018-08-15 13:27:56.553 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5792. 2018-08-15 13:27:56.553 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5793. 2018-08-15 13:27:56.554 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5794. 2018-08-15 13:27:56.560 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5795. 2018-08-15 13:27:56.561 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5796. 2018-08-15 13:27:56.561 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5797. 2018-08-15 13:27:56.562 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5798. 2018-08-15 13:27:56.566 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5799. 2018-08-15 13:27:56.567 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5800. 2018-08-15 13:27:57.927 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5801. 2018-08-15 13:27:57.928 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5802. 2018-08-15 13:27:57.929 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5803. 2018-08-15 13:27:57.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5804. 2018-08-15 13:27:57.932 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5805. 2018-08-15 13:27:57.932 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5806. 2018-08-15 13:27:57.938 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5807. 2018-08-15 13:27:57.939 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5808. 2018-08-15 13:27:57.939 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5809. 2018-08-15 13:27:57.940 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5810. 2018-08-15 13:27:57.942 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5811. 2018-08-15 13:27:57.943 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5812. 2018-08-15 13:27:57.953 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5813. 2018-08-15 13:27:57.954 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5814. 2018-08-15 13:27:57.955 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5815. 2018-08-15 13:27:57.956 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5816. 2018-08-15 13:27:57.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5817. 2018-08-15 13:27:57.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5818. 2018-08-15 13:27:57.958 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5819. 2018-08-15 13:27:57.958 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5820. 2018-08-15 13:27:57.959 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5821. 2018-08-15 13:27:57.959 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5822. 2018-08-15 13:27:57.960 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5823. 2018-08-15 13:27:57.960 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5824. 2018-08-15 13:27:57.966 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5825. 2018-08-15 13:27:57.967 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5826. 2018-08-15 13:27:57.967 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5827. 2018-08-15 13:27:57.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5828. 2018-08-15 13:27:57.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5829. 2018-08-15 13:27:57.969 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5830. 2018-08-15 13:27:57.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5831. 2018-08-15 13:27:57.971 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5832. 2018-08-15 13:27:57.972 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5833. 2018-08-15 13:27:57.972 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5834. 2018-08-15 13:27:57.973 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5835. 2018-08-15 13:27:57.974 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5836. 2018-08-15 13:27:57.982 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-122] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  5837. 2018-08-15 13:27:57.982 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-122] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  5838. 2018-08-15 13:27:57.991 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-122] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  5839. 2018-08-15 13:28:25.069 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5840. 2018-08-15 13:28:25.070 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5841. 2018-08-15 13:28:25.072 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5842. 2018-08-15 13:28:25.072 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5843. 2018-08-15 13:28:25.072 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5844. 2018-08-15 13:28:25.073 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5845. 2018-08-15 13:28:25.073 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5846. 2018-08-15 13:28:25.074 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5847. 2018-08-15 13:28:25.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5848. 2018-08-15 13:28:25.074 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5849. 2018-08-15 13:28:25.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5850. 2018-08-15 13:28:25.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5851. 2018-08-15 13:28:25.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5852. 2018-08-15 13:28:25.076 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5853. 2018-08-15 13:28:25.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5854. 2018-08-15 13:28:25.077 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5855. 2018-08-15 13:28:25.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5856. 2018-08-15 13:28:25.077 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5857. 2018-08-15 13:28:25.077 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5858. 2018-08-15 13:28:25.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5859. 2018-08-15 13:28:25.078 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5860. 2018-08-15 13:28:25.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5861. 2018-08-15 13:28:25.078 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5862. 2018-08-15 13:28:25.078 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5863. 2018-08-15 13:28:25.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5864. 2018-08-15 13:28:25.079 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5865. 2018-08-15 13:28:25.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5866. 2018-08-15 13:28:25.079 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5867. 2018-08-15 13:28:25.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5868. 2018-08-15 13:28:25.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5869. 2018-08-15 13:28:25.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5870. 2018-08-15 13:28:25.088 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5871. 2018-08-15 13:28:25.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5872. 2018-08-15 13:28:25.088 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5873. 2018-08-15 13:28:25.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5874. 2018-08-15 13:28:25.089 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5875. 2018-08-15 13:28:25.089 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5876. 2018-08-15 13:28:25.090 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5877. 2018-08-15 13:28:25.089 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5878. 2018-08-15 13:28:25.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5879. 2018-08-15 13:28:25.090 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5880. 2018-08-15 13:28:25.090 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5881. 2018-08-15 13:28:25.090 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5882. 2018-08-15 13:28:25.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5883. 2018-08-15 13:28:25.091 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5884. 2018-08-15 13:28:25.092 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5885. 2018-08-15 13:28:25.092 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5886. 2018-08-15 13:28:25.092 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5887. 2018-08-15 13:28:25.093 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5888. 2018-08-15 13:28:25.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5889. 2018-08-15 13:28:25.094 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5890. 2018-08-15 13:28:25.095 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5891. 2018-08-15 13:28:25.095 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5892. 2018-08-15 13:28:25.095 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5893. 2018-08-15 13:28:25.096 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5894. 2018-08-15 13:28:25.096 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5895. 2018-08-15 13:28:25.096 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5896. 2018-08-15 13:28:25.096 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5897. 2018-08-15 13:28:25.097 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5898. 2018-08-15 13:28:25.097 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5899. 2018-08-15 13:28:25.098 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  5900. 2018-08-15 13:28:25.099 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  5901. 2018-08-15 13:28:25.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  5902. 2018-08-15 13:28:25.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  5903. 2018-08-15 13:28:25.103 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  5904. 2018-08-15 13:28:25.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  5905. 2018-08-15 13:28:25.104 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  5906. 2018-08-15 13:28:25.105 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  5907. 2018-08-15 13:28:25.105 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  5908. 2018-08-15 13:28:25.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  5909. 2018-08-15 13:28:25.108 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  5910. 2018-08-15 13:28:25.108 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  5911. 2018-08-15 13:28:25.109 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5912. 2018-08-15 13:28:25.109 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5913. 2018-08-15 13:28:25.116 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5914. 2018-08-15 13:28:25.164 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5915. 2018-08-15 13:28:25.164 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5916. 2018-08-15 13:28:25.166 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5917. 2018-08-15 13:28:25.167 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5918. 2018-08-15 13:28:25.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5919. 2018-08-15 13:28:25.168 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5920. 2018-08-15 13:28:25.168 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5921. 2018-08-15 13:28:25.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5922. 2018-08-15 13:28:25.169 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5923. 2018-08-15 13:28:25.169 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5924. 2018-08-15 13:28:25.170 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5925. 2018-08-15 13:28:25.171 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5926. 2018-08-15 13:28:25.171 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5927. 2018-08-15 13:28:25.171 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5928. 2018-08-15 13:28:25.171 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5929. 2018-08-15 13:28:25.171 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5930. 2018-08-15 13:28:25.172 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5931. 2018-08-15 13:28:25.172 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5932. 2018-08-15 13:28:25.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5933. 2018-08-15 13:28:25.173 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5934. 2018-08-15 13:28:25.173 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5935. 2018-08-15 13:28:25.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5936. 2018-08-15 13:28:25.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5937. 2018-08-15 13:28:25.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5938. 2018-08-15 13:28:25.178 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5939. 2018-08-15 13:28:25.179 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5940. 2018-08-15 13:28:25.179 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5941. 2018-08-15 13:28:25.180 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5942. 2018-08-15 13:28:25.180 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5943. 2018-08-15 13:28:25.180 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5944. 2018-08-15 13:28:25.181 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5945. 2018-08-15 13:28:25.181 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5946. 2018-08-15 13:28:25.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5947. 2018-08-15 13:28:25.181 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5948. 2018-08-15 13:28:25.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5949. 2018-08-15 13:28:25.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5950. 2018-08-15 13:28:25.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5951. 2018-08-15 13:28:25.182 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5952. 2018-08-15 13:28:25.183 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5953. 2018-08-15 13:28:25.183 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5954. 2018-08-15 13:28:25.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5955. 2018-08-15 13:28:25.184 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5956. 2018-08-15 13:28:25.185 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5957. 2018-08-15 13:28:25.186 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5958. 2018-08-15 13:28:25.186 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5959. 2018-08-15 13:28:25.187 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5960. 2018-08-15 13:28:25.187 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  5961. 2018-08-15 13:28:25.187 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5962. 2018-08-15 13:28:25.188 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  5963. 2018-08-15 13:28:25.188 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5964. 2018-08-15 13:28:25.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  5965. 2018-08-15 13:28:25.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  5966. 2018-08-15 13:28:25.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  5967. 2018-08-15 13:28:25.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  5968. 2018-08-15 13:28:25.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  5969. 2018-08-15 13:28:25.190 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  5970. 2018-08-15 13:28:25.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  5971. 2018-08-15 13:28:25.191 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  5972. 2018-08-15 13:28:25.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  5973. 2018-08-15 13:28:25.194 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  5974. 2018-08-15 13:28:25.205 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5975. 2018-08-15 13:28:25.207 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5976. 2018-08-15 13:28:25.207 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5977. 2018-08-15 13:28:25.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5978. 2018-08-15 13:28:25.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5979. 2018-08-15 13:28:25.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5980. 2018-08-15 13:28:25.217 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5981. 2018-08-15 13:28:25.218 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5982. 2018-08-15 13:28:25.219 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5983. 2018-08-15 13:28:25.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5984. 2018-08-15 13:28:25.223 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  5985. 2018-08-15 13:28:25.224 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5986. 2018-08-15 13:28:25.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  5987. 2018-08-15 13:28:25.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  5988. 2018-08-15 13:28:25.259 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  5989. 2018-08-15 13:28:25.297 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  5990. 2018-08-15 13:28:25.299 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  5991. 2018-08-15 13:28:25.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  5992. 2018-08-15 13:28:25.302 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  5993. 2018-08-15 13:28:25.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  5994. 2018-08-15 13:28:25.303 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  5995. 2018-08-15 13:28:25.309 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  5996. 2018-08-15 13:28:25.309 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  5997. 2018-08-15 13:28:25.309 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  5998. 2018-08-15 13:28:25.311 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  5999. 2018-08-15 13:28:25.312 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6000. 2018-08-15 13:28:25.313 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6001. 2018-08-15 13:28:25.317 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6002. 2018-08-15 13:28:25.317 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6003. 2018-08-15 13:28:25.319 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6004. 2018-08-15 13:28:25.465 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6005. 2018-08-15 13:28:25.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6006. 2018-08-15 13:28:25.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6007. 2018-08-15 13:28:25.470 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6008. 2018-08-15 13:28:25.471 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6009. 2018-08-15 13:28:25.472 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6010. 2018-08-15 13:28:25.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6011. 2018-08-15 13:28:25.478 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6012. 2018-08-15 13:28:25.478 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6013. 2018-08-15 13:28:25.479 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6014. 2018-08-15 13:28:25.481 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6015. 2018-08-15 13:28:25.482 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6016. 2018-08-15 13:28:36.325 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6017. 2018-08-15 13:28:36.326 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6018. 2018-08-15 13:28:36.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6019. 2018-08-15 13:28:36.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6020. 2018-08-15 13:28:36.329 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6021. 2018-08-15 13:28:36.329 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6022. 2018-08-15 13:28:36.330 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6023. 2018-08-15 13:28:36.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6024. 2018-08-15 13:28:36.331 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6025. 2018-08-15 13:28:36.331 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6026. 2018-08-15 13:28:36.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6027. 2018-08-15 13:28:36.332 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6028. 2018-08-15 13:28:36.332 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6029. 2018-08-15 13:28:36.332 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6030. 2018-08-15 13:28:36.333 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6031. 2018-08-15 13:28:36.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6032. 2018-08-15 13:28:36.334 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6033. 2018-08-15 13:28:36.334 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6034. 2018-08-15 13:28:36.334 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6035. 2018-08-15 13:28:36.334 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6036. 2018-08-15 13:28:36.335 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6037. 2018-08-15 13:28:36.335 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6038. 2018-08-15 13:28:36.335 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6039. 2018-08-15 13:28:36.336 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6040. 2018-08-15 13:28:36.337 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6041. 2018-08-15 13:28:36.338 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6042. 2018-08-15 13:28:36.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6043. 2018-08-15 13:28:36.339 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6044. 2018-08-15 13:28:36.340 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6045. 2018-08-15 13:28:36.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6046. 2018-08-15 13:28:36.342 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6047. 2018-08-15 13:28:36.343 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6048. 2018-08-15 13:28:36.343 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6049. 2018-08-15 13:28:36.344 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6050. 2018-08-15 13:28:36.344 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6051. 2018-08-15 13:28:36.345 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6052. 2018-08-15 13:28:36.345 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6053. 2018-08-15 13:28:36.345 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6054. 2018-08-15 13:28:36.346 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6055. 2018-08-15 13:28:36.347 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6056. 2018-08-15 13:28:36.347 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6057. 2018-08-15 13:28:36.347 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6058. 2018-08-15 13:28:36.348 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6059. 2018-08-15 13:28:36.348 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6060. 2018-08-15 13:28:36.349 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6061. 2018-08-15 13:28:36.349 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6062. 2018-08-15 13:28:36.350 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6063. 2018-08-15 13:28:36.350 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6064. 2018-08-15 13:28:36.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6065. 2018-08-15 13:28:36.350 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6066. 2018-08-15 13:28:36.350 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6067. 2018-08-15 13:28:36.351 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6068. 2018-08-15 13:28:36.352 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6069. 2018-08-15 13:28:36.352 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6070. 2018-08-15 13:28:36.352 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6071. 2018-08-15 13:28:36.352 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6072. 2018-08-15 13:28:36.353 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6073. 2018-08-15 13:28:36.354 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6074. 2018-08-15 13:28:36.354 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6075. 2018-08-15 13:28:36.355 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6076. 2018-08-15 13:28:36.355 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6077. 2018-08-15 13:28:36.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6078. 2018-08-15 13:28:36.356 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6079. 2018-08-15 13:28:36.360 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6080. 2018-08-15 13:28:36.361 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6081. 2018-08-15 13:28:36.364 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6082. 2018-08-15 13:28:36.365 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  6083. 2018-08-15 13:28:36.365 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6084. 2018-08-15 13:28:36.366 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  6085. 2018-08-15 13:28:36.366 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  6086. 2018-08-15 13:28:36.367 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6087. 2018-08-15 13:28:36.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  6088. 2018-08-15 13:28:36.370 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6089. 2018-08-15 13:28:36.371 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6090. 2018-08-15 13:28:36.377 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6091. 2018-08-15 13:28:36.458 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6092. 2018-08-15 13:28:36.459 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6093. 2018-08-15 13:28:36.460 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6094. 2018-08-15 13:28:36.460 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6095. 2018-08-15 13:28:36.461 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6096. 2018-08-15 13:28:36.461 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6097. 2018-08-15 13:28:36.461 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6098. 2018-08-15 13:28:36.461 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6099. 2018-08-15 13:28:36.462 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6100. 2018-08-15 13:28:36.463 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6101. 2018-08-15 13:28:36.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6102. 2018-08-15 13:28:36.463 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6103. 2018-08-15 13:28:36.463 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6104. 2018-08-15 13:28:36.464 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6105. 2018-08-15 13:28:36.464 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6106. 2018-08-15 13:28:36.464 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6107. 2018-08-15 13:28:36.464 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6108. 2018-08-15 13:28:36.464 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6109. 2018-08-15 13:28:36.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6110. 2018-08-15 13:28:36.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6111. 2018-08-15 13:28:36.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6112. 2018-08-15 13:28:36.466 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6113. 2018-08-15 13:28:36.466 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6114. 2018-08-15 13:28:36.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6115. 2018-08-15 13:28:36.472 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6116. 2018-08-15 13:28:36.473 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6117. 2018-08-15 13:28:36.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6118. 2018-08-15 13:28:36.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6119. 2018-08-15 13:28:36.473 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6120. 2018-08-15 13:28:36.474 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6121. 2018-08-15 13:28:36.474 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6122. 2018-08-15 13:28:36.475 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6123. 2018-08-15 13:28:36.475 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6124. 2018-08-15 13:28:36.475 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6125. 2018-08-15 13:28:36.475 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6126. 2018-08-15 13:28:36.475 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6127. 2018-08-15 13:28:36.476 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6128. 2018-08-15 13:28:36.476 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6129. 2018-08-15 13:28:36.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6130. 2018-08-15 13:28:36.477 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6131. 2018-08-15 13:28:36.477 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6132. 2018-08-15 13:28:36.477 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6133. 2018-08-15 13:28:36.478 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6134. 2018-08-15 13:28:36.478 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6135. 2018-08-15 13:28:36.478 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6136. 2018-08-15 13:28:36.479 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6137. 2018-08-15 13:28:36.479 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6138. 2018-08-15 13:28:36.479 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6139. 2018-08-15 13:28:36.480 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6140. 2018-08-15 13:28:36.480 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6141. 2018-08-15 13:28:36.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6142. 2018-08-15 13:28:36.480 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6143. 2018-08-15 13:28:36.480 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  6144. 2018-08-15 13:28:36.481 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  6145. 2018-08-15 13:28:36.481 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6146. 2018-08-15 13:28:36.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6147. 2018-08-15 13:28:36.482 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6148. 2018-08-15 13:28:36.483 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6149. 2018-08-15 13:28:36.484 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  6150. 2018-08-15 13:28:36.485 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  6151. 2018-08-15 13:28:36.501 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6152. 2018-08-15 13:28:36.503 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6153. 2018-08-15 13:28:36.503 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6154. 2018-08-15 13:28:36.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6155. 2018-08-15 13:28:36.507 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6156. 2018-08-15 13:28:36.507 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6157. 2018-08-15 13:28:36.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6158. 2018-08-15 13:28:36.514 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6159. 2018-08-15 13:28:36.514 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6160. 2018-08-15 13:28:36.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6161. 2018-08-15 13:28:36.517 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6162. 2018-08-15 13:28:36.518 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6163. 2018-08-15 13:28:36.522 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6164. 2018-08-15 13:28:36.522 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6165. 2018-08-15 13:28:36.551 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  6166. 2018-08-15 13:28:36.583 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6167. 2018-08-15 13:28:36.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6168. 2018-08-15 13:28:36.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6169. 2018-08-15 13:28:36.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6170. 2018-08-15 13:28:36.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6171. 2018-08-15 13:28:36.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6172. 2018-08-15 13:28:36.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6173. 2018-08-15 13:28:36.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6174. 2018-08-15 13:28:36.595 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6175. 2018-08-15 13:28:36.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6176. 2018-08-15 13:28:36.598 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6177. 2018-08-15 13:28:36.599 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6178. 2018-08-15 13:28:36.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6179. 2018-08-15 13:28:36.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6180. 2018-08-15 13:28:36.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6181. 2018-08-15 13:28:36.746 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6182. 2018-08-15 13:28:36.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6183. 2018-08-15 13:28:36.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6184. 2018-08-15 13:28:36.751 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6185. 2018-08-15 13:28:36.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6186. 2018-08-15 13:28:36.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6187. 2018-08-15 13:28:36.758 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6188. 2018-08-15 13:28:36.759 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6189. 2018-08-15 13:28:36.760 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6190. 2018-08-15 13:28:36.761 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6191. 2018-08-15 13:28:36.764 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6192. 2018-08-15 13:28:36.765 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6193. 2018-08-15 13:28:37.966 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6194. 2018-08-15 13:28:37.967 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6195. 2018-08-15 13:28:37.968 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6196. 2018-08-15 13:28:37.970 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6197. 2018-08-15 13:28:37.971 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6198. 2018-08-15 13:28:37.971 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6199. 2018-08-15 13:28:37.977 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6200. 2018-08-15 13:28:37.978 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6201. 2018-08-15 13:28:37.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6202. 2018-08-15 13:28:37.980 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6203. 2018-08-15 13:28:37.982 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6204. 2018-08-15 13:28:37.983 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6205. 2018-08-15 13:28:37.994 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6206. 2018-08-15 13:28:37.995 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6207. 2018-08-15 13:28:37.997 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6208. 2018-08-15 13:28:37.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6209. 2018-08-15 13:28:37.997 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6210. 2018-08-15 13:28:37.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6211. 2018-08-15 13:28:38.000 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6212. 2018-08-15 13:28:38.000 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6213. 2018-08-15 13:28:38.000 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6214. 2018-08-15 13:28:38.001 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6215. 2018-08-15 13:28:38.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6216. 2018-08-15 13:28:38.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6217. 2018-08-15 13:28:38.008 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6218. 2018-08-15 13:28:38.008 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6219. 2018-08-15 13:28:38.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6220. 2018-08-15 13:28:38.009 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6221. 2018-08-15 13:28:38.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6222. 2018-08-15 13:28:38.010 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6223. 2018-08-15 13:28:38.011 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6224. 2018-08-15 13:28:38.011 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6225. 2018-08-15 13:28:38.013 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6226. 2018-08-15 13:28:38.013 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6227. 2018-08-15 13:28:38.014 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6228. 2018-08-15 13:28:38.014 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6229. 2018-08-15 13:28:38.023 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-140] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  6230. 2018-08-15 13:28:38.023 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-140] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  6231. 2018-08-15 13:28:38.030 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-140] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  6232. 2018-08-15 13:29:26.035 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6233. 2018-08-15 13:29:26.037 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6234. 2018-08-15 13:29:26.038 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6235. 2018-08-15 13:29:26.039 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6236. 2018-08-15 13:29:26.039 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6237. 2018-08-15 13:29:26.040 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6238. 2018-08-15 13:29:26.040 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6239. 2018-08-15 13:29:26.040 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6240. 2018-08-15 13:29:26.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6241. 2018-08-15 13:29:26.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6242. 2018-08-15 13:29:26.042 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6243. 2018-08-15 13:29:26.042 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6244. 2018-08-15 13:29:26.043 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6245. 2018-08-15 13:29:26.043 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6246. 2018-08-15 13:29:26.043 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6247. 2018-08-15 13:29:26.043 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6248. 2018-08-15 13:29:26.043 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6249. 2018-08-15 13:29:26.043 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6250. 2018-08-15 13:29:26.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6251. 2018-08-15 13:29:26.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6252. 2018-08-15 13:29:26.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6253. 2018-08-15 13:29:26.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6254. 2018-08-15 13:29:26.046 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6255. 2018-08-15 13:29:26.046 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6256. 2018-08-15 13:29:26.047 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6257. 2018-08-15 13:29:26.047 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6258. 2018-08-15 13:29:26.048 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6259. 2018-08-15 13:29:26.050 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6260. 2018-08-15 13:29:26.051 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6261. 2018-08-15 13:29:26.051 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6262. 2018-08-15 13:29:26.052 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6263. 2018-08-15 13:29:26.053 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6264. 2018-08-15 13:29:26.054 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6265. 2018-08-15 13:29:26.056 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6266. 2018-08-15 13:29:26.056 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6267. 2018-08-15 13:29:26.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6268. 2018-08-15 13:29:26.057 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6269. 2018-08-15 13:29:26.057 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6270. 2018-08-15 13:29:26.057 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6271. 2018-08-15 13:29:26.058 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6272. 2018-08-15 13:29:26.058 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6273. 2018-08-15 13:29:26.059 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6274. 2018-08-15 13:29:26.058 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6275. 2018-08-15 13:29:26.059 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6276. 2018-08-15 13:29:26.059 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6277. 2018-08-15 13:29:26.059 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6278. 2018-08-15 13:29:26.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6279. 2018-08-15 13:29:26.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6280. 2018-08-15 13:29:26.060 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6281. 2018-08-15 13:29:26.061 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6282. 2018-08-15 13:29:26.061 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6283. 2018-08-15 13:29:26.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6284. 2018-08-15 13:29:26.063 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6285. 2018-08-15 13:29:26.064 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6286. 2018-08-15 13:29:26.064 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6287. 2018-08-15 13:29:26.065 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6288. 2018-08-15 13:29:26.065 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6289. 2018-08-15 13:29:26.066 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6290. 2018-08-15 13:29:26.066 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6291. 2018-08-15 13:29:26.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6292. 2018-08-15 13:29:26.067 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6293. 2018-08-15 13:29:26.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6294. 2018-08-15 13:29:26.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6295. 2018-08-15 13:29:26.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6296. 2018-08-15 13:29:26.071 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6297. 2018-08-15 13:29:26.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6298. 2018-08-15 13:29:26.072 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6299. 2018-08-15 13:29:26.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  6300. 2018-08-15 13:29:26.073 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  6301. 2018-08-15 13:29:26.074 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6302. 2018-08-15 13:29:26.074 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  6303. 2018-08-15 13:29:26.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  6304. 2018-08-15 13:29:26.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6305. 2018-08-15 13:29:26.078 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6306. 2018-08-15 13:29:26.084 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6307. 2018-08-15 13:29:26.152 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6308. 2018-08-15 13:29:26.153 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6309. 2018-08-15 13:29:26.154 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6310. 2018-08-15 13:29:26.155 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6311. 2018-08-15 13:29:26.155 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6312. 2018-08-15 13:29:26.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6313. 2018-08-15 13:29:26.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6314. 2018-08-15 13:29:26.156 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6315. 2018-08-15 13:29:26.157 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6316. 2018-08-15 13:29:26.157 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6317. 2018-08-15 13:29:26.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6318. 2018-08-15 13:29:26.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6319. 2018-08-15 13:29:26.158 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6320. 2018-08-15 13:29:26.158 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6321. 2018-08-15 13:29:26.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6322. 2018-08-15 13:29:26.159 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6323. 2018-08-15 13:29:26.159 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6324. 2018-08-15 13:29:26.159 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6325. 2018-08-15 13:29:26.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6326. 2018-08-15 13:29:26.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6327. 2018-08-15 13:29:26.161 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6328. 2018-08-15 13:29:26.162 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6329. 2018-08-15 13:29:26.163 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6330. 2018-08-15 13:29:26.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6331. 2018-08-15 13:29:26.167 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6332. 2018-08-15 13:29:26.168 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6333. 2018-08-15 13:29:26.168 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6334. 2018-08-15 13:29:26.168 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6335. 2018-08-15 13:29:26.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6336. 2018-08-15 13:29:26.169 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6337. 2018-08-15 13:29:26.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6338. 2018-08-15 13:29:26.169 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6339. 2018-08-15 13:29:26.170 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6340. 2018-08-15 13:29:26.170 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6341. 2018-08-15 13:29:26.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6342. 2018-08-15 13:29:26.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6343. 2018-08-15 13:29:26.171 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6344. 2018-08-15 13:29:26.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6345. 2018-08-15 13:29:26.171 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6346. 2018-08-15 13:29:26.172 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6347. 2018-08-15 13:29:26.173 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6348. 2018-08-15 13:29:26.173 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6349. 2018-08-15 13:29:26.173 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6350. 2018-08-15 13:29:26.174 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6351. 2018-08-15 13:29:26.174 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6352. 2018-08-15 13:29:26.174 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6353. 2018-08-15 13:29:26.175 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6354. 2018-08-15 13:29:26.175 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6355. 2018-08-15 13:29:26.175 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6356. 2018-08-15 13:29:26.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  6357. 2018-08-15 13:29:26.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6358. 2018-08-15 13:29:26.176 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6359. 2018-08-15 13:29:26.176 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  6360. 2018-08-15 13:29:26.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6361. 2018-08-15 13:29:26.178 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6362. 2018-08-15 13:29:26.178 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6363. 2018-08-15 13:29:26.178 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6364. 2018-08-15 13:29:26.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  6365. 2018-08-15 13:29:26.180 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6366. 2018-08-15 13:29:26.182 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  6367. 2018-08-15 13:29:26.189 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6368. 2018-08-15 13:29:26.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6369. 2018-08-15 13:29:26.192 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6370. 2018-08-15 13:29:26.194 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6371. 2018-08-15 13:29:26.194 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6372. 2018-08-15 13:29:26.195 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6373. 2018-08-15 13:29:26.200 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6374. 2018-08-15 13:29:26.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6375. 2018-08-15 13:29:26.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6376. 2018-08-15 13:29:26.202 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6377. 2018-08-15 13:29:26.204 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6378. 2018-08-15 13:29:26.205 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6379. 2018-08-15 13:29:26.210 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6380. 2018-08-15 13:29:26.210 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6381. 2018-08-15 13:29:26.242 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  6382. 2018-08-15 13:29:26.279 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6383. 2018-08-15 13:29:26.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6384. 2018-08-15 13:29:26.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6385. 2018-08-15 13:29:26.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6386. 2018-08-15 13:29:26.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6387. 2018-08-15 13:29:26.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6388. 2018-08-15 13:29:26.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6389. 2018-08-15 13:29:26.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6390. 2018-08-15 13:29:26.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6391. 2018-08-15 13:29:26.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6392. 2018-08-15 13:29:26.295 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6393. 2018-08-15 13:29:26.296 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6394. 2018-08-15 13:29:26.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6395. 2018-08-15 13:29:26.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6396. 2018-08-15 13:29:26.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6397. 2018-08-15 13:29:26.455 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6398. 2018-08-15 13:29:26.458 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6399. 2018-08-15 13:29:26.458 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6400. 2018-08-15 13:29:26.460 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6401. 2018-08-15 13:29:26.461 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6402. 2018-08-15 13:29:26.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6403. 2018-08-15 13:29:26.468 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6404. 2018-08-15 13:29:26.469 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6405. 2018-08-15 13:29:26.469 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6406. 2018-08-15 13:29:26.471 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6407. 2018-08-15 13:29:26.473 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6408. 2018-08-15 13:29:26.474 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6409. 2018-08-15 13:29:50.930 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6410. 2018-08-15 13:29:50.931 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6411. 2018-08-15 13:29:50.934 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6412. 2018-08-15 13:29:50.934 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6413. 2018-08-15 13:29:50.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6414. 2018-08-15 13:29:50.935 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6415. 2018-08-15 13:29:50.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6416. 2018-08-15 13:29:50.936 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6417. 2018-08-15 13:29:50.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6418. 2018-08-15 13:29:50.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6419. 2018-08-15 13:29:50.938 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6420. 2018-08-15 13:29:50.938 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6421. 2018-08-15 13:29:50.938 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6422. 2018-08-15 13:29:50.939 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6423. 2018-08-15 13:29:50.939 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6424. 2018-08-15 13:29:50.939 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6425. 2018-08-15 13:29:50.939 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6426. 2018-08-15 13:29:50.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6427. 2018-08-15 13:29:50.939 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6428. 2018-08-15 13:29:50.940 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6429. 2018-08-15 13:29:50.940 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6430. 2018-08-15 13:29:50.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6431. 2018-08-15 13:29:50.941 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6432. 2018-08-15 13:29:50.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6433. 2018-08-15 13:29:50.942 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6434. 2018-08-15 13:29:50.943 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6435. 2018-08-15 13:29:50.943 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6436. 2018-08-15 13:29:50.944 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6437. 2018-08-15 13:29:50.945 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6438. 2018-08-15 13:29:50.946 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6439. 2018-08-15 13:29:50.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6440. 2018-08-15 13:29:50.950 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6441. 2018-08-15 13:29:50.950 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6442. 2018-08-15 13:29:50.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6443. 2018-08-15 13:29:50.951 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6444. 2018-08-15 13:29:50.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6445. 2018-08-15 13:29:50.951 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6446. 2018-08-15 13:29:50.951 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6447. 2018-08-15 13:29:50.951 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6448. 2018-08-15 13:29:50.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6449. 2018-08-15 13:29:50.952 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6450. 2018-08-15 13:29:50.952 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6451. 2018-08-15 13:29:50.952 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6452. 2018-08-15 13:29:50.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6453. 2018-08-15 13:29:50.953 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6454. 2018-08-15 13:29:50.953 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6455. 2018-08-15 13:29:50.954 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6456. 2018-08-15 13:29:50.954 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6457. 2018-08-15 13:29:50.955 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6458. 2018-08-15 13:29:50.955 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6459. 2018-08-15 13:29:50.956 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6460. 2018-08-15 13:29:50.956 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6461. 2018-08-15 13:29:50.956 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6462. 2018-08-15 13:29:50.957 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6463. 2018-08-15 13:29:50.957 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6464. 2018-08-15 13:29:50.957 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6465. 2018-08-15 13:29:50.957 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6466. 2018-08-15 13:29:50.958 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6467. 2018-08-15 13:29:50.958 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6468. 2018-08-15 13:29:50.959 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6469. 2018-08-15 13:29:50.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6470. 2018-08-15 13:29:50.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6471. 2018-08-15 13:29:50.961 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6472. 2018-08-15 13:29:50.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6473. 2018-08-15 13:29:50.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6474. 2018-08-15 13:29:50.966 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  6475. 2018-08-15 13:29:50.967 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6476. 2018-08-15 13:29:50.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  6477. 2018-08-15 13:29:50.967 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  6478. 2018-08-15 13:29:50.967 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6479. 2018-08-15 13:29:50.970 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6480. 2018-08-15 13:29:50.970 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  6481. 2018-08-15 13:29:50.972 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6482. 2018-08-15 13:29:50.972 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6483. 2018-08-15 13:29:50.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6484. 2018-08-15 13:29:51.105 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6485. 2018-08-15 13:29:51.105 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6486. 2018-08-15 13:29:51.107 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6487. 2018-08-15 13:29:51.107 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6488. 2018-08-15 13:29:51.108 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6489. 2018-08-15 13:29:51.108 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6490. 2018-08-15 13:29:51.108 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6491. 2018-08-15 13:29:51.109 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6492. 2018-08-15 13:29:51.109 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6493. 2018-08-15 13:29:51.109 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6494. 2018-08-15 13:29:51.110 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6495. 2018-08-15 13:29:51.111 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6496. 2018-08-15 13:29:51.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6497. 2018-08-15 13:29:51.111 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6498. 2018-08-15 13:29:51.111 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6499. 2018-08-15 13:29:51.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6500. 2018-08-15 13:29:51.112 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6501. 2018-08-15 13:29:51.112 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6502. 2018-08-15 13:29:51.112 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6503. 2018-08-15 13:29:51.112 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6504. 2018-08-15 13:29:51.113 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6505. 2018-08-15 13:29:51.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6506. 2018-08-15 13:29:51.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6507. 2018-08-15 13:29:51.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6508. 2018-08-15 13:29:51.119 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6509. 2018-08-15 13:29:51.120 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6510. 2018-08-15 13:29:51.120 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6511. 2018-08-15 13:29:51.121 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6512. 2018-08-15 13:29:51.121 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6513. 2018-08-15 13:29:51.121 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6514. 2018-08-15 13:29:51.121 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6515. 2018-08-15 13:29:51.122 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6516. 2018-08-15 13:29:51.122 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6517. 2018-08-15 13:29:51.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6518. 2018-08-15 13:29:51.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6519. 2018-08-15 13:29:51.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6520. 2018-08-15 13:29:51.123 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6521. 2018-08-15 13:29:51.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6522. 2018-08-15 13:29:51.124 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6523. 2018-08-15 13:29:51.125 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6524. 2018-08-15 13:29:51.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6525. 2018-08-15 13:29:51.125 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6526. 2018-08-15 13:29:51.125 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6527. 2018-08-15 13:29:51.125 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6528. 2018-08-15 13:29:51.126 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6529. 2018-08-15 13:29:51.126 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6530. 2018-08-15 13:29:51.127 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6531. 2018-08-15 13:29:51.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6532. 2018-08-15 13:29:51.127 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6533. 2018-08-15 13:29:51.128 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6534. 2018-08-15 13:29:51.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  6535. 2018-08-15 13:29:51.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6536. 2018-08-15 13:29:51.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6537. 2018-08-15 13:29:51.129 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  6538. 2018-08-15 13:29:51.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6539. 2018-08-15 13:29:51.131 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6540. 2018-08-15 13:29:51.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6541. 2018-08-15 13:29:51.132 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6542. 2018-08-15 13:29:51.133 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  6543. 2018-08-15 13:29:51.135 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  6544. 2018-08-15 13:29:51.161 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6545. 2018-08-15 13:29:51.163 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6546. 2018-08-15 13:29:51.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6547. 2018-08-15 13:29:51.166 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6548. 2018-08-15 13:29:51.166 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6549. 2018-08-15 13:29:51.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6550. 2018-08-15 13:29:51.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6551. 2018-08-15 13:29:51.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6552. 2018-08-15 13:29:51.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6553. 2018-08-15 13:29:51.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6554. 2018-08-15 13:29:51.176 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6555. 2018-08-15 13:29:51.176 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6556. 2018-08-15 13:29:51.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6557. 2018-08-15 13:29:51.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6558. 2018-08-15 13:29:51.213 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  6559. 2018-08-15 13:29:51.247 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6560. 2018-08-15 13:29:51.249 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6561. 2018-08-15 13:29:51.250 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6562. 2018-08-15 13:29:51.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6563. 2018-08-15 13:29:51.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6564. 2018-08-15 13:29:51.253 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6565. 2018-08-15 13:29:51.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6566. 2018-08-15 13:29:51.259 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6567. 2018-08-15 13:29:51.259 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6568. 2018-08-15 13:29:51.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6569. 2018-08-15 13:29:51.263 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6570. 2018-08-15 13:29:51.264 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6571. 2018-08-15 13:29:51.267 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6572. 2018-08-15 13:29:51.268 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6573. 2018-08-15 13:29:51.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6574. 2018-08-15 13:29:51.418 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6575. 2018-08-15 13:29:51.420 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6576. 2018-08-15 13:29:51.420 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6577. 2018-08-15 13:29:51.423 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6578. 2018-08-15 13:29:51.423 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6579. 2018-08-15 13:29:51.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6580. 2018-08-15 13:29:51.431 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6581. 2018-08-15 13:29:51.432 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6582. 2018-08-15 13:29:51.432 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6583. 2018-08-15 13:29:51.433 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6584. 2018-08-15 13:29:51.437 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6585. 2018-08-15 13:29:51.438 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6586. 2018-08-15 13:29:53.374 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6587. 2018-08-15 13:29:53.376 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6588. 2018-08-15 13:29:53.376 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6589. 2018-08-15 13:29:53.379 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6590. 2018-08-15 13:29:53.379 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6591. 2018-08-15 13:29:53.379 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6592. 2018-08-15 13:29:53.387 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6593. 2018-08-15 13:29:53.388 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6594. 2018-08-15 13:29:53.388 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6595. 2018-08-15 13:29:53.390 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6596. 2018-08-15 13:29:53.392 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6597. 2018-08-15 13:29:53.393 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6598. 2018-08-15 13:29:53.400 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6599. 2018-08-15 13:29:53.401 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6600. 2018-08-15 13:29:53.402 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6601. 2018-08-15 13:29:53.403 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6602. 2018-08-15 13:29:53.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6603. 2018-08-15 13:29:53.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6604. 2018-08-15 13:29:53.404 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6605. 2018-08-15 13:29:53.405 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6606. 2018-08-15 13:29:53.406 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6607. 2018-08-15 13:29:53.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6608. 2018-08-15 13:29:53.406 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6609. 2018-08-15 13:29:53.407 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6610. 2018-08-15 13:29:53.413 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6611. 2018-08-15 13:29:53.413 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6612. 2018-08-15 13:29:53.414 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6613. 2018-08-15 13:29:53.415 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6614. 2018-08-15 13:29:53.415 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6615. 2018-08-15 13:29:53.416 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6616. 2018-08-15 13:29:53.416 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6617. 2018-08-15 13:29:53.418 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6618. 2018-08-15 13:29:53.419 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6619. 2018-08-15 13:29:53.420 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6620. 2018-08-15 13:29:53.421 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6621. 2018-08-15 13:29:53.422 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6622. 2018-08-15 13:29:53.434 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-157] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  6623. 2018-08-15 13:29:53.435 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-157] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  6624. 2018-08-15 13:29:53.442 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-157] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  6625. 2018-08-15 13:30:05.019 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6626. 2018-08-15 13:30:05.020 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6627. 2018-08-15 13:30:05.020 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6628. 2018-08-15 13:30:05.021 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6629. 2018-08-15 13:30:05.021 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6630. 2018-08-15 13:30:05.022 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6631. 2018-08-15 13:30:05.022 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6632. 2018-08-15 13:30:05.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6633. 2018-08-15 13:30:05.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6634. 2018-08-15 13:30:05.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6635. 2018-08-15 13:30:05.024 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6636. 2018-08-15 13:30:05.024 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6637. 2018-08-15 13:30:05.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6638. 2018-08-15 13:30:05.024 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6639. 2018-08-15 13:30:05.025 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6640. 2018-08-15 13:30:05.025 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6641. 2018-08-15 13:30:05.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6642. 2018-08-15 13:30:05.026 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6643. 2018-08-15 13:30:05.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6644. 2018-08-15 13:30:05.026 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6645. 2018-08-15 13:30:05.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6646. 2018-08-15 13:30:05.027 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6647. 2018-08-15 13:30:05.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6648. 2018-08-15 13:30:05.027 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6649. 2018-08-15 13:30:05.027 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6650. 2018-08-15 13:30:05.028 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6651. 2018-08-15 13:30:05.028 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6652. 2018-08-15 13:30:05.028 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6653. 2018-08-15 13:30:05.029 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6654. 2018-08-15 13:30:05.029 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6655. 2018-08-15 13:30:05.033 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6656. 2018-08-15 13:30:05.034 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6657. 2018-08-15 13:30:05.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6658. 2018-08-15 13:30:05.035 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6659. 2018-08-15 13:30:05.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6660. 2018-08-15 13:30:05.036 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6661. 2018-08-15 13:30:05.036 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6662. 2018-08-15 13:30:05.036 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6663. 2018-08-15 13:30:05.036 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6664. 2018-08-15 13:30:05.036 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6665. 2018-08-15 13:30:05.037 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6666. 2018-08-15 13:30:05.037 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6667. 2018-08-15 13:30:05.037 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6668. 2018-08-15 13:30:05.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6669. 2018-08-15 13:30:05.038 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6670. 2018-08-15 13:30:05.038 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6671. 2018-08-15 13:30:05.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6672. 2018-08-15 13:30:05.039 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6673. 2018-08-15 13:30:05.040 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6674. 2018-08-15 13:30:05.040 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6675. 2018-08-15 13:30:05.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6676. 2018-08-15 13:30:05.041 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6677. 2018-08-15 13:30:05.041 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6678. 2018-08-15 13:30:05.042 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6679. 2018-08-15 13:30:05.042 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6680. 2018-08-15 13:30:05.043 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6681. 2018-08-15 13:30:05.043 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6682. 2018-08-15 13:30:05.043 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6683. 2018-08-15 13:30:05.043 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6684. 2018-08-15 13:30:05.044 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6685. 2018-08-15 13:30:05.044 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6686. 2018-08-15 13:30:05.044 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6687. 2018-08-15 13:30:05.046 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6688. 2018-08-15 13:30:05.049 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6689. 2018-08-15 13:30:05.050 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6690. 2018-08-15 13:30:05.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  6691. 2018-08-15 13:30:05.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  6692. 2018-08-15 13:30:05.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6693. 2018-08-15 13:30:05.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6694. 2018-08-15 13:30:05.052 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  6695. 2018-08-15 13:30:05.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6696. 2018-08-15 13:30:05.054 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  6697. 2018-08-15 13:30:05.055 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6698. 2018-08-15 13:30:05.055 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6699. 2018-08-15 13:30:05.060 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6700. 2018-08-15 13:30:05.146 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6701. 2018-08-15 13:30:05.147 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6702. 2018-08-15 13:30:05.149 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6703. 2018-08-15 13:30:05.149 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6704. 2018-08-15 13:30:05.150 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6705. 2018-08-15 13:30:05.150 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6706. 2018-08-15 13:30:05.151 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6707. 2018-08-15 13:30:05.151 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6708. 2018-08-15 13:30:05.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6709. 2018-08-15 13:30:05.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6710. 2018-08-15 13:30:05.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6711. 2018-08-15 13:30:05.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6712. 2018-08-15 13:30:05.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6713. 2018-08-15 13:30:05.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6714. 2018-08-15 13:30:05.153 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6715. 2018-08-15 13:30:05.154 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6716. 2018-08-15 13:30:05.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6717. 2018-08-15 13:30:05.154 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6718. 2018-08-15 13:30:05.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6719. 2018-08-15 13:30:05.155 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6720. 2018-08-15 13:30:05.156 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6721. 2018-08-15 13:30:05.158 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6722. 2018-08-15 13:30:05.159 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6723. 2018-08-15 13:30:05.159 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6724. 2018-08-15 13:30:05.160 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6725. 2018-08-15 13:30:05.161 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6726. 2018-08-15 13:30:05.162 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6727. 2018-08-15 13:30:05.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6728. 2018-08-15 13:30:05.163 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6729. 2018-08-15 13:30:05.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6730. 2018-08-15 13:30:05.163 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6731. 2018-08-15 13:30:05.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6732. 2018-08-15 13:30:05.164 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6733. 2018-08-15 13:30:05.165 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6734. 2018-08-15 13:30:05.167 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6735. 2018-08-15 13:30:05.167 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6736. 2018-08-15 13:30:05.167 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6737. 2018-08-15 13:30:05.168 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6738. 2018-08-15 13:30:05.167 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6739. 2018-08-15 13:30:05.168 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6740. 2018-08-15 13:30:05.169 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6741. 2018-08-15 13:30:05.169 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6742. 2018-08-15 13:30:05.169 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6743. 2018-08-15 13:30:05.169 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6744. 2018-08-15 13:30:05.169 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6745. 2018-08-15 13:30:05.170 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6746. 2018-08-15 13:30:05.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6747. 2018-08-15 13:30:05.171 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6748. 2018-08-15 13:30:05.171 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  6749. 2018-08-15 13:30:05.171 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6750. 2018-08-15 13:30:05.172 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  6751. 2018-08-15 13:30:05.172 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6752. 2018-08-15 13:30:05.172 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6753. 2018-08-15 13:30:05.173 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6754. 2018-08-15 13:30:05.173 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6755. 2018-08-15 13:30:05.174 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  6756. 2018-08-15 13:30:05.174 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6757. 2018-08-15 13:30:05.175 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6758. 2018-08-15 13:30:05.175 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6759. 2018-08-15 13:30:05.178 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  6760. 2018-08-15 13:30:05.189 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6761. 2018-08-15 13:30:05.191 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6762. 2018-08-15 13:30:05.191 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6763. 2018-08-15 13:30:05.193 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6764. 2018-08-15 13:30:05.193 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6765. 2018-08-15 13:30:05.193 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6766. 2018-08-15 13:30:05.200 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6767. 2018-08-15 13:30:05.200 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6768. 2018-08-15 13:30:05.201 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6769. 2018-08-15 13:30:05.202 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6770. 2018-08-15 13:30:05.204 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6771. 2018-08-15 13:30:05.206 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6772. 2018-08-15 13:30:05.210 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6773. 2018-08-15 13:30:05.210 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6774. 2018-08-15 13:30:05.247 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  6775. 2018-08-15 13:30:05.282 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6776. 2018-08-15 13:30:05.284 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6777. 2018-08-15 13:30:05.284 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6778. 2018-08-15 13:30:05.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6779. 2018-08-15 13:30:05.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6780. 2018-08-15 13:30:05.287 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6781. 2018-08-15 13:30:05.292 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6782. 2018-08-15 13:30:05.293 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6783. 2018-08-15 13:30:05.293 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6784. 2018-08-15 13:30:05.294 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6785. 2018-08-15 13:30:05.296 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6786. 2018-08-15 13:30:05.297 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6787. 2018-08-15 13:30:05.300 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  6788. 2018-08-15 13:30:05.301 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  6789. 2018-08-15 13:30:05.302 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6790. 2018-08-15 13:30:05.464 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6791. 2018-08-15 13:30:05.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6792. 2018-08-15 13:30:05.467 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6793. 2018-08-15 13:30:05.469 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6794. 2018-08-15 13:30:05.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6795. 2018-08-15 13:30:05.471 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6796. 2018-08-15 13:30:05.478 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6797. 2018-08-15 13:30:05.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6798. 2018-08-15 13:30:05.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6799. 2018-08-15 13:30:05.483 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6800. 2018-08-15 13:30:05.486 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6801. 2018-08-15 13:30:05.487 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6802. 2018-08-15 13:30:06.493 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6803. 2018-08-15 13:30:06.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6804. 2018-08-15 13:30:06.496 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6805. 2018-08-15 13:30:06.498 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6806. 2018-08-15 13:30:06.499 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6807. 2018-08-15 13:30:06.499 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6808. 2018-08-15 13:30:06.505 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6809. 2018-08-15 13:30:06.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6810. 2018-08-15 13:30:06.506 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6811. 2018-08-15 13:30:06.507 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6812. 2018-08-15 13:30:06.509 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6813. 2018-08-15 13:30:06.510 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6814. 2018-08-15 13:30:06.528 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6815. 2018-08-15 13:30:06.528 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6816. 2018-08-15 13:30:06.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6817. 2018-08-15 13:30:06.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6818. 2018-08-15 13:30:06.531 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6819. 2018-08-15 13:30:06.532 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6820. 2018-08-15 13:30:06.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6821. 2018-08-15 13:30:06.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6822. 2018-08-15 13:30:06.535 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6823. 2018-08-15 13:30:06.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6824. 2018-08-15 13:30:06.536 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6825. 2018-08-15 13:30:06.536 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6826. 2018-08-15 13:30:06.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6827. 2018-08-15 13:30:06.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6828. 2018-08-15 13:30:06.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6829. 2018-08-15 13:30:06.544 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6830. 2018-08-15 13:30:06.545 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6831. 2018-08-15 13:30:06.545 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6832. 2018-08-15 13:30:06.547 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6833. 2018-08-15 13:30:06.549 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6834. 2018-08-15 13:30:06.550 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6835. 2018-08-15 13:30:06.551 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6836. 2018-08-15 13:30:06.551 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6837. 2018-08-15 13:30:06.552 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6838. 2018-08-15 13:30:06.567 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-171] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  6839. 2018-08-15 13:30:06.567 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-171] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  6840. 2018-08-15 13:30:06.576 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-171] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  6841. 2018-08-15 13:30:54.097 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6842. 2018-08-15 13:30:54.099 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6843. 2018-08-15 13:30:54.099 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6844. 2018-08-15 13:30:54.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6845. 2018-08-15 13:30:54.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6846. 2018-08-15 13:30:54.100 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6847. 2018-08-15 13:30:54.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6848. 2018-08-15 13:30:54.101 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6849. 2018-08-15 13:30:54.101 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6850. 2018-08-15 13:30:54.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6851. 2018-08-15 13:30:54.102 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6852. 2018-08-15 13:30:54.102 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6853. 2018-08-15 13:30:54.102 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6854. 2018-08-15 13:30:54.103 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6855. 2018-08-15 13:30:54.103 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6856. 2018-08-15 13:30:54.103 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6857. 2018-08-15 13:30:54.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6858. 2018-08-15 13:30:54.104 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6859. 2018-08-15 13:30:54.104 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6860. 2018-08-15 13:30:54.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6861. 2018-08-15 13:30:54.105 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6862. 2018-08-15 13:30:54.105 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6863. 2018-08-15 13:30:54.105 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6864. 2018-08-15 13:30:54.105 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6865. 2018-08-15 13:30:54.106 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6866. 2018-08-15 13:30:54.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6867. 2018-08-15 13:30:54.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6868. 2018-08-15 13:30:54.106 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6869. 2018-08-15 13:30:54.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6870. 2018-08-15 13:30:54.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6871. 2018-08-15 13:30:54.111 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6872. 2018-08-15 13:30:54.111 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6873. 2018-08-15 13:30:54.112 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6874. 2018-08-15 13:30:54.113 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6875. 2018-08-15 13:30:54.114 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6876. 2018-08-15 13:30:54.114 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6877. 2018-08-15 13:30:54.114 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6878. 2018-08-15 13:30:54.114 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6879. 2018-08-15 13:30:54.115 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6880. 2018-08-15 13:30:54.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6881. 2018-08-15 13:30:54.115 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6882. 2018-08-15 13:30:54.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6883. 2018-08-15 13:30:54.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6884. 2018-08-15 13:30:54.116 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6885. 2018-08-15 13:30:54.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6886. 2018-08-15 13:30:54.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6887. 2018-08-15 13:30:54.116 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6888. 2018-08-15 13:30:54.117 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6889. 2018-08-15 13:30:54.117 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6890. 2018-08-15 13:30:54.118 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6891. 2018-08-15 13:30:54.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6892. 2018-08-15 13:30:54.118 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6893. 2018-08-15 13:30:54.118 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6894. 2018-08-15 13:30:54.120 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6895. 2018-08-15 13:30:54.120 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  6896. 2018-08-15 13:30:54.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  6897. 2018-08-15 13:30:54.120 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6898. 2018-08-15 13:30:54.121 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6899. 2018-08-15 13:30:54.122 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6900. 2018-08-15 13:30:54.122 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6901. 2018-08-15 13:30:54.122 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6902. 2018-08-15 13:30:54.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  6903. 2018-08-15 13:30:54.123 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6904. 2018-08-15 13:30:54.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  6905. 2018-08-15 13:30:54.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  6906. 2018-08-15 13:30:54.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  6907. 2018-08-15 13:30:54.129 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  6908. 2018-08-15 13:30:54.129 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  6909. 2018-08-15 13:30:54.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  6910. 2018-08-15 13:30:54.131 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  6911. 2018-08-15 13:30:54.132 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  6912. 2018-08-15 13:30:54.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  6913. 2018-08-15 13:30:54.133 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6914. 2018-08-15 13:30:54.133 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6915. 2018-08-15 13:30:54.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6916. 2018-08-15 13:30:54.218 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6917. 2018-08-15 13:30:54.220 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6918. 2018-08-15 13:30:54.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6919. 2018-08-15 13:30:54.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6920. 2018-08-15 13:30:54.222 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6921. 2018-08-15 13:30:54.224 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6922. 2018-08-15 13:30:54.226 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6923. 2018-08-15 13:30:54.227 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6924. 2018-08-15 13:30:54.228 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6925. 2018-08-15 13:30:54.229 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6926. 2018-08-15 13:30:54.230 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6927. 2018-08-15 13:30:54.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6928. 2018-08-15 13:30:54.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6929. 2018-08-15 13:30:54.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6930. 2018-08-15 13:30:54.231 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6931. 2018-08-15 13:30:54.230 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6932. 2018-08-15 13:30:54.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6933. 2018-08-15 13:30:54.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6934. 2018-08-15 13:30:54.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6935. 2018-08-15 13:30:54.231 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6936. 2018-08-15 13:30:54.244 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6937. 2018-08-15 13:30:54.243 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6938. 2018-08-15 13:30:54.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6939. 2018-08-15 13:30:54.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6940. 2018-08-15 13:30:54.248 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6941. 2018-08-15 13:30:54.249 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6942. 2018-08-15 13:30:54.249 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6943. 2018-08-15 13:30:54.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6944. 2018-08-15 13:30:54.252 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6945. 2018-08-15 13:30:54.252 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6946. 2018-08-15 13:30:54.252 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6947. 2018-08-15 13:30:54.252 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6948. 2018-08-15 13:30:54.258 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6949. 2018-08-15 13:30:54.262 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6950. 2018-08-15 13:30:54.252 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6951. 2018-08-15 13:30:54.263 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6952. 2018-08-15 13:30:54.265 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6953. 2018-08-15 13:30:54.265 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6954. 2018-08-15 13:30:54.265 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6955. 2018-08-15 13:30:54.266 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6956. 2018-08-15 13:30:54.266 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6957. 2018-08-15 13:30:54.266 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6958. 2018-08-15 13:30:54.267 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6959. 2018-08-15 13:30:54.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  6960. 2018-08-15 13:30:54.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  6961. 2018-08-15 13:30:54.268 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6962. 2018-08-15 13:30:54.268 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6963. 2018-08-15 13:30:54.268 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  6964. 2018-08-15 13:30:54.269 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  6965. 2018-08-15 13:30:54.269 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6966. 2018-08-15 13:30:54.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  6967. 2018-08-15 13:30:54.271 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6968. 2018-08-15 13:30:54.271 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  6969. 2018-08-15 13:30:54.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  6970. 2018-08-15 13:30:54.272 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6971. 2018-08-15 13:30:54.273 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  6972. 2018-08-15 13:30:54.274 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  6973. 2018-08-15 13:30:54.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  6974. 2018-08-15 13:30:54.275 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  6975. 2018-08-15 13:30:54.278 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  6976. 2018-08-15 13:30:54.286 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6977. 2018-08-15 13:30:54.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6978. 2018-08-15 13:30:54.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6979. 2018-08-15 13:30:54.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6980. 2018-08-15 13:30:54.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6981. 2018-08-15 13:30:54.293 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6982. 2018-08-15 13:30:54.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6983. 2018-08-15 13:30:54.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6984. 2018-08-15 13:30:54.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  6985. 2018-08-15 13:30:54.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  6986. 2018-08-15 13:30:54.303 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  6987. 2018-08-15 13:30:54.304 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6988. 2018-08-15 13:30:54.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  6989. 2018-08-15 13:30:54.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  6990. 2018-08-15 13:30:54.348 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  6991. 2018-08-15 13:30:54.388 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  6992. 2018-08-15 13:30:54.390 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  6993. 2018-08-15 13:30:54.390 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  6994. 2018-08-15 13:30:54.392 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  6995. 2018-08-15 13:30:54.393 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  6996. 2018-08-15 13:30:54.393 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  6997. 2018-08-15 13:30:54.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  6998. 2018-08-15 13:30:54.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  6999. 2018-08-15 13:30:54.400 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7000. 2018-08-15 13:30:54.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7001. 2018-08-15 13:30:54.403 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7002. 2018-08-15 13:30:54.404 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7003. 2018-08-15 13:30:54.407 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7004. 2018-08-15 13:30:54.407 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7005. 2018-08-15 13:30:54.408 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7006. 2018-08-15 13:30:54.556 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7007. 2018-08-15 13:30:54.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7008. 2018-08-15 13:30:54.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7009. 2018-08-15 13:30:54.562 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7010. 2018-08-15 13:30:54.562 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7011. 2018-08-15 13:30:54.563 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7012. 2018-08-15 13:30:54.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7013. 2018-08-15 13:30:54.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7014. 2018-08-15 13:30:54.570 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7015. 2018-08-15 13:30:54.571 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7016. 2018-08-15 13:30:54.574 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7017. 2018-08-15 13:30:54.574 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7018. 2018-08-15 13:30:55.769 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7019. 2018-08-15 13:30:55.771 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7020. 2018-08-15 13:30:55.772 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7021. 2018-08-15 13:30:55.774 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7022. 2018-08-15 13:30:55.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7023. 2018-08-15 13:30:55.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7024. 2018-08-15 13:30:55.781 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7025. 2018-08-15 13:30:55.782 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7026. 2018-08-15 13:30:55.782 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7027. 2018-08-15 13:30:55.784 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7028. 2018-08-15 13:30:55.786 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7029. 2018-08-15 13:30:55.787 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7030. 2018-08-15 13:30:55.807 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7031. 2018-08-15 13:30:55.808 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7032. 2018-08-15 13:30:55.809 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7033. 2018-08-15 13:30:55.810 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7034. 2018-08-15 13:30:55.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7035. 2018-08-15 13:30:55.811 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7036. 2018-08-15 13:30:55.812 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7037. 2018-08-15 13:30:55.812 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7038. 2018-08-15 13:30:55.813 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7039. 2018-08-15 13:30:55.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7040. 2018-08-15 13:30:55.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7041. 2018-08-15 13:30:55.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7042. 2018-08-15 13:30:55.819 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7043. 2018-08-15 13:30:55.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7044. 2018-08-15 13:30:55.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7045. 2018-08-15 13:30:55.822 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7046. 2018-08-15 13:30:55.823 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7047. 2018-08-15 13:30:55.824 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7048. 2018-08-15 13:30:55.824 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7049. 2018-08-15 13:30:55.825 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7050. 2018-08-15 13:30:55.826 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7051. 2018-08-15 13:30:55.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7052. 2018-08-15 13:30:55.829 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7053. 2018-08-15 13:30:55.830 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7054. 2018-08-15 13:30:55.844 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-186] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  7055. 2018-08-15 13:30:55.844 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-186] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  7056. 2018-08-15 13:30:55.852 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-186] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  7057. 2018-08-15 13:31:45.612 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7058. 2018-08-15 13:31:45.614 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7059. 2018-08-15 13:31:45.615 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7060. 2018-08-15 13:31:45.615 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7061. 2018-08-15 13:31:45.616 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7062. 2018-08-15 13:31:45.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7063. 2018-08-15 13:31:45.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7064. 2018-08-15 13:31:45.618 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7065. 2018-08-15 13:31:45.618 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7066. 2018-08-15 13:31:45.619 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7067. 2018-08-15 13:31:45.619 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7068. 2018-08-15 13:31:45.620 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7069. 2018-08-15 13:31:45.620 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7070. 2018-08-15 13:31:45.620 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7071. 2018-08-15 13:31:45.620 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7072. 2018-08-15 13:31:45.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7073. 2018-08-15 13:31:45.621 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7074. 2018-08-15 13:31:45.621 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7075. 2018-08-15 13:31:45.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7076. 2018-08-15 13:31:45.622 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7077. 2018-08-15 13:31:45.622 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7078. 2018-08-15 13:31:45.623 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7079. 2018-08-15 13:31:45.623 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7080. 2018-08-15 13:31:45.623 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7081. 2018-08-15 13:31:45.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7082. 2018-08-15 13:31:45.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7083. 2018-08-15 13:31:45.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7084. 2018-08-15 13:31:45.627 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7085. 2018-08-15 13:31:45.627 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7086. 2018-08-15 13:31:45.628 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7087. 2018-08-15 13:31:45.628 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7088. 2018-08-15 13:31:45.629 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7089. 2018-08-15 13:31:45.629 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7090. 2018-08-15 13:31:45.630 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7091. 2018-08-15 13:31:45.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7092. 2018-08-15 13:31:45.631 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7093. 2018-08-15 13:31:45.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7094. 2018-08-15 13:31:45.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7095. 2018-08-15 13:31:45.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7096. 2018-08-15 13:31:45.633 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7097. 2018-08-15 13:31:45.633 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7098. 2018-08-15 13:31:45.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7099. 2018-08-15 13:31:45.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7100. 2018-08-15 13:31:45.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7101. 2018-08-15 13:31:45.637 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7102. 2018-08-15 13:31:45.637 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7103. 2018-08-15 13:31:45.638 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7104. 2018-08-15 13:31:45.638 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7105. 2018-08-15 13:31:45.639 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7106. 2018-08-15 13:31:45.637 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7107. 2018-08-15 13:31:45.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7108. 2018-08-15 13:31:45.639 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7109. 2018-08-15 13:31:45.640 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7110. 2018-08-15 13:31:45.640 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7111. 2018-08-15 13:31:45.640 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7112. 2018-08-15 13:31:45.641 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7113. 2018-08-15 13:31:45.641 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7114. 2018-08-15 13:31:45.642 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7115. 2018-08-15 13:31:45.642 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7116. 2018-08-15 13:31:45.643 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7117. 2018-08-15 13:31:45.643 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7118. 2018-08-15 13:31:45.644 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7119. 2018-08-15 13:31:45.644 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7120. 2018-08-15 13:31:45.650 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7121. 2018-08-15 13:31:45.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7122. 2018-08-15 13:31:45.650 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7123. 2018-08-15 13:31:45.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7124. 2018-08-15 13:31:45.652 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  7125. 2018-08-15 13:31:45.652 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  7126. 2018-08-15 13:31:45.654 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7127. 2018-08-15 13:31:45.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  7128. 2018-08-15 13:31:45.656 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  7129. 2018-08-15 13:31:45.657 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7130. 2018-08-15 13:31:45.657 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7131. 2018-08-15 13:31:45.663 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7132. 2018-08-15 13:31:45.791 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7133. 2018-08-15 13:31:45.792 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7134. 2018-08-15 13:31:45.793 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7135. 2018-08-15 13:31:45.794 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7136. 2018-08-15 13:31:45.795 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7137. 2018-08-15 13:31:45.795 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7138. 2018-08-15 13:31:45.795 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7139. 2018-08-15 13:31:45.795 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7140. 2018-08-15 13:31:45.796 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7141. 2018-08-15 13:31:45.796 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7142. 2018-08-15 13:31:45.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7143. 2018-08-15 13:31:45.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7144. 2018-08-15 13:31:45.797 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7145. 2018-08-15 13:31:45.797 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7146. 2018-08-15 13:31:45.798 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7147. 2018-08-15 13:31:45.798 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7148. 2018-08-15 13:31:45.798 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7149. 2018-08-15 13:31:45.798 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7150. 2018-08-15 13:31:45.799 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7151. 2018-08-15 13:31:45.799 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7152. 2018-08-15 13:31:45.799 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7153. 2018-08-15 13:31:45.799 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7154. 2018-08-15 13:31:45.800 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7155. 2018-08-15 13:31:45.800 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7156. 2018-08-15 13:31:45.805 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7157. 2018-08-15 13:31:45.806 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7158. 2018-08-15 13:31:45.806 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7159. 2018-08-15 13:31:45.806 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7160. 2018-08-15 13:31:45.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7161. 2018-08-15 13:31:45.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7162. 2018-08-15 13:31:45.807 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7163. 2018-08-15 13:31:45.808 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7164. 2018-08-15 13:31:45.808 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7165. 2018-08-15 13:31:45.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7166. 2018-08-15 13:31:45.808 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7167. 2018-08-15 13:31:45.809 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7168. 2018-08-15 13:31:45.809 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7169. 2018-08-15 13:31:45.809 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7170. 2018-08-15 13:31:45.810 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7171. 2018-08-15 13:31:45.810 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7172. 2018-08-15 13:31:45.811 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7173. 2018-08-15 13:31:45.811 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7174. 2018-08-15 13:31:45.811 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7175. 2018-08-15 13:31:45.812 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7176. 2018-08-15 13:31:45.812 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7177. 2018-08-15 13:31:45.813 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7178. 2018-08-15 13:31:45.813 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7179. 2018-08-15 13:31:45.813 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7180. 2018-08-15 13:31:45.813 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7181. 2018-08-15 13:31:45.814 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7182. 2018-08-15 13:31:45.814 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7183. 2018-08-15 13:31:45.815 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7184. 2018-08-15 13:31:45.815 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  7185. 2018-08-15 13:31:45.815 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7186. 2018-08-15 13:31:45.815 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7187. 2018-08-15 13:31:45.816 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  7188. 2018-08-15 13:31:45.816 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7189. 2018-08-15 13:31:45.817 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7190. 2018-08-15 13:31:45.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  7191. 2018-08-15 13:31:45.820 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  7192. 2018-08-15 13:31:45.829 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7193. 2018-08-15 13:31:45.832 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7194. 2018-08-15 13:31:45.833 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7195. 2018-08-15 13:31:45.835 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7196. 2018-08-15 13:31:45.836 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7197. 2018-08-15 13:31:45.836 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7198. 2018-08-15 13:31:45.842 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7199. 2018-08-15 13:31:45.843 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7200. 2018-08-15 13:31:45.843 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7201. 2018-08-15 13:31:45.844 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7202. 2018-08-15 13:31:45.848 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7203. 2018-08-15 13:31:45.849 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7204. 2018-08-15 13:31:45.854 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7205. 2018-08-15 13:31:45.855 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7206. 2018-08-15 13:31:45.887 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  7207. 2018-08-15 13:31:45.918 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7208. 2018-08-15 13:31:45.920 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7209. 2018-08-15 13:31:45.920 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7210. 2018-08-15 13:31:45.922 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7211. 2018-08-15 13:31:45.922 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7212. 2018-08-15 13:31:45.923 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7213. 2018-08-15 13:31:45.930 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7214. 2018-08-15 13:31:45.931 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7215. 2018-08-15 13:31:45.931 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7216. 2018-08-15 13:31:45.933 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7217. 2018-08-15 13:31:45.935 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7218. 2018-08-15 13:31:45.936 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7219. 2018-08-15 13:31:45.941 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7220. 2018-08-15 13:31:45.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7221. 2018-08-15 13:31:45.943 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7222. 2018-08-15 13:31:46.091 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7223. 2018-08-15 13:31:46.093 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7224. 2018-08-15 13:31:46.094 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7225. 2018-08-15 13:31:46.096 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7226. 2018-08-15 13:31:46.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7227. 2018-08-15 13:31:46.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7228. 2018-08-15 13:31:46.104 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7229. 2018-08-15 13:31:46.105 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7230. 2018-08-15 13:31:46.106 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7231. 2018-08-15 13:31:46.107 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7232. 2018-08-15 13:31:46.111 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7233. 2018-08-15 13:31:46.112 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7234. 2018-08-15 13:31:47.273 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7235. 2018-08-15 13:31:47.275 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7236. 2018-08-15 13:31:47.276 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7237. 2018-08-15 13:31:47.278 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7238. 2018-08-15 13:31:47.279 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7239. 2018-08-15 13:31:47.279 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7240. 2018-08-15 13:31:47.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7241. 2018-08-15 13:31:47.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7242. 2018-08-15 13:31:47.287 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7243. 2018-08-15 13:31:47.288 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7244. 2018-08-15 13:31:47.290 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7245. 2018-08-15 13:31:47.291 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7246. 2018-08-15 13:31:47.310 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7247. 2018-08-15 13:31:47.312 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7248. 2018-08-15 13:31:47.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7249. 2018-08-15 13:31:47.315 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7250. 2018-08-15 13:31:47.316 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7251. 2018-08-15 13:31:47.316 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7252. 2018-08-15 13:31:47.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7253. 2018-08-15 13:31:47.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7254. 2018-08-15 13:31:47.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7255. 2018-08-15 13:31:47.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7256. 2018-08-15 13:31:47.320 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7257. 2018-08-15 13:31:47.321 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7258. 2018-08-15 13:31:47.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7259. 2018-08-15 13:31:47.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7260. 2018-08-15 13:31:47.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7261. 2018-08-15 13:31:47.330 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7262. 2018-08-15 13:31:47.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7263. 2018-08-15 13:31:47.330 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7264. 2018-08-15 13:31:47.331 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7265. 2018-08-15 13:31:47.333 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7266. 2018-08-15 13:31:47.335 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7267. 2018-08-15 13:31:47.336 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7268. 2018-08-15 13:31:47.336 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7269. 2018-08-15 13:31:47.337 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7270. 2018-08-15 13:31:47.352 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  7271. 2018-08-15 13:31:47.352 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  7272. 2018-08-15 13:31:47.364 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  7273. 2018-08-15 13:32:45.386 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7274. 2018-08-15 13:32:45.388 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7275. 2018-08-15 13:32:45.389 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7276. 2018-08-15 13:32:45.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7277. 2018-08-15 13:32:45.390 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7278. 2018-08-15 13:32:45.391 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7279. 2018-08-15 13:32:45.391 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7280. 2018-08-15 13:32:45.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7281. 2018-08-15 13:32:45.393 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7282. 2018-08-15 13:32:45.393 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7283. 2018-08-15 13:32:45.393 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7284. 2018-08-15 13:32:45.393 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7285. 2018-08-15 13:32:45.394 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7286. 2018-08-15 13:32:45.394 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7287. 2018-08-15 13:32:45.395 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7288. 2018-08-15 13:32:45.395 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7289. 2018-08-15 13:32:45.395 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7290. 2018-08-15 13:32:45.395 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7291. 2018-08-15 13:32:45.396 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7292. 2018-08-15 13:32:45.396 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7293. 2018-08-15 13:32:45.396 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7294. 2018-08-15 13:32:45.397 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7295. 2018-08-15 13:32:45.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7296. 2018-08-15 13:32:45.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7297. 2018-08-15 13:32:45.399 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7298. 2018-08-15 13:32:45.400 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7299. 2018-08-15 13:32:45.400 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7300. 2018-08-15 13:32:45.401 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7301. 2018-08-15 13:32:45.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7302. 2018-08-15 13:32:45.402 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7303. 2018-08-15 13:32:45.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7304. 2018-08-15 13:32:45.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7305. 2018-08-15 13:32:45.403 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7306. 2018-08-15 13:32:45.403 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7307. 2018-08-15 13:32:45.404 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7308. 2018-08-15 13:32:45.404 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7309. 2018-08-15 13:32:45.405 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7310. 2018-08-15 13:32:45.405 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7311. 2018-08-15 13:32:45.406 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7312. 2018-08-15 13:32:45.406 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7313. 2018-08-15 13:32:45.407 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7314. 2018-08-15 13:32:45.408 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7315. 2018-08-15 13:32:45.408 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7316. 2018-08-15 13:32:45.409 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7317. 2018-08-15 13:32:45.410 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7318. 2018-08-15 13:32:45.410 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7319. 2018-08-15 13:32:45.410 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7320. 2018-08-15 13:32:45.410 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7321. 2018-08-15 13:32:45.410 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7322. 2018-08-15 13:32:45.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7323. 2018-08-15 13:32:45.411 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7324. 2018-08-15 13:32:45.411 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7325. 2018-08-15 13:32:45.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7326. 2018-08-15 13:32:45.412 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7327. 2018-08-15 13:32:45.412 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7328. 2018-08-15 13:32:45.412 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7329. 2018-08-15 13:32:45.413 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7330. 2018-08-15 13:32:45.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7331. 2018-08-15 13:32:45.415 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7332. 2018-08-15 13:32:45.416 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7333. 2018-08-15 13:32:45.417 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7334. 2018-08-15 13:32:45.417 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7335. 2018-08-15 13:32:45.418 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7336. 2018-08-15 13:32:45.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7337. 2018-08-15 13:32:45.419 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7338. 2018-08-15 13:32:45.421 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7339. 2018-08-15 13:32:45.421 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7340. 2018-08-15 13:32:45.422 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  7341. 2018-08-15 13:32:45.423 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7342. 2018-08-15 13:32:45.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  7343. 2018-08-15 13:32:45.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  7344. 2018-08-15 13:32:45.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  7345. 2018-08-15 13:32:45.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7346. 2018-08-15 13:32:45.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7347. 2018-08-15 13:32:45.436 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7348. 2018-08-15 13:32:45.475 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7349. 2018-08-15 13:32:45.475 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7350. 2018-08-15 13:32:45.477 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7351. 2018-08-15 13:32:45.477 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7352. 2018-08-15 13:32:45.477 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7353. 2018-08-15 13:32:45.478 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7354. 2018-08-15 13:32:45.478 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7355. 2018-08-15 13:32:45.479 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7356. 2018-08-15 13:32:45.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7357. 2018-08-15 13:32:45.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7358. 2018-08-15 13:32:45.479 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7359. 2018-08-15 13:32:45.480 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7360. 2018-08-15 13:32:45.480 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7361. 2018-08-15 13:32:45.480 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7362. 2018-08-15 13:32:45.480 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7363. 2018-08-15 13:32:45.480 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7364. 2018-08-15 13:32:45.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7365. 2018-08-15 13:32:45.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7366. 2018-08-15 13:32:45.481 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7367. 2018-08-15 13:32:45.482 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7368. 2018-08-15 13:32:45.482 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7369. 2018-08-15 13:32:45.483 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7370. 2018-08-15 13:32:45.483 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7371. 2018-08-15 13:32:45.484 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7372. 2018-08-15 13:32:45.488 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7373. 2018-08-15 13:32:45.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7374. 2018-08-15 13:32:45.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7375. 2018-08-15 13:32:45.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7376. 2018-08-15 13:32:45.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7377. 2018-08-15 13:32:45.490 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7378. 2018-08-15 13:32:45.490 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7379. 2018-08-15 13:32:45.490 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7380. 2018-08-15 13:32:45.490 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7381. 2018-08-15 13:32:45.491 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7382. 2018-08-15 13:32:45.491 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7383. 2018-08-15 13:32:45.491 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7384. 2018-08-15 13:32:45.492 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7385. 2018-08-15 13:32:45.492 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7386. 2018-08-15 13:32:45.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7387. 2018-08-15 13:32:45.493 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7388. 2018-08-15 13:32:45.494 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7389. 2018-08-15 13:32:45.494 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7390. 2018-08-15 13:32:45.495 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7391. 2018-08-15 13:32:45.495 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7392. 2018-08-15 13:32:45.495 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7393. 2018-08-15 13:32:45.495 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7394. 2018-08-15 13:32:45.495 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7395. 2018-08-15 13:32:45.495 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7396. 2018-08-15 13:32:45.496 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7397. 2018-08-15 13:32:45.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7398. 2018-08-15 13:32:45.496 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  7399. 2018-08-15 13:32:45.496 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7400. 2018-08-15 13:32:45.496 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7401. 2018-08-15 13:32:45.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7402. 2018-08-15 13:32:45.497 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  7403. 2018-08-15 13:32:45.497 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7404. 2018-08-15 13:32:45.499 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7405. 2018-08-15 13:32:45.500 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7406. 2018-08-15 13:32:45.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  7407. 2018-08-15 13:32:45.501 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  7408. 2018-08-15 13:32:45.512 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7409. 2018-08-15 13:32:45.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7410. 2018-08-15 13:32:45.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7411. 2018-08-15 13:32:45.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7412. 2018-08-15 13:32:45.516 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7413. 2018-08-15 13:32:45.516 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7414. 2018-08-15 13:32:45.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7415. 2018-08-15 13:32:45.523 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7416. 2018-08-15 13:32:45.523 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7417. 2018-08-15 13:32:45.524 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7418. 2018-08-15 13:32:45.526 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7419. 2018-08-15 13:32:45.527 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7420. 2018-08-15 13:32:45.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7421. 2018-08-15 13:32:45.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7422. 2018-08-15 13:32:45.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  7423. 2018-08-15 13:32:45.612 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7424. 2018-08-15 13:32:45.614 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7425. 2018-08-15 13:32:45.614 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7426. 2018-08-15 13:32:45.617 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7427. 2018-08-15 13:32:45.617 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7428. 2018-08-15 13:32:45.617 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7429. 2018-08-15 13:32:45.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7430. 2018-08-15 13:32:45.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7431. 2018-08-15 13:32:45.624 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7432. 2018-08-15 13:32:45.626 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7433. 2018-08-15 13:32:45.628 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7434. 2018-08-15 13:32:45.629 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7435. 2018-08-15 13:32:45.633 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7436. 2018-08-15 13:32:45.633 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7437. 2018-08-15 13:32:45.634 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7438. 2018-08-15 13:32:45.869 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7439. 2018-08-15 13:32:45.872 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7440. 2018-08-15 13:32:45.873 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7441. 2018-08-15 13:32:45.875 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7442. 2018-08-15 13:32:45.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7443. 2018-08-15 13:32:45.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7444. 2018-08-15 13:32:45.882 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7445. 2018-08-15 13:32:45.883 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7446. 2018-08-15 13:32:45.884 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7447. 2018-08-15 13:32:45.885 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7448. 2018-08-15 13:32:45.888 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7449. 2018-08-15 13:32:45.889 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7450. 2018-08-15 13:34:04.969 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7451. 2018-08-15 13:34:04.970 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7452. 2018-08-15 13:34:04.971 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7453. 2018-08-15 13:34:04.972 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7454. 2018-08-15 13:34:04.973 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7455. 2018-08-15 13:34:04.973 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7456. 2018-08-15 13:34:04.974 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7457. 2018-08-15 13:34:04.974 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7458. 2018-08-15 13:34:04.975 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7459. 2018-08-15 13:34:04.976 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7460. 2018-08-15 13:34:04.976 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7461. 2018-08-15 13:34:04.976 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7462. 2018-08-15 13:34:04.977 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7463. 2018-08-15 13:34:04.977 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7464. 2018-08-15 13:34:04.977 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7465. 2018-08-15 13:34:04.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7466. 2018-08-15 13:34:04.978 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7467. 2018-08-15 13:34:04.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7468. 2018-08-15 13:34:04.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7469. 2018-08-15 13:34:04.979 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7470. 2018-08-15 13:34:04.980 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7471. 2018-08-15 13:34:04.980 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7472. 2018-08-15 13:34:04.980 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7473. 2018-08-15 13:34:04.980 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7474. 2018-08-15 13:34:04.981 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7475. 2018-08-15 13:34:04.981 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7476. 2018-08-15 13:34:04.982 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7477. 2018-08-15 13:34:04.984 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7478. 2018-08-15 13:34:04.987 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7479. 2018-08-15 13:34:04.987 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7480. 2018-08-15 13:34:04.987 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7481. 2018-08-15 13:34:04.987 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7482. 2018-08-15 13:34:04.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7483. 2018-08-15 13:34:04.988 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7484. 2018-08-15 13:34:04.989 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7485. 2018-08-15 13:34:04.989 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7486. 2018-08-15 13:34:04.990 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7487. 2018-08-15 13:34:04.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7488. 2018-08-15 13:34:04.990 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7489. 2018-08-15 13:34:04.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7490. 2018-08-15 13:34:04.991 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7491. 2018-08-15 13:34:04.991 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7492. 2018-08-15 13:34:04.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7493. 2018-08-15 13:34:04.992 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7494. 2018-08-15 13:34:04.993 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7495. 2018-08-15 13:34:04.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7496. 2018-08-15 13:34:04.994 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7497. 2018-08-15 13:34:04.994 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7498. 2018-08-15 13:34:04.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7499. 2018-08-15 13:34:04.995 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7500. 2018-08-15 13:34:04.996 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7501. 2018-08-15 13:34:04.996 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7502. 2018-08-15 13:34:04.996 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7503. 2018-08-15 13:34:04.996 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7504. 2018-08-15 13:34:04.997 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7505. 2018-08-15 13:34:04.997 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7506. 2018-08-15 13:34:04.998 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7507. 2018-08-15 13:34:04.999 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7508. 2018-08-15 13:34:04.999 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7509. 2018-08-15 13:34:05.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7510. 2018-08-15 13:34:05.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7511. 2018-08-15 13:34:05.005 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7512. 2018-08-15 13:34:05.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7513. 2018-08-15 13:34:05.005 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7514. 2018-08-15 13:34:05.006 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7515. 2018-08-15 13:34:05.006 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7516. 2018-08-15 13:34:05.007 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7517. 2018-08-15 13:34:05.008 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7518. 2018-08-15 13:34:05.010 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  7519. 2018-08-15 13:34:05.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  7520. 2018-08-15 13:34:05.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  7521. 2018-08-15 13:34:05.014 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  7522. 2018-08-15 13:34:05.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7523. 2018-08-15 13:34:05.016 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7524. 2018-08-15 13:34:05.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7525. 2018-08-15 13:34:05.066 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7526. 2018-08-15 13:34:05.068 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7527. 2018-08-15 13:34:05.068 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7528. 2018-08-15 13:34:05.069 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7529. 2018-08-15 13:34:05.069 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7530. 2018-08-15 13:34:05.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7531. 2018-08-15 13:34:05.070 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7532. 2018-08-15 13:34:05.071 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7533. 2018-08-15 13:34:05.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7534. 2018-08-15 13:34:05.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7535. 2018-08-15 13:34:05.072 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7536. 2018-08-15 13:34:05.073 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7537. 2018-08-15 13:34:05.073 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7538. 2018-08-15 13:34:05.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7539. 2018-08-15 13:34:05.073 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7540. 2018-08-15 13:34:05.073 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7541. 2018-08-15 13:34:05.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7542. 2018-08-15 13:34:05.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7543. 2018-08-15 13:34:05.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7544. 2018-08-15 13:34:05.074 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7545. 2018-08-15 13:34:05.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7546. 2018-08-15 13:34:05.075 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7547. 2018-08-15 13:34:05.076 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7548. 2018-08-15 13:34:05.076 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7549. 2018-08-15 13:34:05.081 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7550. 2018-08-15 13:34:05.082 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7551. 2018-08-15 13:34:05.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7552. 2018-08-15 13:34:05.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7553. 2018-08-15 13:34:05.083 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7554. 2018-08-15 13:34:05.083 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7555. 2018-08-15 13:34:05.084 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7556. 2018-08-15 13:34:05.084 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7557. 2018-08-15 13:34:05.084 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7558. 2018-08-15 13:34:05.085 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7559. 2018-08-15 13:34:05.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7560. 2018-08-15 13:34:05.085 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7561. 2018-08-15 13:34:05.085 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7562. 2018-08-15 13:34:05.085 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7563. 2018-08-15 13:34:05.086 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7564. 2018-08-15 13:34:05.087 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7565. 2018-08-15 13:34:05.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7566. 2018-08-15 13:34:05.088 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7567. 2018-08-15 13:34:05.088 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7568. 2018-08-15 13:34:05.088 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7569. 2018-08-15 13:34:05.089 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7570. 2018-08-15 13:34:05.089 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7571. 2018-08-15 13:34:05.089 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7572. 2018-08-15 13:34:05.089 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7573. 2018-08-15 13:34:05.090 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7574. 2018-08-15 13:34:05.090 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  7575. 2018-08-15 13:34:05.090 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7576. 2018-08-15 13:34:05.090 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  7577. 2018-08-15 13:34:05.090 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7578. 2018-08-15 13:34:05.091 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7579. 2018-08-15 13:34:05.091 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7580. 2018-08-15 13:34:05.092 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7581. 2018-08-15 13:34:05.093 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  7582. 2018-08-15 13:34:05.093 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7583. 2018-08-15 13:34:05.093 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7584. 2018-08-15 13:34:05.096 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  7585. 2018-08-15 13:34:05.105 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7586. 2018-08-15 13:34:05.107 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7587. 2018-08-15 13:34:05.107 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7588. 2018-08-15 13:34:05.109 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7589. 2018-08-15 13:34:05.109 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7590. 2018-08-15 13:34:05.110 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7591. 2018-08-15 13:34:05.116 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7592. 2018-08-15 13:34:05.117 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7593. 2018-08-15 13:34:05.117 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7594. 2018-08-15 13:34:05.119 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7595. 2018-08-15 13:34:05.120 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7596. 2018-08-15 13:34:05.121 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7597. 2018-08-15 13:34:05.125 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7598. 2018-08-15 13:34:05.126 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7599. 2018-08-15 13:34:05.159 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  7600. 2018-08-15 13:34:05.200 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7601. 2018-08-15 13:34:05.202 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7602. 2018-08-15 13:34:05.203 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7603. 2018-08-15 13:34:05.205 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7604. 2018-08-15 13:34:05.206 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7605. 2018-08-15 13:34:05.206 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7606. 2018-08-15 13:34:05.212 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7607. 2018-08-15 13:34:05.212 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7608. 2018-08-15 13:34:05.212 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7609. 2018-08-15 13:34:05.214 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7610. 2018-08-15 13:34:05.216 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7611. 2018-08-15 13:34:05.216 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7612. 2018-08-15 13:34:05.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7613. 2018-08-15 13:34:05.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7614. 2018-08-15 13:34:05.221 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7615. 2018-08-15 13:34:05.353 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7616. 2018-08-15 13:34:05.354 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7617. 2018-08-15 13:34:05.355 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7618. 2018-08-15 13:34:05.357 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7619. 2018-08-15 13:34:05.357 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7620. 2018-08-15 13:34:05.358 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7621. 2018-08-15 13:34:05.364 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7622. 2018-08-15 13:34:05.365 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7623. 2018-08-15 13:34:05.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7624. 2018-08-15 13:34:05.368 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7625. 2018-08-15 13:34:05.370 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7626. 2018-08-15 13:34:05.371 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7627. 2018-08-15 13:34:42.668 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7628. 2018-08-15 13:34:42.670 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7629. 2018-08-15 13:34:42.671 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7630. 2018-08-15 13:34:42.671 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7631. 2018-08-15 13:34:42.672 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7632. 2018-08-15 13:34:42.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7633. 2018-08-15 13:34:42.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7634. 2018-08-15 13:34:42.673 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7635. 2018-08-15 13:34:42.674 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7636. 2018-08-15 13:34:42.675 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7637. 2018-08-15 13:34:42.675 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7638. 2018-08-15 13:34:42.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7639. 2018-08-15 13:34:42.675 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7640. 2018-08-15 13:34:42.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7641. 2018-08-15 13:34:42.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7642. 2018-08-15 13:34:42.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7643. 2018-08-15 13:34:42.676 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7644. 2018-08-15 13:34:42.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7645. 2018-08-15 13:34:42.677 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7646. 2018-08-15 13:34:42.677 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7647. 2018-08-15 13:34:42.678 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7648. 2018-08-15 13:34:42.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7649. 2018-08-15 13:34:42.678 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7650. 2018-08-15 13:34:42.679 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7651. 2018-08-15 13:34:42.681 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7652. 2018-08-15 13:34:42.682 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7653. 2018-08-15 13:34:42.683 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7654. 2018-08-15 13:34:42.683 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7655. 2018-08-15 13:34:42.684 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7656. 2018-08-15 13:34:42.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7657. 2018-08-15 13:34:42.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7658. 2018-08-15 13:34:42.684 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7659. 2018-08-15 13:34:42.685 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7660. 2018-08-15 13:34:42.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7661. 2018-08-15 13:34:42.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7662. 2018-08-15 13:34:42.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7663. 2018-08-15 13:34:42.687 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7664. 2018-08-15 13:34:42.687 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7665. 2018-08-15 13:34:42.687 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7666. 2018-08-15 13:34:42.688 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7667. 2018-08-15 13:34:42.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7668. 2018-08-15 13:34:42.690 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7669. 2018-08-15 13:34:42.690 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7670. 2018-08-15 13:34:42.691 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7671. 2018-08-15 13:34:42.691 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7672. 2018-08-15 13:34:42.691 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7673. 2018-08-15 13:34:42.692 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7674. 2018-08-15 13:34:42.692 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7675. 2018-08-15 13:34:42.692 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7676. 2018-08-15 13:34:42.692 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7677. 2018-08-15 13:34:42.692 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7678. 2018-08-15 13:34:42.693 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7679. 2018-08-15 13:34:42.693 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7680. 2018-08-15 13:34:42.693 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7681. 2018-08-15 13:34:42.694 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7682. 2018-08-15 13:34:42.694 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7683. 2018-08-15 13:34:42.695 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7684. 2018-08-15 13:34:42.695 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7685. 2018-08-15 13:34:42.696 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7686. 2018-08-15 13:34:42.696 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7687. 2018-08-15 13:34:42.697 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7688. 2018-08-15 13:34:42.698 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7689. 2018-08-15 13:34:42.698 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7690. 2018-08-15 13:34:42.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7691. 2018-08-15 13:34:42.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7692. 2018-08-15 13:34:42.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7693. 2018-08-15 13:34:42.702 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7694. 2018-08-15 13:34:42.702 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  7695. 2018-08-15 13:34:42.703 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  7696. 2018-08-15 13:34:42.704 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  7697. 2018-08-15 13:34:42.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7698. 2018-08-15 13:34:42.706 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  7699. 2018-08-15 13:34:42.707 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7700. 2018-08-15 13:34:42.708 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7701. 2018-08-15 13:34:42.713 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7702. 2018-08-15 13:34:42.805 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7703. 2018-08-15 13:34:42.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7704. 2018-08-15 13:34:42.808 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7705. 2018-08-15 13:34:42.811 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7706. 2018-08-15 13:34:42.811 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7707. 2018-08-15 13:34:42.812 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7708. 2018-08-15 13:34:42.819 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7709. 2018-08-15 13:34:42.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7710. 2018-08-15 13:34:42.821 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7711. 2018-08-15 13:34:42.821 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7712. 2018-08-15 13:34:42.822 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7713. 2018-08-15 13:34:42.822 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7714. 2018-08-15 13:34:42.822 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7715. 2018-08-15 13:34:42.824 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7716. 2018-08-15 13:34:42.825 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7717. 2018-08-15 13:34:42.826 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7718. 2018-08-15 13:34:42.826 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7719. 2018-08-15 13:34:42.827 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7720. 2018-08-15 13:34:42.827 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7721. 2018-08-15 13:34:42.828 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7722. 2018-08-15 13:34:42.829 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7723. 2018-08-15 13:34:42.830 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7724. 2018-08-15 13:34:42.830 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7725. 2018-08-15 13:34:42.831 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7726. 2018-08-15 13:34:42.831 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7727. 2018-08-15 13:34:42.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7728. 2018-08-15 13:34:42.833 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7729. 2018-08-15 13:34:42.834 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7730. 2018-08-15 13:34:42.834 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7731. 2018-08-15 13:34:42.834 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7732. 2018-08-15 13:34:42.834 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7733. 2018-08-15 13:34:42.835 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7734. 2018-08-15 13:34:42.835 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7735. 2018-08-15 13:34:42.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7736. 2018-08-15 13:34:42.838 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7737. 2018-08-15 13:34:42.839 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7738. 2018-08-15 13:34:42.839 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7739. 2018-08-15 13:34:42.839 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7740. 2018-08-15 13:34:42.841 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7741. 2018-08-15 13:34:42.843 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7742. 2018-08-15 13:34:42.843 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7743. 2018-08-15 13:34:42.843 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7744. 2018-08-15 13:34:42.844 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7745. 2018-08-15 13:34:42.844 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7746. 2018-08-15 13:34:42.846 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7747. 2018-08-15 13:34:42.846 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7748. 2018-08-15 13:34:42.847 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7749. 2018-08-15 13:34:42.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7750. 2018-08-15 13:34:42.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7751. 2018-08-15 13:34:42.848 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7752. 2018-08-15 13:34:42.849 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7753. 2018-08-15 13:34:42.849 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7754. 2018-08-15 13:34:42.850 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  7755. 2018-08-15 13:34:42.851 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  7756. 2018-08-15 13:34:42.851 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7757. 2018-08-15 13:34:42.853 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7758. 2018-08-15 13:34:42.853 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  7759. 2018-08-15 13:34:42.854 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7760. 2018-08-15 13:34:42.855 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7761. 2018-08-15 13:34:42.857 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  7762. 2018-08-15 13:34:42.865 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7763. 2018-08-15 13:34:42.867 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7764. 2018-08-15 13:34:42.867 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7765. 2018-08-15 13:34:42.870 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7766. 2018-08-15 13:34:42.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7767. 2018-08-15 13:34:42.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7768. 2018-08-15 13:34:42.877 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7769. 2018-08-15 13:34:42.878 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7770. 2018-08-15 13:34:42.878 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7771. 2018-08-15 13:34:42.879 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7772. 2018-08-15 13:34:42.881 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7773. 2018-08-15 13:34:42.882 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7774. 2018-08-15 13:34:42.888 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7775. 2018-08-15 13:34:42.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7776. 2018-08-15 13:34:42.921 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  7777. 2018-08-15 13:34:42.965 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7778. 2018-08-15 13:34:42.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7779. 2018-08-15 13:34:42.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7780. 2018-08-15 13:34:42.970 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7781. 2018-08-15 13:34:42.971 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7782. 2018-08-15 13:34:42.971 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7783. 2018-08-15 13:34:42.977 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7784. 2018-08-15 13:34:42.978 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7785. 2018-08-15 13:34:42.978 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7786. 2018-08-15 13:34:42.979 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7787. 2018-08-15 13:34:42.982 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7788. 2018-08-15 13:34:42.982 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7789. 2018-08-15 13:34:42.987 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7790. 2018-08-15 13:34:42.988 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7791. 2018-08-15 13:34:42.989 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7792. 2018-08-15 13:34:43.132 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7793. 2018-08-15 13:34:43.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7794. 2018-08-15 13:34:43.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7795. 2018-08-15 13:34:43.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7796. 2018-08-15 13:34:43.137 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7797. 2018-08-15 13:34:43.137 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7798. 2018-08-15 13:34:43.143 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7799. 2018-08-15 13:34:43.144 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7800. 2018-08-15 13:34:43.144 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7801. 2018-08-15 13:34:43.145 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7802. 2018-08-15 13:34:43.147 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7803. 2018-08-15 13:34:43.148 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7804. 2018-08-15 13:35:07.886 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7805. 2018-08-15 13:35:07.887 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7806. 2018-08-15 13:35:07.889 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7807. 2018-08-15 13:35:07.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7808. 2018-08-15 13:35:07.890 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7809. 2018-08-15 13:35:07.890 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7810. 2018-08-15 13:35:07.891 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7811. 2018-08-15 13:35:07.892 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7812. 2018-08-15 13:35:07.893 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7813. 2018-08-15 13:35:07.895 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7814. 2018-08-15 13:35:07.897 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7815. 2018-08-15 13:35:07.897 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7816. 2018-08-15 13:35:07.898 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7817. 2018-08-15 13:35:07.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7818. 2018-08-15 13:35:07.898 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7819. 2018-08-15 13:35:07.899 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7820. 2018-08-15 13:35:07.899 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7821. 2018-08-15 13:35:07.899 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7822. 2018-08-15 13:35:07.899 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7823. 2018-08-15 13:35:07.899 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7824. 2018-08-15 13:35:07.900 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7825. 2018-08-15 13:35:07.900 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7826. 2018-08-15 13:35:07.901 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7827. 2018-08-15 13:35:07.901 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7828. 2018-08-15 13:35:07.904 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7829. 2018-08-15 13:35:07.905 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7830. 2018-08-15 13:35:07.906 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7831. 2018-08-15 13:35:07.906 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7832. 2018-08-15 13:35:07.907 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7833. 2018-08-15 13:35:07.908 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7834. 2018-08-15 13:35:07.908 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7835. 2018-08-15 13:35:07.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7836. 2018-08-15 13:35:07.909 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7837. 2018-08-15 13:35:07.910 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7838. 2018-08-15 13:35:07.910 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7839. 2018-08-15 13:35:07.911 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7840. 2018-08-15 13:35:07.911 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7841. 2018-08-15 13:35:07.912 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7842. 2018-08-15 13:35:07.912 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7843. 2018-08-15 13:35:07.912 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7844. 2018-08-15 13:35:07.914 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7845. 2018-08-15 13:35:07.916 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7846. 2018-08-15 13:35:07.917 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7847. 2018-08-15 13:35:07.919 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7848. 2018-08-15 13:35:07.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7849. 2018-08-15 13:35:07.920 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7850. 2018-08-15 13:35:07.921 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7851. 2018-08-15 13:35:07.921 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7852. 2018-08-15 13:35:07.921 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7853. 2018-08-15 13:35:07.922 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7854. 2018-08-15 13:35:07.922 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7855. 2018-08-15 13:35:07.923 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7856. 2018-08-15 13:35:07.922 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7857. 2018-08-15 13:35:07.925 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7858. 2018-08-15 13:35:07.925 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7859. 2018-08-15 13:35:07.923 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7860. 2018-08-15 13:35:07.926 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7861. 2018-08-15 13:35:07.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  7862. 2018-08-15 13:35:07.928 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7863. 2018-08-15 13:35:07.929 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  7864. 2018-08-15 13:35:07.930 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7865. 2018-08-15 13:35:07.931 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7866. 2018-08-15 13:35:07.931 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7867. 2018-08-15 13:35:07.933 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  7868. 2018-08-15 13:35:07.934 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  7869. 2018-08-15 13:35:07.934 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  7870. 2018-08-15 13:35:07.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  7871. 2018-08-15 13:35:07.936 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  7872. 2018-08-15 13:35:07.937 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  7873. 2018-08-15 13:35:07.937 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  7874. 2018-08-15 13:35:07.937 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  7875. 2018-08-15 13:35:07.941 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  7876. 2018-08-15 13:35:07.942 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7877. 2018-08-15 13:35:07.942 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7878. 2018-08-15 13:35:07.948 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7879. 2018-08-15 13:35:08.077 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7880. 2018-08-15 13:35:08.080 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7881. 2018-08-15 13:35:08.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7882. 2018-08-15 13:35:08.080 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7883. 2018-08-15 13:35:08.080 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7884. 2018-08-15 13:35:08.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7885. 2018-08-15 13:35:08.082 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7886. 2018-08-15 13:35:08.083 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7887. 2018-08-15 13:35:08.083 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7888. 2018-08-15 13:35:08.083 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7889. 2018-08-15 13:35:08.084 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7890. 2018-08-15 13:35:08.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7891. 2018-08-15 13:35:08.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7892. 2018-08-15 13:35:08.085 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7893. 2018-08-15 13:35:08.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7894. 2018-08-15 13:35:08.086 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7895. 2018-08-15 13:35:08.086 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7896. 2018-08-15 13:35:08.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7897. 2018-08-15 13:35:08.087 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7898. 2018-08-15 13:35:08.088 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7899. 2018-08-15 13:35:08.088 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7900. 2018-08-15 13:35:08.088 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7901. 2018-08-15 13:35:08.089 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7902. 2018-08-15 13:35:08.089 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7903. 2018-08-15 13:35:08.093 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7904. 2018-08-15 13:35:08.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7905. 2018-08-15 13:35:08.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7906. 2018-08-15 13:35:08.095 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7907. 2018-08-15 13:35:08.096 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7908. 2018-08-15 13:35:08.097 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7909. 2018-08-15 13:35:08.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7910. 2018-08-15 13:35:08.097 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7911. 2018-08-15 13:35:08.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7912. 2018-08-15 13:35:08.098 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7913. 2018-08-15 13:35:08.098 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7914. 2018-08-15 13:35:08.098 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7915. 2018-08-15 13:35:08.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7916. 2018-08-15 13:35:08.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7917. 2018-08-15 13:35:08.100 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7918. 2018-08-15 13:35:08.100 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7919. 2018-08-15 13:35:08.101 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7920. 2018-08-15 13:35:08.101 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7921. 2018-08-15 13:35:08.101 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7922. 2018-08-15 13:35:08.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  7923. 2018-08-15 13:35:08.104 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  7924. 2018-08-15 13:35:08.103 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7925. 2018-08-15 13:35:08.104 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7926. 2018-08-15 13:35:08.105 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7927. 2018-08-15 13:35:08.105 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7928. 2018-08-15 13:35:08.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  7929. 2018-08-15 13:35:08.106 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  7930. 2018-08-15 13:35:08.107 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7931. 2018-08-15 13:35:08.107 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  7932. 2018-08-15 13:35:08.108 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  7933. 2018-08-15 13:35:08.109 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  7934. 2018-08-15 13:35:08.111 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  7935. 2018-08-15 13:35:08.112 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  7936. 2018-08-15 13:35:08.112 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  7937. 2018-08-15 13:35:08.113 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  7938. 2018-08-15 13:35:08.115 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  7939. 2018-08-15 13:35:08.137 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7940. 2018-08-15 13:35:08.140 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7941. 2018-08-15 13:35:08.140 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7942. 2018-08-15 13:35:08.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7943. 2018-08-15 13:35:08.149 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7944. 2018-08-15 13:35:08.149 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7945. 2018-08-15 13:35:08.158 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7946. 2018-08-15 13:35:08.160 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7947. 2018-08-15 13:35:08.160 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7948. 2018-08-15 13:35:08.162 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7949. 2018-08-15 13:35:08.164 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7950. 2018-08-15 13:35:08.164 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7951. 2018-08-15 13:35:08.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  7952. 2018-08-15 13:35:08.169 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  7953. 2018-08-15 13:35:08.203 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  7954. 2018-08-15 13:35:08.241 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7955. 2018-08-15 13:35:08.245 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7956. 2018-08-15 13:35:08.246 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7957. 2018-08-15 13:35:08.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7958. 2018-08-15 13:35:08.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7959. 2018-08-15 13:35:08.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7960. 2018-08-15 13:35:08.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7961. 2018-08-15 13:35:08.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7962. 2018-08-15 13:35:08.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7963. 2018-08-15 13:35:08.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7964. 2018-08-15 13:35:08.268 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7965. 2018-08-15 13:35:08.270 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7966. 2018-08-15 13:35:08.287 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  7967. 2018-08-15 13:35:08.288 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  7968. 2018-08-15 13:35:08.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  7969. 2018-08-15 13:35:08.450 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7970. 2018-08-15 13:35:08.453 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7971. 2018-08-15 13:35:08.454 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7972. 2018-08-15 13:35:08.456 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7973. 2018-08-15 13:35:08.457 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7974. 2018-08-15 13:35:08.457 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7975. 2018-08-15 13:35:08.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7976. 2018-08-15 13:35:08.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7977. 2018-08-15 13:35:08.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7978. 2018-08-15 13:35:08.468 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7979. 2018-08-15 13:35:08.472 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7980. 2018-08-15 13:35:08.474 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7981. 2018-08-15 13:35:09.885 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7982. 2018-08-15 13:35:09.887 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7983. 2018-08-15 13:35:09.887 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7984. 2018-08-15 13:35:09.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  7985. 2018-08-15 13:35:09.890 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  7986. 2018-08-15 13:35:09.890 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  7987. 2018-08-15 13:35:09.896 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  7988. 2018-08-15 13:35:09.896 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  7989. 2018-08-15 13:35:09.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  7990. 2018-08-15 13:35:09.898 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  7991. 2018-08-15 13:35:09.900 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  7992. 2018-08-15 13:35:09.901 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7993. 2018-08-15 13:35:09.928 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7994. 2018-08-15 13:35:09.930 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  7995. 2018-08-15 13:35:09.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7996. 2018-08-15 13:35:09.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7997. 2018-08-15 13:35:09.932 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  7998. 2018-08-15 13:35:09.933 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  7999. 2018-08-15 13:35:09.934 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8000. 2018-08-15 13:35:09.935 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8001. 2018-08-15 13:35:09.935 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8002. 2018-08-15 13:35:09.936 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8003. 2018-08-15 13:35:09.936 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8004. 2018-08-15 13:35:09.936 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8005. 2018-08-15 13:35:09.943 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8006. 2018-08-15 13:35:09.943 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8007. 2018-08-15 13:35:09.944 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8008. 2018-08-15 13:35:09.944 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8009. 2018-08-15 13:35:09.945 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8010. 2018-08-15 13:35:09.945 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8011. 2018-08-15 13:35:09.946 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8012. 2018-08-15 13:35:09.947 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8013. 2018-08-15 13:35:09.950 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8014. 2018-08-15 13:35:09.950 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8015. 2018-08-15 13:35:09.951 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8016. 2018-08-15 13:35:09.951 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8017. 2018-08-15 13:35:09.992 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  8018. 2018-08-15 13:35:09.992 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  8019. 2018-08-15 13:35:09.999 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  8020. 2018-08-15 13:40:38.211 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8021. 2018-08-15 13:40:38.212 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8022. 2018-08-15 13:40:38.214 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8023. 2018-08-15 13:40:38.215 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8024. 2018-08-15 13:40:38.216 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8025. 2018-08-15 13:40:38.216 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8026. 2018-08-15 13:40:38.217 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8027. 2018-08-15 13:40:38.218 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8028. 2018-08-15 13:40:38.218 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8029. 2018-08-15 13:40:38.219 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8030. 2018-08-15 13:40:38.219 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8031. 2018-08-15 13:40:38.219 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8032. 2018-08-15 13:40:38.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8033. 2018-08-15 13:40:38.220 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8034. 2018-08-15 13:40:38.220 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8035. 2018-08-15 13:40:38.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8036. 2018-08-15 13:40:38.221 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8037. 2018-08-15 13:40:38.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8038. 2018-08-15 13:40:38.222 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8039. 2018-08-15 13:40:38.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8040. 2018-08-15 13:40:38.224 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8041. 2018-08-15 13:40:38.224 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8042. 2018-08-15 13:40:38.225 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8043. 2018-08-15 13:40:38.225 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8044. 2018-08-15 13:40:38.225 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8045. 2018-08-15 13:40:38.226 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8046. 2018-08-15 13:40:38.226 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8047. 2018-08-15 13:40:38.227 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8048. 2018-08-15 13:40:38.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8049. 2018-08-15 13:40:38.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8050. 2018-08-15 13:40:38.229 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8051. 2018-08-15 13:40:38.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8052. 2018-08-15 13:40:38.230 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8053. 2018-08-15 13:40:38.233 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8054. 2018-08-15 13:40:38.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8055. 2018-08-15 13:40:38.234 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8056. 2018-08-15 13:40:38.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8057. 2018-08-15 13:40:38.235 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8058. 2018-08-15 13:40:38.235 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8059. 2018-08-15 13:40:38.235 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8060. 2018-08-15 13:40:38.235 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8061. 2018-08-15 13:40:38.236 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8062. 2018-08-15 13:40:38.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8063. 2018-08-15 13:40:38.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8064. 2018-08-15 13:40:38.236 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8065. 2018-08-15 13:40:38.237 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8066. 2018-08-15 13:40:38.237 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8067. 2018-08-15 13:40:38.237 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8068. 2018-08-15 13:40:38.237 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8069. 2018-08-15 13:40:38.238 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8070. 2018-08-15 13:40:38.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8071. 2018-08-15 13:40:38.239 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8072. 2018-08-15 13:40:38.240 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8073. 2018-08-15 13:40:38.240 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8074. 2018-08-15 13:40:38.240 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8075. 2018-08-15 13:40:38.240 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8076. 2018-08-15 13:40:38.241 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8077. 2018-08-15 13:40:38.241 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8078. 2018-08-15 13:40:38.241 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8079. 2018-08-15 13:40:38.242 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8080. 2018-08-15 13:40:38.242 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8081. 2018-08-15 13:40:38.242 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8082. 2018-08-15 13:40:38.243 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8083. 2018-08-15 13:40:38.246 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8084. 2018-08-15 13:40:38.247 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8085. 2018-08-15 13:40:38.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8086. 2018-08-15 13:40:38.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  8087. 2018-08-15 13:40:38.250 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  8088. 2018-08-15 13:40:38.250 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8089. 2018-08-15 13:40:38.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  8090. 2018-08-15 13:40:38.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8091. 2018-08-15 13:40:38.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8092. 2018-08-15 13:40:38.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8093. 2018-08-15 13:40:38.253 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8094. 2018-08-15 13:40:38.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8095. 2018-08-15 13:40:38.302 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8096. 2018-08-15 13:40:38.303 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8097. 2018-08-15 13:40:38.317 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8098. 2018-08-15 13:40:38.317 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8099. 2018-08-15 13:40:38.317 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8100. 2018-08-15 13:40:38.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8101. 2018-08-15 13:40:38.318 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8102. 2018-08-15 13:40:38.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8103. 2018-08-15 13:40:38.319 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8104. 2018-08-15 13:40:38.319 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8105. 2018-08-15 13:40:38.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8106. 2018-08-15 13:40:38.320 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8107. 2018-08-15 13:40:38.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8108. 2018-08-15 13:40:38.320 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8109. 2018-08-15 13:40:38.321 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8110. 2018-08-15 13:40:38.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8111. 2018-08-15 13:40:38.321 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8112. 2018-08-15 13:40:38.321 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8113. 2018-08-15 13:40:38.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8114. 2018-08-15 13:40:38.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8115. 2018-08-15 13:40:38.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8116. 2018-08-15 13:40:38.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8117. 2018-08-15 13:40:38.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8118. 2018-08-15 13:40:38.328 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8119. 2018-08-15 13:40:38.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8120. 2018-08-15 13:40:38.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8121. 2018-08-15 13:40:38.329 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8122. 2018-08-15 13:40:38.330 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8123. 2018-08-15 13:40:38.330 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8124. 2018-08-15 13:40:38.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8125. 2018-08-15 13:40:38.331 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8126. 2018-08-15 13:40:38.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8127. 2018-08-15 13:40:38.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8128. 2018-08-15 13:40:38.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8129. 2018-08-15 13:40:38.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8130. 2018-08-15 13:40:38.333 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8131. 2018-08-15 13:40:38.334 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8132. 2018-08-15 13:40:38.335 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8133. 2018-08-15 13:40:38.335 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8134. 2018-08-15 13:40:38.336 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8135. 2018-08-15 13:40:38.336 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8136. 2018-08-15 13:40:38.336 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8137. 2018-08-15 13:40:38.336 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8138. 2018-08-15 13:40:38.336 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8139. 2018-08-15 13:40:38.336 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8140. 2018-08-15 13:40:38.336 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8141. 2018-08-15 13:40:38.337 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8142. 2018-08-15 13:40:38.337 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8143. 2018-08-15 13:40:38.337 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8144. 2018-08-15 13:40:38.338 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8145. 2018-08-15 13:40:38.338 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  8146. 2018-08-15 13:40:38.338 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  8147. 2018-08-15 13:40:38.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8148. 2018-08-15 13:40:38.339 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8149. 2018-08-15 13:40:38.340 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8150. 2018-08-15 13:40:38.340 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8151. 2018-08-15 13:40:38.340 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  8152. 2018-08-15 13:40:38.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8153. 2018-08-15 13:40:38.341 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8154. 2018-08-15 13:40:38.344 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  8155. 2018-08-15 13:40:38.352 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8156. 2018-08-15 13:40:38.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8157. 2018-08-15 13:40:38.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8158. 2018-08-15 13:40:38.355 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8159. 2018-08-15 13:40:38.356 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8160. 2018-08-15 13:40:38.356 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8161. 2018-08-15 13:40:38.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8162. 2018-08-15 13:40:38.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8163. 2018-08-15 13:40:38.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8164. 2018-08-15 13:40:38.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8165. 2018-08-15 13:40:38.365 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8166. 2018-08-15 13:40:38.366 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8167. 2018-08-15 13:40:38.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8168. 2018-08-15 13:40:38.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8169. 2018-08-15 13:40:38.403 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  8170. 2018-08-15 13:40:38.436 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8171. 2018-08-15 13:40:38.439 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8172. 2018-08-15 13:40:38.439 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8173. 2018-08-15 13:40:38.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8174. 2018-08-15 13:40:38.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8175. 2018-08-15 13:40:38.442 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8176. 2018-08-15 13:40:38.448 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8177. 2018-08-15 13:40:38.449 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8178. 2018-08-15 13:40:38.449 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8179. 2018-08-15 13:40:38.451 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8180. 2018-08-15 13:40:38.453 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8181. 2018-08-15 13:40:38.453 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8182. 2018-08-15 13:40:38.456 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8183. 2018-08-15 13:40:38.457 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8184. 2018-08-15 13:40:38.458 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8185. 2018-08-15 13:40:38.602 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8186. 2018-08-15 13:40:38.605 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8187. 2018-08-15 13:40:38.605 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8188. 2018-08-15 13:40:38.607 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8189. 2018-08-15 13:40:38.608 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8190. 2018-08-15 13:40:38.608 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8191. 2018-08-15 13:40:38.614 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8192. 2018-08-15 13:40:38.615 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8193. 2018-08-15 13:40:38.615 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8194. 2018-08-15 13:40:38.617 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8195. 2018-08-15 13:40:38.620 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8196. 2018-08-15 13:40:38.621 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8197. 2018-08-15 13:41:40.051 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8198. 2018-08-15 13:41:40.052 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8199. 2018-08-15 13:41:40.054 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8200. 2018-08-15 13:41:40.054 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8201. 2018-08-15 13:41:40.055 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8202. 2018-08-15 13:41:40.055 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8203. 2018-08-15 13:41:40.056 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8204. 2018-08-15 13:41:40.056 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8205. 2018-08-15 13:41:40.056 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8206. 2018-08-15 13:41:40.057 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8207. 2018-08-15 13:41:40.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8208. 2018-08-15 13:41:40.058 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8209. 2018-08-15 13:41:40.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8210. 2018-08-15 13:41:40.059 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8211. 2018-08-15 13:41:40.059 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8212. 2018-08-15 13:41:40.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8213. 2018-08-15 13:41:40.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8214. 2018-08-15 13:41:40.060 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8215. 2018-08-15 13:41:40.060 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8216. 2018-08-15 13:41:40.060 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8217. 2018-08-15 13:41:40.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8218. 2018-08-15 13:41:40.062 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8219. 2018-08-15 13:41:40.063 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8220. 2018-08-15 13:41:40.063 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8221. 2018-08-15 13:41:40.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8222. 2018-08-15 13:41:40.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8223. 2018-08-15 13:41:40.066 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8224. 2018-08-15 13:41:40.066 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8225. 2018-08-15 13:41:40.066 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8226. 2018-08-15 13:41:40.066 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8227. 2018-08-15 13:41:40.067 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8228. 2018-08-15 13:41:40.068 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8229. 2018-08-15 13:41:40.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8230. 2018-08-15 13:41:40.068 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8231. 2018-08-15 13:41:40.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8232. 2018-08-15 13:41:40.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8233. 2018-08-15 13:41:40.072 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8234. 2018-08-15 13:41:40.072 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8235. 2018-08-15 13:41:40.072 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8236. 2018-08-15 13:41:40.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8237. 2018-08-15 13:41:40.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8238. 2018-08-15 13:41:40.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8239. 2018-08-15 13:41:40.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8240. 2018-08-15 13:41:40.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8241. 2018-08-15 13:41:40.075 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8242. 2018-08-15 13:41:40.075 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8243. 2018-08-15 13:41:40.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8244. 2018-08-15 13:41:40.076 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8245. 2018-08-15 13:41:40.076 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8246. 2018-08-15 13:41:40.077 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8247. 2018-08-15 13:41:40.077 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8248. 2018-08-15 13:41:40.077 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8249. 2018-08-15 13:41:40.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8250. 2018-08-15 13:41:40.078 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8251. 2018-08-15 13:41:40.079 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8252. 2018-08-15 13:41:40.079 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8253. 2018-08-15 13:41:40.079 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8254. 2018-08-15 13:41:40.080 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8255. 2018-08-15 13:41:40.081 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8256. 2018-08-15 13:41:40.081 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8257. 2018-08-15 13:41:40.082 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8258. 2018-08-15 13:41:40.082 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8259. 2018-08-15 13:41:40.083 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8260. 2018-08-15 13:41:40.085 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8261. 2018-08-15 13:41:40.086 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8262. 2018-08-15 13:41:40.086 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8263. 2018-08-15 13:41:40.087 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8264. 2018-08-15 13:41:40.088 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8265. 2018-08-15 13:41:40.088 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  8266. 2018-08-15 13:41:40.088 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  8267. 2018-08-15 13:41:40.089 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8268. 2018-08-15 13:41:40.091 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  8269. 2018-08-15 13:41:40.092 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8270. 2018-08-15 13:41:40.093 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8271. 2018-08-15 13:41:40.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8272. 2018-08-15 13:41:40.142 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8273. 2018-08-15 13:41:40.143 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8274. 2018-08-15 13:41:40.144 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8275. 2018-08-15 13:41:40.145 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8276. 2018-08-15 13:41:40.145 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8277. 2018-08-15 13:41:40.145 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8278. 2018-08-15 13:41:40.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8279. 2018-08-15 13:41:40.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8280. 2018-08-15 13:41:40.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8281. 2018-08-15 13:41:40.147 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8282. 2018-08-15 13:41:40.154 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8283. 2018-08-15 13:41:40.155 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8284. 2018-08-15 13:41:40.155 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8285. 2018-08-15 13:41:40.155 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8286. 2018-08-15 13:41:40.156 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8287. 2018-08-15 13:41:40.156 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8288. 2018-08-15 13:41:40.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8289. 2018-08-15 13:41:40.156 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8290. 2018-08-15 13:41:40.156 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8291. 2018-08-15 13:41:40.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8292. 2018-08-15 13:41:40.157 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8293. 2018-08-15 13:41:40.158 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8294. 2018-08-15 13:41:40.158 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8295. 2018-08-15 13:41:40.159 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8296. 2018-08-15 13:41:40.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8297. 2018-08-15 13:41:40.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8298. 2018-08-15 13:41:40.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8299. 2018-08-15 13:41:40.166 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8300. 2018-08-15 13:41:40.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8301. 2018-08-15 13:41:40.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8302. 2018-08-15 13:41:40.168 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8303. 2018-08-15 13:41:40.169 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8304. 2018-08-15 13:41:40.169 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8305. 2018-08-15 13:41:40.169 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8306. 2018-08-15 13:41:40.169 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8307. 2018-08-15 13:41:40.170 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8308. 2018-08-15 13:41:40.170 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8309. 2018-08-15 13:41:40.171 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8310. 2018-08-15 13:41:40.171 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8311. 2018-08-15 13:41:40.171 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8312. 2018-08-15 13:41:40.171 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8313. 2018-08-15 13:41:40.171 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8314. 2018-08-15 13:41:40.172 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8315. 2018-08-15 13:41:40.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8316. 2018-08-15 13:41:40.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8317. 2018-08-15 13:41:40.174 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8318. 2018-08-15 13:41:40.174 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8319. 2018-08-15 13:41:40.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8320. 2018-08-15 13:41:40.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8321. 2018-08-15 13:41:40.175 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8322. 2018-08-15 13:41:40.175 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8323. 2018-08-15 13:41:40.176 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8324. 2018-08-15 13:41:40.177 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8325. 2018-08-15 13:41:40.177 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8326. 2018-08-15 13:41:40.177 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8327. 2018-08-15 13:41:40.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  8328. 2018-08-15 13:41:40.178 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  8329. 2018-08-15 13:41:40.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  8330. 2018-08-15 13:41:40.180 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8331. 2018-08-15 13:41:40.181 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  8332. 2018-08-15 13:41:40.187 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8333. 2018-08-15 13:41:40.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8334. 2018-08-15 13:41:40.189 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8335. 2018-08-15 13:41:40.191 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8336. 2018-08-15 13:41:40.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8337. 2018-08-15 13:41:40.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8338. 2018-08-15 13:41:40.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8339. 2018-08-15 13:41:40.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8340. 2018-08-15 13:41:40.199 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8341. 2018-08-15 13:41:40.201 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8342. 2018-08-15 13:41:40.203 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8343. 2018-08-15 13:41:40.203 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8344. 2018-08-15 13:41:40.208 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8345. 2018-08-15 13:41:40.208 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8346. 2018-08-15 13:41:40.239 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  8347. 2018-08-15 13:41:40.271 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8348. 2018-08-15 13:41:40.273 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8349. 2018-08-15 13:41:40.273 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8350. 2018-08-15 13:41:40.276 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8351. 2018-08-15 13:41:40.276 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8352. 2018-08-15 13:41:40.276 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8353. 2018-08-15 13:41:40.282 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8354. 2018-08-15 13:41:40.283 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8355. 2018-08-15 13:41:40.283 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8356. 2018-08-15 13:41:40.284 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8357. 2018-08-15 13:41:40.287 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8358. 2018-08-15 13:41:40.287 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8359. 2018-08-15 13:41:40.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8360. 2018-08-15 13:41:40.292 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8361. 2018-08-15 13:41:40.294 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8362. 2018-08-15 13:41:40.442 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8363. 2018-08-15 13:41:40.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8364. 2018-08-15 13:41:40.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8365. 2018-08-15 13:41:40.446 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8366. 2018-08-15 13:41:40.447 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8367. 2018-08-15 13:41:40.447 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8368. 2018-08-15 13:41:40.453 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8369. 2018-08-15 13:41:40.453 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8370. 2018-08-15 13:41:40.454 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8371. 2018-08-15 13:41:40.455 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8372. 2018-08-15 13:41:40.458 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8373. 2018-08-15 13:41:40.459 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8374. 2018-08-15 13:55:35.225 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8375. 2018-08-15 13:55:35.226 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8376. 2018-08-15 13:55:35.227 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8377. 2018-08-15 13:55:35.229 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8378. 2018-08-15 13:55:35.230 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8379. 2018-08-15 13:55:35.230 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8380. 2018-08-15 13:55:35.231 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8381. 2018-08-15 13:55:35.232 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8382. 2018-08-15 13:55:35.232 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8383. 2018-08-15 13:55:35.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8384. 2018-08-15 13:55:35.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8385. 2018-08-15 13:55:35.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8386. 2018-08-15 13:55:35.235 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8387. 2018-08-15 13:55:35.236 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8388. 2018-08-15 13:55:35.235 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8389. 2018-08-15 13:55:35.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8390. 2018-08-15 13:55:35.237 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8391. 2018-08-15 13:55:35.237 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8392. 2018-08-15 13:55:35.237 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8393. 2018-08-15 13:55:35.238 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8394. 2018-08-15 13:55:35.238 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8395. 2018-08-15 13:55:35.239 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8396. 2018-08-15 13:55:35.239 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8397. 2018-08-15 13:55:35.240 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8398. 2018-08-15 13:55:35.240 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8399. 2018-08-15 13:55:35.241 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8400. 2018-08-15 13:55:35.241 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8401. 2018-08-15 13:55:35.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8402. 2018-08-15 13:55:35.242 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8403. 2018-08-15 13:55:35.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8404. 2018-08-15 13:55:35.245 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8405. 2018-08-15 13:55:35.246 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8406. 2018-08-15 13:55:35.246 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8407. 2018-08-15 13:55:35.247 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8408. 2018-08-15 13:55:35.248 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8409. 2018-08-15 13:55:35.249 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8410. 2018-08-15 13:55:35.249 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8411. 2018-08-15 13:55:35.250 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8412. 2018-08-15 13:55:35.251 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8413. 2018-08-15 13:55:35.251 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8414. 2018-08-15 13:55:35.251 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8415. 2018-08-15 13:55:35.252 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8416. 2018-08-15 13:55:35.252 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8417. 2018-08-15 13:55:35.253 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8418. 2018-08-15 13:55:35.253 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8419. 2018-08-15 13:55:35.253 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8420. 2018-08-15 13:55:35.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8421. 2018-08-15 13:55:35.254 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8422. 2018-08-15 13:55:35.254 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8423. 2018-08-15 13:55:35.254 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8424. 2018-08-15 13:55:35.254 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8425. 2018-08-15 13:55:35.255 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8426. 2018-08-15 13:55:35.255 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8427. 2018-08-15 13:55:35.256 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8428. 2018-08-15 13:55:35.257 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8429. 2018-08-15 13:55:35.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8430. 2018-08-15 13:55:35.257 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8431. 2018-08-15 13:55:35.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8432. 2018-08-15 13:55:35.258 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8433. 2018-08-15 13:55:35.258 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8434. 2018-08-15 13:55:35.259 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8435. 2018-08-15 13:55:35.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8436. 2018-08-15 13:55:35.260 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8437. 2018-08-15 13:55:35.263 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8438. 2018-08-15 13:55:35.263 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8439. 2018-08-15 13:55:35.264 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  8440. 2018-08-15 13:55:35.264 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8441. 2018-08-15 13:55:35.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8442. 2018-08-15 13:55:35.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8443. 2018-08-15 13:55:35.266 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8444. 2018-08-15 13:55:35.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  8445. 2018-08-15 13:55:35.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8446. 2018-08-15 13:55:35.268 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  8447. 2018-08-15 13:55:35.269 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8448. 2018-08-15 13:55:35.275 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8449. 2018-08-15 13:55:35.353 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8450. 2018-08-15 13:55:35.354 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8451. 2018-08-15 13:55:35.356 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8452. 2018-08-15 13:55:35.357 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8453. 2018-08-15 13:55:35.357 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8454. 2018-08-15 13:55:35.357 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8455. 2018-08-15 13:55:35.357 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8456. 2018-08-15 13:55:35.357 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8457. 2018-08-15 13:55:35.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8458. 2018-08-15 13:55:35.359 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8459. 2018-08-15 13:55:35.359 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8460. 2018-08-15 13:55:35.360 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8461. 2018-08-15 13:55:35.360 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8462. 2018-08-15 13:55:35.360 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8463. 2018-08-15 13:55:35.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8464. 2018-08-15 13:55:35.361 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8465. 2018-08-15 13:55:35.361 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8466. 2018-08-15 13:55:35.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8467. 2018-08-15 13:55:35.361 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8468. 2018-08-15 13:55:35.362 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8469. 2018-08-15 13:55:35.362 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8470. 2018-08-15 13:55:35.362 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8471. 2018-08-15 13:55:35.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8472. 2018-08-15 13:55:35.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8473. 2018-08-15 13:55:35.369 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8474. 2018-08-15 13:55:35.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8475. 2018-08-15 13:55:35.371 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8476. 2018-08-15 13:55:35.372 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8477. 2018-08-15 13:55:35.372 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8478. 2018-08-15 13:55:35.373 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8479. 2018-08-15 13:55:35.373 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8480. 2018-08-15 13:55:35.373 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8481. 2018-08-15 13:55:35.373 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8482. 2018-08-15 13:55:35.373 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8483. 2018-08-15 13:55:35.374 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8484. 2018-08-15 13:55:35.374 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8485. 2018-08-15 13:55:35.374 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8486. 2018-08-15 13:55:35.375 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8487. 2018-08-15 13:55:35.376 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8488. 2018-08-15 13:55:35.376 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8489. 2018-08-15 13:55:35.376 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8490. 2018-08-15 13:55:35.378 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8491. 2018-08-15 13:55:35.378 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8492. 2018-08-15 13:55:35.378 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8493. 2018-08-15 13:55:35.379 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8494. 2018-08-15 13:55:35.379 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8495. 2018-08-15 13:55:35.379 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8496. 2018-08-15 13:55:35.379 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8497. 2018-08-15 13:55:35.379 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8498. 2018-08-15 13:55:35.379 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8499. 2018-08-15 13:55:35.379 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8500. 2018-08-15 13:55:35.380 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8501. 2018-08-15 13:55:35.380 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  8502. 2018-08-15 13:55:35.381 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  8503. 2018-08-15 13:55:35.381 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8504. 2018-08-15 13:55:35.382 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8505. 2018-08-15 13:55:35.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8506. 2018-08-15 13:55:35.382 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8507. 2018-08-15 13:55:35.383 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  8508. 2018-08-15 13:55:35.385 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  8509. 2018-08-15 13:55:35.402 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8510. 2018-08-15 13:55:35.404 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8511. 2018-08-15 13:55:35.404 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8512. 2018-08-15 13:55:35.406 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8513. 2018-08-15 13:55:35.406 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8514. 2018-08-15 13:55:35.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8515. 2018-08-15 13:55:35.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8516. 2018-08-15 13:55:35.413 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8517. 2018-08-15 13:55:35.413 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8518. 2018-08-15 13:55:35.414 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8519. 2018-08-15 13:55:35.416 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8520. 2018-08-15 13:55:35.417 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8521. 2018-08-15 13:55:35.421 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8522. 2018-08-15 13:55:35.422 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8523. 2018-08-15 13:55:35.449 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  8524. 2018-08-15 13:55:35.480 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8525. 2018-08-15 13:55:35.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8526. 2018-08-15 13:55:35.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8527. 2018-08-15 13:55:35.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8528. 2018-08-15 13:55:35.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8529. 2018-08-15 13:55:35.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8530. 2018-08-15 13:55:35.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8531. 2018-08-15 13:55:35.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8532. 2018-08-15 13:55:35.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8533. 2018-08-15 13:55:35.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8534. 2018-08-15 13:55:35.496 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8535. 2018-08-15 13:55:35.496 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8536. 2018-08-15 13:55:35.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8537. 2018-08-15 13:55:35.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8538. 2018-08-15 13:55:35.503 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8539. 2018-08-15 13:55:35.632 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8540. 2018-08-15 13:55:35.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8541. 2018-08-15 13:55:35.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8542. 2018-08-15 13:55:35.641 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8543. 2018-08-15 13:55:35.641 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8544. 2018-08-15 13:55:35.642 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8545. 2018-08-15 13:55:35.648 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8546. 2018-08-15 13:55:35.649 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8547. 2018-08-15 13:55:35.650 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8548. 2018-08-15 13:55:35.651 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8549. 2018-08-15 13:55:35.654 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8550. 2018-08-15 13:55:35.655 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8551. 2018-08-15 14:01:41.985 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8552. 2018-08-15 14:01:41.988 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8553. 2018-08-15 14:01:41.990 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8554. 2018-08-15 14:01:41.990 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8555. 2018-08-15 14:01:41.991 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8556. 2018-08-15 14:01:41.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8557. 2018-08-15 14:01:41.993 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8558. 2018-08-15 14:01:41.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8559. 2018-08-15 14:01:41.994 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8560. 2018-08-15 14:01:41.995 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8561. 2018-08-15 14:01:41.995 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8562. 2018-08-15 14:01:41.995 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8563. 2018-08-15 14:01:41.995 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8564. 2018-08-15 14:01:41.995 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8565. 2018-08-15 14:01:41.996 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8566. 2018-08-15 14:01:41.997 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8567. 2018-08-15 14:01:41.997 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8568. 2018-08-15 14:01:41.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8569. 2018-08-15 14:01:41.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8570. 2018-08-15 14:01:41.999 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8571. 2018-08-15 14:01:41.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8572. 2018-08-15 14:01:41.999 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8573. 2018-08-15 14:01:41.999 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8574. 2018-08-15 14:01:42.000 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8575. 2018-08-15 14:01:42.000 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8576. 2018-08-15 14:01:42.000 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8577. 2018-08-15 14:01:42.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8578. 2018-08-15 14:01:42.001 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8579. 2018-08-15 14:01:42.001 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8580. 2018-08-15 14:01:42.002 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8581. 2018-08-15 14:01:42.008 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8582. 2018-08-15 14:01:42.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8583. 2018-08-15 14:01:42.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8584. 2018-08-15 14:01:42.010 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8585. 2018-08-15 14:01:42.010 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8586. 2018-08-15 14:01:42.010 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8587. 2018-08-15 14:01:42.011 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8588. 2018-08-15 14:01:42.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8589. 2018-08-15 14:01:42.012 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8590. 2018-08-15 14:01:42.012 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8591. 2018-08-15 14:01:42.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8592. 2018-08-15 14:01:42.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8593. 2018-08-15 14:01:42.013 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8594. 2018-08-15 14:01:42.013 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8595. 2018-08-15 14:01:42.013 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8596. 2018-08-15 14:01:42.013 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8597. 2018-08-15 14:01:42.014 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8598. 2018-08-15 14:01:42.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8599. 2018-08-15 14:01:42.015 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8600. 2018-08-15 14:01:42.015 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8601. 2018-08-15 14:01:42.015 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8602. 2018-08-15 14:01:42.016 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8603. 2018-08-15 14:01:42.016 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8604. 2018-08-15 14:01:42.016 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8605. 2018-08-15 14:01:42.018 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8606. 2018-08-15 14:01:42.020 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8607. 2018-08-15 14:01:42.020 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8608. 2018-08-15 14:01:42.022 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8609. 2018-08-15 14:01:42.022 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8610. 2018-08-15 14:01:42.022 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8611. 2018-08-15 14:01:42.022 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8612. 2018-08-15 14:01:42.023 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8613. 2018-08-15 14:01:42.024 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8614. 2018-08-15 14:01:42.025 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8615. 2018-08-15 14:01:42.025 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8616. 2018-08-15 14:01:42.028 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  8617. 2018-08-15 14:01:42.030 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8618. 2018-08-15 14:01:42.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  8619. 2018-08-15 14:01:42.032 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8620. 2018-08-15 14:01:42.033 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8621. 2018-08-15 14:01:42.034 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  8622. 2018-08-15 14:01:42.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8623. 2018-08-15 14:01:42.035 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8624. 2018-08-15 14:01:42.036 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8625. 2018-08-15 14:01:42.042 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8626. 2018-08-15 14:01:42.111 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8627. 2018-08-15 14:01:42.112 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8628. 2018-08-15 14:01:42.114 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8629. 2018-08-15 14:01:42.115 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8630. 2018-08-15 14:01:42.115 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8631. 2018-08-15 14:01:42.115 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8632. 2018-08-15 14:01:42.117 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8633. 2018-08-15 14:01:42.117 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8634. 2018-08-15 14:01:42.118 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8635. 2018-08-15 14:01:42.118 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8636. 2018-08-15 14:01:42.118 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8637. 2018-08-15 14:01:42.119 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8638. 2018-08-15 14:01:42.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8639. 2018-08-15 14:01:42.120 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8640. 2018-08-15 14:01:42.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8641. 2018-08-15 14:01:42.120 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8642. 2018-08-15 14:01:42.120 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8643. 2018-08-15 14:01:42.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8644. 2018-08-15 14:01:42.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8645. 2018-08-15 14:01:42.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8646. 2018-08-15 14:01:42.124 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8647. 2018-08-15 14:01:42.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8648. 2018-08-15 14:01:42.124 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8649. 2018-08-15 14:01:42.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8650. 2018-08-15 14:01:42.125 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8651. 2018-08-15 14:01:42.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8652. 2018-08-15 14:01:42.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8653. 2018-08-15 14:01:42.126 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8654. 2018-08-15 14:01:42.127 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8655. 2018-08-15 14:01:42.127 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8656. 2018-08-15 14:01:42.129 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8657. 2018-08-15 14:01:42.129 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8658. 2018-08-15 14:01:42.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8659. 2018-08-15 14:01:42.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8660. 2018-08-15 14:01:42.132 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8661. 2018-08-15 14:01:42.132 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8662. 2018-08-15 14:01:42.132 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8663. 2018-08-15 14:01:42.133 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8664. 2018-08-15 14:01:42.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8665. 2018-08-15 14:01:42.134 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8666. 2018-08-15 14:01:42.134 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8667. 2018-08-15 14:01:42.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8668. 2018-08-15 14:01:42.135 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8669. 2018-08-15 14:01:42.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8670. 2018-08-15 14:01:42.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8671. 2018-08-15 14:01:42.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8672. 2018-08-15 14:01:42.136 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8673. 2018-08-15 14:01:42.136 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8674. 2018-08-15 14:01:42.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8675. 2018-08-15 14:01:42.137 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8676. 2018-08-15 14:01:42.138 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8677. 2018-08-15 14:01:42.138 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8678. 2018-08-15 14:01:42.138 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  8679. 2018-08-15 14:01:42.138 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8680. 2018-08-15 14:01:42.139 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  8681. 2018-08-15 14:01:42.140 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8682. 2018-08-15 14:01:42.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8683. 2018-08-15 14:01:42.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8684. 2018-08-15 14:01:42.141 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  8685. 2018-08-15 14:01:42.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  8686. 2018-08-15 14:01:42.152 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8687. 2018-08-15 14:01:42.154 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8688. 2018-08-15 14:01:42.154 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8689. 2018-08-15 14:01:42.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8690. 2018-08-15 14:01:42.157 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8691. 2018-08-15 14:01:42.157 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8692. 2018-08-15 14:01:42.163 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8693. 2018-08-15 14:01:42.164 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8694. 2018-08-15 14:01:42.164 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8695. 2018-08-15 14:01:42.166 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8696. 2018-08-15 14:01:42.168 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8697. 2018-08-15 14:01:42.169 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8698. 2018-08-15 14:01:42.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8699. 2018-08-15 14:01:42.174 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8700. 2018-08-15 14:01:42.207 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  8701. 2018-08-15 14:01:42.238 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8702. 2018-08-15 14:01:42.239 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8703. 2018-08-15 14:01:42.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8704. 2018-08-15 14:01:42.242 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8705. 2018-08-15 14:01:42.242 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8706. 2018-08-15 14:01:42.242 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8707. 2018-08-15 14:01:42.248 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8708. 2018-08-15 14:01:42.249 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8709. 2018-08-15 14:01:42.250 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8710. 2018-08-15 14:01:42.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8711. 2018-08-15 14:01:42.254 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8712. 2018-08-15 14:01:42.255 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8713. 2018-08-15 14:01:42.258 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8714. 2018-08-15 14:01:42.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8715. 2018-08-15 14:01:42.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8716. 2018-08-15 14:01:42.403 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8717. 2018-08-15 14:01:42.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8718. 2018-08-15 14:01:42.406 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8719. 2018-08-15 14:01:42.408 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8720. 2018-08-15 14:01:42.409 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8721. 2018-08-15 14:01:42.409 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8722. 2018-08-15 14:01:42.416 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8723. 2018-08-15 14:01:42.417 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8724. 2018-08-15 14:01:42.417 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8725. 2018-08-15 14:01:42.419 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8726. 2018-08-15 14:01:42.421 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8727. 2018-08-15 14:01:42.422 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8728. 2018-08-15 14:01:44.969 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8729. 2018-08-15 14:01:44.969 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8730. 2018-08-15 14:01:44.970 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8731. 2018-08-15 14:01:44.970 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8732. 2018-08-15 14:01:44.971 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8733. 2018-08-15 14:01:44.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8734. 2018-08-15 14:01:44.971 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8735. 2018-08-15 14:01:44.972 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8736. 2018-08-15 14:01:44.972 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8737. 2018-08-15 14:01:44.973 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8738. 2018-08-15 14:01:44.973 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8739. 2018-08-15 14:01:44.973 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8740. 2018-08-15 14:01:44.973 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8741. 2018-08-15 14:01:44.974 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8742. 2018-08-15 14:01:44.974 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8743. 2018-08-15 14:01:44.975 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8744. 2018-08-15 14:01:44.975 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8745. 2018-08-15 14:01:44.975 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8746. 2018-08-15 14:01:44.975 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8747. 2018-08-15 14:01:44.976 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8748. 2018-08-15 14:01:44.976 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8749. 2018-08-15 14:01:44.976 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8750. 2018-08-15 14:01:44.976 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8751. 2018-08-15 14:01:44.976 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8752. 2018-08-15 14:01:44.977 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8753. 2018-08-15 14:01:44.977 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8754. 2018-08-15 14:01:44.977 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8755. 2018-08-15 14:01:44.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8756. 2018-08-15 14:01:44.979 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8757. 2018-08-15 14:01:44.980 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8758. 2018-08-15 14:01:44.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8759. 2018-08-15 14:01:44.984 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8760. 2018-08-15 14:01:44.985 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8761. 2018-08-15 14:01:44.986 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8762. 2018-08-15 14:01:44.986 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8763. 2018-08-15 14:01:44.986 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8764. 2018-08-15 14:01:44.987 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8765. 2018-08-15 14:01:44.988 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8766. 2018-08-15 14:01:44.988 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8767. 2018-08-15 14:01:44.988 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8768. 2018-08-15 14:01:44.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8769. 2018-08-15 14:01:44.988 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8770. 2018-08-15 14:01:44.988 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8771. 2018-08-15 14:01:44.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8772. 2018-08-15 14:01:44.989 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8773. 2018-08-15 14:01:44.989 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8774. 2018-08-15 14:01:44.989 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8775. 2018-08-15 14:01:44.990 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8776. 2018-08-15 14:01:44.991 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8777. 2018-08-15 14:01:44.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8778. 2018-08-15 14:01:44.991 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8779. 2018-08-15 14:01:44.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8780. 2018-08-15 14:01:44.992 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8781. 2018-08-15 14:01:44.993 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8782. 2018-08-15 14:01:44.993 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8783. 2018-08-15 14:01:44.993 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8784. 2018-08-15 14:01:44.994 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8785. 2018-08-15 14:01:44.994 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8786. 2018-08-15 14:01:44.995 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8787. 2018-08-15 14:01:44.994 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8788. 2018-08-15 14:01:44.995 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8789. 2018-08-15 14:01:44.996 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8790. 2018-08-15 14:01:44.997 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8791. 2018-08-15 14:01:44.999 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8792. 2018-08-15 14:01:44.999 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8793. 2018-08-15 14:01:44.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  8794. 2018-08-15 14:01:45.000 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  8795. 2018-08-15 14:01:45.000 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8796. 2018-08-15 14:01:45.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  8797. 2018-08-15 14:01:45.001 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8798. 2018-08-15 14:01:45.002 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  8799. 2018-08-15 14:01:45.004 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  8800. 2018-08-15 14:01:45.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8801. 2018-08-15 14:01:45.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8802. 2018-08-15 14:01:45.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8803. 2018-08-15 14:01:45.053 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8804. 2018-08-15 14:01:45.054 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8805. 2018-08-15 14:01:45.055 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8806. 2018-08-15 14:01:45.055 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8807. 2018-08-15 14:01:45.055 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8808. 2018-08-15 14:01:45.056 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8809. 2018-08-15 14:01:45.056 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8810. 2018-08-15 14:01:45.056 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8811. 2018-08-15 14:01:45.056 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8812. 2018-08-15 14:01:45.057 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8813. 2018-08-15 14:01:45.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8814. 2018-08-15 14:01:45.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8815. 2018-08-15 14:01:45.058 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8816. 2018-08-15 14:01:45.058 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8817. 2018-08-15 14:01:45.058 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8818. 2018-08-15 14:01:45.058 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8819. 2018-08-15 14:01:45.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8820. 2018-08-15 14:01:45.059 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8821. 2018-08-15 14:01:45.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8822. 2018-08-15 14:01:45.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8823. 2018-08-15 14:01:45.060 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8824. 2018-08-15 14:01:45.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8825. 2018-08-15 14:01:45.060 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8826. 2018-08-15 14:01:45.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8827. 2018-08-15 14:01:45.066 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8828. 2018-08-15 14:01:45.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8829. 2018-08-15 14:01:45.067 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8830. 2018-08-15 14:01:45.068 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8831. 2018-08-15 14:01:45.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8832. 2018-08-15 14:01:45.068 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8833. 2018-08-15 14:01:45.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8834. 2018-08-15 14:01:45.068 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8835. 2018-08-15 14:01:45.068 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8836. 2018-08-15 14:01:45.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8837. 2018-08-15 14:01:45.069 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8838. 2018-08-15 14:01:45.069 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8839. 2018-08-15 14:01:45.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8840. 2018-08-15 14:01:45.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8841. 2018-08-15 14:01:45.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8842. 2018-08-15 14:01:45.071 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8843. 2018-08-15 14:01:45.071 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8844. 2018-08-15 14:01:45.072 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8845. 2018-08-15 14:01:45.072 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8846. 2018-08-15 14:01:45.073 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8847. 2018-08-15 14:01:45.073 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8848. 2018-08-15 14:01:45.073 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  8849. 2018-08-15 14:01:45.073 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8850. 2018-08-15 14:01:45.073 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8851. 2018-08-15 14:01:45.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  8852. 2018-08-15 14:01:45.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  8853. 2018-08-15 14:01:45.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  8854. 2018-08-15 14:01:45.074 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8855. 2018-08-15 14:01:45.075 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  8856. 2018-08-15 14:01:45.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  8857. 2018-08-15 14:01:45.076 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  8858. 2018-08-15 14:01:45.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  8859. 2018-08-15 14:01:45.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  8860. 2018-08-15 14:01:45.077 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  8861. 2018-08-15 14:01:45.078 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  8862. 2018-08-15 14:01:45.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  8863. 2018-08-15 14:01:45.084 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8864. 2018-08-15 14:01:45.085 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8865. 2018-08-15 14:01:45.086 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8866. 2018-08-15 14:01:45.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8867. 2018-08-15 14:01:45.088 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8868. 2018-08-15 14:01:45.088 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8869. 2018-08-15 14:01:45.094 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8870. 2018-08-15 14:01:45.095 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8871. 2018-08-15 14:01:45.095 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8872. 2018-08-15 14:01:45.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8873. 2018-08-15 14:01:45.101 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8874. 2018-08-15 14:01:45.101 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8875. 2018-08-15 14:01:45.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  8876. 2018-08-15 14:01:45.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  8877. 2018-08-15 14:01:45.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  8878. 2018-08-15 14:01:45.161 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8879. 2018-08-15 14:01:45.163 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8880. 2018-08-15 14:01:45.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8881. 2018-08-15 14:01:45.166 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8882. 2018-08-15 14:01:45.166 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8883. 2018-08-15 14:01:45.167 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8884. 2018-08-15 14:01:45.172 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8885. 2018-08-15 14:01:45.173 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8886. 2018-08-15 14:01:45.173 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8887. 2018-08-15 14:01:45.175 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8888. 2018-08-15 14:01:45.177 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8889. 2018-08-15 14:01:45.177 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8890. 2018-08-15 14:01:45.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  8891. 2018-08-15 14:01:45.181 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  8892. 2018-08-15 14:01:45.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8893. 2018-08-15 14:01:45.268 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8894. 2018-08-15 14:01:45.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8895. 2018-08-15 14:01:45.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8896. 2018-08-15 14:01:45.272 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8897. 2018-08-15 14:01:45.273 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8898. 2018-08-15 14:01:45.273 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8899. 2018-08-15 14:01:45.279 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8900. 2018-08-15 14:01:45.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8901. 2018-08-15 14:01:45.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8902. 2018-08-15 14:01:45.282 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8903. 2018-08-15 14:01:45.285 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8904. 2018-08-15 14:01:45.286 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8905. 2018-08-15 14:01:48.144 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8906. 2018-08-15 14:01:48.147 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8907. 2018-08-15 14:01:48.147 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8908. 2018-08-15 14:01:48.148 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8909. 2018-08-15 14:01:48.148 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8910. 2018-08-15 14:01:48.148 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8911. 2018-08-15 14:01:48.149 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8912. 2018-08-15 14:01:48.149 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8913. 2018-08-15 14:01:48.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8914. 2018-08-15 14:01:48.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8915. 2018-08-15 14:01:48.151 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8916. 2018-08-15 14:01:48.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8917. 2018-08-15 14:01:48.151 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8918. 2018-08-15 14:01:48.151 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8919. 2018-08-15 14:01:48.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8920. 2018-08-15 14:01:48.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8921. 2018-08-15 14:01:48.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8922. 2018-08-15 14:01:48.152 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8923. 2018-08-15 14:01:48.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8924. 2018-08-15 14:01:48.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8925. 2018-08-15 14:01:48.153 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8926. 2018-08-15 14:01:48.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8927. 2018-08-15 14:01:48.154 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8928. 2018-08-15 14:01:48.154 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8929. 2018-08-15 14:01:48.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8930. 2018-08-15 14:01:48.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8931. 2018-08-15 14:01:48.156 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8932. 2018-08-15 14:01:48.156 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8933. 2018-08-15 14:01:48.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8934. 2018-08-15 14:01:48.157 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8935. 2018-08-15 14:01:48.157 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8936. 2018-08-15 14:01:48.157 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8937. 2018-08-15 14:01:48.157 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8938. 2018-08-15 14:01:48.158 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8939. 2018-08-15 14:01:48.158 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8940. 2018-08-15 14:01:48.158 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8941. 2018-08-15 14:01:48.159 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8942. 2018-08-15 14:01:48.161 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8943. 2018-08-15 14:01:48.162 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8944. 2018-08-15 14:01:48.162 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8945. 2018-08-15 14:01:48.165 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8946. 2018-08-15 14:01:48.165 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8947. 2018-08-15 14:01:48.166 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8948. 2018-08-15 14:01:48.166 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8949. 2018-08-15 14:01:48.167 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8950. 2018-08-15 14:01:48.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8951. 2018-08-15 14:01:48.167 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8952. 2018-08-15 14:01:48.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8953. 2018-08-15 14:01:48.167 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8954. 2018-08-15 14:01:48.168 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8955. 2018-08-15 14:01:48.168 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8956. 2018-08-15 14:01:48.169 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8957. 2018-08-15 14:01:48.169 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8958. 2018-08-15 14:01:48.169 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  8959. 2018-08-15 14:01:48.170 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8960. 2018-08-15 14:01:48.169 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8961. 2018-08-15 14:01:48.170 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8962. 2018-08-15 14:01:48.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  8963. 2018-08-15 14:01:48.170 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8964. 2018-08-15 14:01:48.171 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8965. 2018-08-15 14:01:48.170 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8966. 2018-08-15 14:01:48.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  8967. 2018-08-15 14:01:48.171 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8968. 2018-08-15 14:01:48.172 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8969. 2018-08-15 14:01:48.172 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8970. 2018-08-15 14:01:48.173 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  8971. 2018-08-15 14:01:48.173 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8972. 2018-08-15 14:01:48.173 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  8973. 2018-08-15 14:01:48.174 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8974. 2018-08-15 14:01:48.177 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  8975. 2018-08-15 14:01:48.178 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8976. 2018-08-15 14:01:48.178 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8977. 2018-08-15 14:01:48.180 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  8978. 2018-08-15 14:01:48.181 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  8979. 2018-08-15 14:01:48.182 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8980. 2018-08-15 14:01:48.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8981. 2018-08-15 14:01:48.184 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  8982. 2018-08-15 14:01:48.185 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 20(Integer)
  8983. 2018-08-15 14:01:48.185 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  8984. 2018-08-15 14:01:48.185 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8985. 2018-08-15 14:01:48.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  8986. 2018-08-15 14:01:48.186 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8987. 2018-08-15 14:01:48.186 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  8988. 2018-08-15 14:01:48.186 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  8989. 2018-08-15 14:01:48.186 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 40(Integer)
  8990. 2018-08-15 14:01:48.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  8991. 2018-08-15 14:01:48.187 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  8992. 2018-08-15 14:01:48.187 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 31
  8993. 2018-08-15 14:01:48.187 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  8994. 2018-08-15 14:01:48.188 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  8995. 2018-08-15 14:01:48.188 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  8996. 2018-08-15 14:01:48.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  8997. 2018-08-15 14:01:48.189 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 0
  8998. 2018-08-15 14:01:48.189 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  8999. 2018-08-15 14:01:48.190 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  9000. 2018-08-15 14:01:48.190 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9001. 2018-08-15 14:01:48.190 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9002. 2018-08-15 14:01:48.190 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9003. 2018-08-15 14:01:48.190 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9004. 2018-08-15 14:01:48.191 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9005. 2018-08-15 14:01:48.191 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  9006. 2018-08-15 14:01:48.191 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9007. 2018-08-15 14:01:48.191 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9008. 2018-08-15 14:01:48.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9009. 2018-08-15 14:01:48.192 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9010. 2018-08-15 14:01:48.192 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9011. 2018-08-15 14:01:48.193 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9012. 2018-08-15 14:01:48.196 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9013. 2018-08-15 14:01:48.196 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9014. 2018-08-15 14:01:48.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9015. 2018-08-15 14:01:48.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9016. 2018-08-15 14:01:48.198 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9017. 2018-08-15 14:01:48.199 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9018. 2018-08-15 14:01:48.200 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9019. 2018-08-15 14:01:48.200 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9020. 2018-08-15 14:01:48.200 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9021. 2018-08-15 14:01:48.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9022. 2018-08-15 14:01:48.203 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9023. 2018-08-15 14:01:48.204 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9024. 2018-08-15 14:01:48.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9025. 2018-08-15 14:01:48.205 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9026. 2018-08-15 14:01:48.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9027. 2018-08-15 14:01:48.206 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9028. 2018-08-15 14:01:48.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9029. 2018-08-15 14:01:48.208 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9030. 2018-08-15 14:01:48.209 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9031. 2018-08-15 14:01:48.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9032. 2018-08-15 14:01:48.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9033. 2018-08-15 14:01:48.211 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  9034. 2018-08-15 14:01:49.365 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9035. 2018-08-15 14:01:49.365 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9036. 2018-08-15 14:01:49.367 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9037. 2018-08-15 14:01:49.367 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9038. 2018-08-15 14:01:49.367 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9039. 2018-08-15 14:01:49.368 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9040. 2018-08-15 14:01:49.368 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9041. 2018-08-15 14:01:49.368 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9042. 2018-08-15 14:01:49.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9043. 2018-08-15 14:01:49.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9044. 2018-08-15 14:01:49.370 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9045. 2018-08-15 14:01:49.370 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9046. 2018-08-15 14:01:49.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9047. 2018-08-15 14:01:49.370 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9048. 2018-08-15 14:01:49.371 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9049. 2018-08-15 14:01:49.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9050. 2018-08-15 14:01:49.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9051. 2018-08-15 14:01:49.372 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9052. 2018-08-15 14:01:49.372 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9053. 2018-08-15 14:01:49.372 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9054. 2018-08-15 14:01:53.708 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9055. 2018-08-15 14:01:49.372 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9056. 2018-08-15 14:01:49.373 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9057. 2018-08-15 14:01:49.378 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9058. 2018-08-15 14:01:51.367 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9059. 2018-08-15 14:01:51.369 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9060. 2018-08-15 14:01:51.369 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9061. 2018-08-15 14:01:51.370 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9062. 2018-08-15 14:01:51.371 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9063. 2018-08-15 14:01:52.140 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9064. 2018-08-15 14:01:53.712 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9065. 2018-08-15 14:01:53.713 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9066. 2018-08-15 14:01:53.713 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9067. 2018-08-15 14:01:52.140 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9068. 2018-08-15 14:01:52.141 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9069. 2018-08-15 14:01:52.142 |-INFO [http-nio-8089-exec-15] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9070. 2018-08-15 14:01:52.143 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9071. 2018-08-15 14:01:52.343 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9072. 2018-08-15 14:01:52.344 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9073. 2018-08-15 14:01:52.344 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9074. 2018-08-15 14:01:52.345 |-INFO [http-nio-8089-exec-20] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9075. 2018-08-15 14:01:52.346 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9076. 2018-08-15 14:01:53.709 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9077. 2018-08-15 14:01:53.709 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9078. 2018-08-15 14:01:53.710 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9079. 2018-08-15 14:01:53.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9080. 2018-08-15 14:01:53.713 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9081. 2018-08-15 14:01:53.713 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9082. 2018-08-15 14:01:53.714 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9083. 2018-08-15 14:01:53.716 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9084. 2018-08-15 14:01:53.716 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9085. 2018-08-15 14:01:53.720 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9086. 2018-08-15 14:01:53.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9087. 2018-08-15 14:01:53.721 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9088. 2018-08-15 14:01:53.721 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9089. 2018-08-15 14:01:53.722 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9090. 2018-08-15 14:01:53.722 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9091. 2018-08-15 14:01:53.722 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9092. 2018-08-15 14:01:53.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9093. 2018-08-15 14:01:53.723 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9094. 2018-08-15 14:01:53.723 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9095. 2018-08-15 14:01:53.723 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9096. 2018-08-15 14:01:53.724 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9097. 2018-08-15 14:01:53.724 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9098. 2018-08-15 14:01:53.724 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9099. 2018-08-15 14:01:53.724 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9100. 2018-08-15 14:01:53.724 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9101. 2018-08-15 14:01:53.724 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9102. 2018-08-15 14:01:53.725 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9103. 2018-08-15 14:01:53.725 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9104. 2018-08-15 14:01:53.725 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9105. 2018-08-15 14:01:53.726 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9106. 2018-08-15 14:01:53.727 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9107. 2018-08-15 14:01:53.727 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9108. 2018-08-15 14:01:53.727 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9109. 2018-08-15 14:01:53.727 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9110. 2018-08-15 14:01:53.727 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9111. 2018-08-15 14:01:53.727 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9112. 2018-08-15 14:01:53.728 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9113. 2018-08-15 14:01:53.728 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9114. 2018-08-15 14:01:53.728 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9115. 2018-08-15 14:01:53.728 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9116. 2018-08-15 14:01:53.728 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9117. 2018-08-15 14:01:53.731 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9118. 2018-08-15 14:01:53.729 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9119. 2018-08-15 14:01:53.729 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9120. 2018-08-15 14:01:53.729 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9121. 2018-08-15 14:01:53.730 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9122. 2018-08-15 14:01:53.731 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9123. 2018-08-15 14:01:53.731 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9124. 2018-08-15 14:01:53.731 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9125. 2018-08-15 14:01:53.732 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9126. 2018-08-15 14:01:53.734 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9127. 2018-08-15 14:01:53.734 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9128. 2018-08-15 14:01:53.734 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9129. 2018-08-15 14:01:53.736 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9130. 2018-08-15 14:01:53.732 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9131. 2018-08-15 14:01:53.732 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9132. 2018-08-15 14:01:53.733 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9133. 2018-08-15 14:01:53.733 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9134. 2018-08-15 14:01:53.734 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9135. 2018-08-15 14:01:53.735 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9136. 2018-08-15 14:01:53.738 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9137. 2018-08-15 14:01:53.736 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9138. 2018-08-15 14:01:53.736 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9139. 2018-08-15 14:01:53.737 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9140. 2018-08-15 14:01:53.737 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9141. 2018-08-15 14:01:53.741 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9142. 2018-08-15 14:01:53.744 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9143. 2018-08-15 14:01:53.737 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9144. 2018-08-15 14:01:53.737 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9145. 2018-08-15 14:01:53.738 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9146. 2018-08-15 14:01:53.738 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9147. 2018-08-15 14:01:53.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9148. 2018-08-15 14:01:53.740 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9149. 2018-08-15 14:01:53.745 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9150. 2018-08-15 14:01:53.745 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9151. 2018-08-15 14:01:53.745 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9152. 2018-08-15 14:01:53.745 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9153. 2018-08-15 14:01:53.746 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9154. 2018-08-15 14:01:53.746 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9155. 2018-08-15 14:01:53.747 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9156. 2018-08-15 14:01:53.748 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9157. 2018-08-15 14:01:53.748 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9158. 2018-08-15 14:01:53.748 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9159. 2018-08-15 14:01:53.751 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9160. 2018-08-15 14:01:53.748 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9161. 2018-08-15 14:01:53.753 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9162. 2018-08-15 14:01:53.748 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9163. 2018-08-15 14:01:53.749 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9164. 2018-08-15 14:01:53.751 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9165. 2018-08-15 14:01:53.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9166. 2018-08-15 14:01:53.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9167. 2018-08-15 14:01:53.757 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9168. 2018-08-15 14:01:53.757 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9169. 2018-08-15 14:01:53.758 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9170. 2018-08-15 14:01:53.758 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9171. 2018-08-15 14:01:53.758 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9172. 2018-08-15 14:01:53.759 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9173. 2018-08-15 14:01:53.759 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9174. 2018-08-15 14:01:53.759 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9175. 2018-08-15 14:01:53.759 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9176. 2018-08-15 14:01:53.760 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9177. 2018-08-15 14:01:53.760 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9178. 2018-08-15 14:01:53.760 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9179. 2018-08-15 14:01:53.760 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9180. 2018-08-15 14:01:53.761 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9181. 2018-08-15 14:01:53.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  9182. 2018-08-15 14:01:53.761 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9183. 2018-08-15 14:01:53.762 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9184. 2018-08-15 14:01:53.762 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9185. 2018-08-15 14:01:53.763 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9186. 2018-08-15 14:01:53.763 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9187. 2018-08-15 14:01:53.763 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9188. 2018-08-15 14:01:53.763 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9189. 2018-08-15 14:01:53.764 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9190. 2018-08-15 14:01:53.764 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9191. 2018-08-15 14:01:53.765 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9192. 2018-08-15 14:01:53.764 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9193. 2018-08-15 14:01:53.765 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9194. 2018-08-15 14:01:53.766 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9195. 2018-08-15 14:01:53.766 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9196. 2018-08-15 14:01:53.766 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9197. 2018-08-15 14:01:53.766 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9198. 2018-08-15 14:01:53.766 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9199. 2018-08-15 14:01:53.766 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9200. 2018-08-15 14:01:53.768 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9201. 2018-08-15 14:01:53.766 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9202. 2018-08-15 14:01:53.767 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9203. 2018-08-15 14:01:53.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9204. 2018-08-15 14:01:53.768 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9205. 2018-08-15 14:01:53.769 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9206. 2018-08-15 14:01:53.768 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9207. 2018-08-15 14:01:53.770 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9208. 2018-08-15 14:01:53.768 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9209. 2018-08-15 14:01:53.769 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9210. 2018-08-15 14:01:53.769 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  9211. 2018-08-15 14:01:53.769 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9212. 2018-08-15 14:01:53.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9213. 2018-08-15 14:01:53.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9214. 2018-08-15 14:01:53.770 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9215. 2018-08-15 14:01:53.771 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9216. 2018-08-15 14:01:53.771 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9217. 2018-08-15 14:01:53.772 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9218. 2018-08-15 14:01:53.773 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9219. 2018-08-15 14:01:53.775 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9220. 2018-08-15 14:01:53.773 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9221. 2018-08-15 14:01:53.777 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9222. 2018-08-15 14:01:53.774 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9223. 2018-08-15 14:01:53.775 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9224. 2018-08-15 14:01:53.778 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9225. 2018-08-15 14:01:53.778 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9226. 2018-08-15 14:01:53.776 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9227. 2018-08-15 14:01:53.777 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9228. 2018-08-15 14:01:53.781 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9229. 2018-08-15 14:01:53.777 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9230. 2018-08-15 14:01:53.777 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9231. 2018-08-15 14:01:53.778 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9232. 2018-08-15 14:01:53.781 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9233. 2018-08-15 14:01:53.781 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9234. 2018-08-15 14:01:53.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9235. 2018-08-15 14:01:53.781 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9236. 2018-08-15 14:01:53.781 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9237. 2018-08-15 14:01:53.782 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9238. 2018-08-15 14:01:53.782 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9239. 2018-08-15 14:01:53.782 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9240. 2018-08-15 14:01:53.782 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9241. 2018-08-15 14:01:53.782 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  9242. 2018-08-15 14:01:53.783 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9243. 2018-08-15 14:01:53.783 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9244. 2018-08-15 14:01:53.783 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9245. 2018-08-15 14:01:53.784 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9246. 2018-08-15 14:01:53.784 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9247. 2018-08-15 14:01:53.784 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9248. 2018-08-15 14:01:53.784 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  9249. 2018-08-15 14:01:53.785 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9250. 2018-08-15 14:01:53.785 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9251. 2018-08-15 14:01:53.785 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9252. 2018-08-15 14:01:53.785 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9253. 2018-08-15 14:01:53.785 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9254. 2018-08-15 14:01:53.786 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9255. 2018-08-15 14:01:53.786 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9256. 2018-08-15 14:01:53.786 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9257. 2018-08-15 14:01:53.787 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9258. 2018-08-15 14:01:53.787 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9259. 2018-08-15 14:01:53.789 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9260. 2018-08-15 14:01:53.790 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9261. 2018-08-15 14:01:53.790 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9262. 2018-08-15 14:01:53.787 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9263. 2018-08-15 14:01:53.787 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9264. 2018-08-15 14:01:53.787 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  9265. 2018-08-15 14:01:53.788 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9266. 2018-08-15 14:01:53.789 |-DEBUG [http-nio-8089-exec-20] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9267. 2018-08-15 14:01:53.790 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9268. 2018-08-15 14:01:53.790 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9269. 2018-08-15 14:01:53.790 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9270. 2018-08-15 14:01:53.790 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9271. 2018-08-15 14:01:53.790 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9272. 2018-08-15 14:01:53.790 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  9273. 2018-08-15 14:01:53.790 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9274. 2018-08-15 14:01:53.791 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9275. 2018-08-15 14:01:53.791 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9276. 2018-08-15 14:01:53.791 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  9277. 2018-08-15 14:01:53.792 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9278. 2018-08-15 14:01:53.792 |-INFO [http-nio-8089-exec-15] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9279. 2018-08-15 14:01:53.792 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9280. 2018-08-15 14:01:53.793 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9281. 2018-08-15 14:01:53.793 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9282. 2018-08-15 14:01:53.793 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9283. 2018-08-15 14:01:53.793 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9284. 2018-08-15 14:01:53.793 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9285. 2018-08-15 14:01:53.794 |-INFO [http-nio-8089-exec-20] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9286. 2018-08-15 14:01:53.794 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9287. 2018-08-15 14:01:53.795 |-INFO [http-nio-8089-exec-15] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9288. 2018-08-15 14:01:53.796 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9289. 2018-08-15 14:01:53.796 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9290. 2018-08-15 14:01:53.798 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9291. 2018-08-15 14:01:53.796 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  9292. 2018-08-15 14:01:53.796 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9293. 2018-08-15 14:01:53.796 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9294. 2018-08-15 14:01:53.796 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9295. 2018-08-15 14:01:53.797 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  9296. 2018-08-15 14:01:53.797 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9297. 2018-08-15 14:01:53.797 |-INFO [http-nio-8089-exec-20] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9298. 2018-08-15 14:01:53.797 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  9299. 2018-08-15 14:01:53.800 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9300. 2018-08-15 14:01:53.801 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  9301. 2018-08-15 14:01:53.801 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9302. 2018-08-15 14:01:53.801 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9303. 2018-08-15 14:01:53.802 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  9304. 2018-08-15 14:01:53.803 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9305. 2018-08-15 14:01:53.803 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9306. 2018-08-15 14:01:53.803 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9307. 2018-08-15 14:01:53.804 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9308. 2018-08-15 14:01:53.805 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  9309. 2018-08-15 14:01:53.805 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9310. 2018-08-15 14:01:53.806 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  9311. 2018-08-15 14:01:53.806 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9312. 2018-08-15 14:01:53.806 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9313. 2018-08-15 14:01:53.807 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  9314. 2018-08-15 14:01:53.807 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  9315. 2018-08-15 14:01:53.810 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9316. 2018-08-15 14:01:53.810 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  9317. 2018-08-15 14:01:53.811 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  9318. 2018-08-15 14:01:53.811 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  9319. 2018-08-15 14:01:53.813 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  9320. 2018-08-15 14:01:53.811 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  9321. 2018-08-15 14:01:53.813 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  9322. 2018-08-15 14:01:53.815 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9323. 2018-08-15 14:01:53.817 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9324. 2018-08-15 14:01:53.815 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  9325. 2018-08-15 14:01:53.817 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  9326. 2018-08-15 14:01:53.817 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  9327. 2018-08-15 14:01:53.818 |-ERROR [http-nio-8089-exec-11] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  9328. org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe
  9329. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  9330. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  9331. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  9332. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  9333. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  9334. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  9335. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  9336. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  9337. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  9338. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  9339. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  9340. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  9341. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  9342. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  9343. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  9344. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  9345. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  9346. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  9347. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  9348. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  9349. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  9350. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  9351. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  9352. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  9353. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  9354. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9355. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  9356. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9357. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9358. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  9359. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9360. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9361. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9362. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9363. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9364. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9365. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9366. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9367. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9368. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9369. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9370. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9371. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9372. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  9373. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9374. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9375. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  9376. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9377. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9378. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9379. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  9380. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  9381. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  9382. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9383. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  9384. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9385. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  9386. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9387. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  9388. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9389. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  9390. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9391. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  9392. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9393. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9394. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9395. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9396. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  9397. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9398. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  9399. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9400. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9401. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  9402. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9403. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9404. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  9405. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9406. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  9407. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9408. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9409. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  9410. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  9411. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  9412. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  9413. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9414. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9415. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  9416. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9417. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9418. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9419. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  9420. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9421. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9422. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9423. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  9424. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9425. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9426. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9427. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  9428. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9429. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9430. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9431. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  9432. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9433. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9434. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9435. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  9436. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  9437. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  9438. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  9439. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  9440. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  9441. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  9442. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  9443. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9444. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9445. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9446. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9447. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9448. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9449. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9450. at java.lang.Thread.run(Thread.java:745)
  9451. Caused by: java.io.IOException: Broken pipe
  9452. at sun.nio.ch.FileDispatcherImpl.write0(Native Method)
  9453. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
  9454. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  9455. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  9456. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  9457. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  9458. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  9459. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  9460. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  9461. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  9462. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  9463. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  9464. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  9465. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  9466. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  9467. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  9468. at org.apache.coyote.Response.action(Response.java:168)
  9469. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  9470. ... 121 common frames omitted
  9471. 2018-08-15 14:01:53.818 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  9472. 2018-08-15 14:01:53.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9473. 2018-08-15 14:01:53.822 |-WARN [http-nio-8089-exec-11] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [391] -| Failed to invoke @ExceptionHandler method: public java.lang.String com.xintong.visualinspection.controller.BaseController.exp(javax.servlet.http.HttpServletRequest,java.lang.Exception)
  9474. org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe
  9475. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  9476. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  9477. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  9478. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  9479. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  9480. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  9481. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  9482. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  9483. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  9484. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  9485. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  9486. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  9487. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  9488. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  9489. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:380)
  9490. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  9491. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  9492. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:74)
  9493. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1218)
  9494. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1030)
  9495. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
  9496. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  9497. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  9498. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  9499. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  9500. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  9501. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  9502. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  9503. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9504. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  9505. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9506. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9507. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  9508. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9509. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9510. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9511. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9512. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9513. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9514. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9515. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9516. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9517. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9518. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9519. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9520. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9521. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  9522. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9523. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9524. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  9525. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9526. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9527. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9528. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  9529. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  9530. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  9531. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9532. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  9533. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9534. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  9535. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9536. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  9537. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9538. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  9539. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9540. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  9541. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9542. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9543. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9544. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9545. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  9546. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9547. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  9548. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9549. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9550. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  9551. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9552. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9553. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  9554. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9555. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  9556. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9557. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9558. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  9559. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  9560. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  9561. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  9562. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9563. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9564. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  9565. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9566. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9567. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9568. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  9569. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9570. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9571. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9572. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  9573. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9574. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9575. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9576. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  9577. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9578. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9579. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9580. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  9581. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9582. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9583. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9584. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  9585. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  9586. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  9587. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  9588. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  9589. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  9590. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  9591. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  9592. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9593. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9594. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9595. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9596. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9597. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9598. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9599. at java.lang.Thread.run(Thread.java:745)
  9600. Caused by: java.io.IOException: Broken pipe
  9601. at sun.nio.ch.FileDispatcherImpl.write0(Native Method)
  9602. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
  9603. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  9604. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  9605. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  9606. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  9607. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  9608. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  9609. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  9610. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  9611. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  9612. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  9613. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  9614. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  9615. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  9616. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  9617. at org.apache.coyote.Response.action(Response.java:168)
  9618. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  9619. ... 124 common frames omitted
  9620. 2018-08-15 14:01:53.823 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  9621. 2018-08-15 14:01:53.824 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  9622. org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe
  9623. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  9624. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  9625. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  9626. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  9627. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  9628. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  9629. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  9630. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  9631. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  9632. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  9633. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  9634. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  9635. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  9636. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  9637. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  9638. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  9639. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  9640. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  9641. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  9642. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  9643. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  9644. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  9645. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  9646. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  9647. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  9648. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9649. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  9650. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9651. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9652. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  9653. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9654. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9655. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9656. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9657. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9658. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9659. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9660. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9661. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9662. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9663. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9664. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9665. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9666. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  9667. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9668. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9669. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  9670. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9671. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9672. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9673. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  9674. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  9675. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  9676. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9677. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  9678. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9679. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  9680. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9681. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  9682. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9683. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  9684. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9685. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  9686. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9687. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9688. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9689. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9690. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  9691. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9692. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  9693. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9694. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9695. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  9696. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9697. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9698. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  9699. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9700. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  9701. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9702. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9703. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  9704. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  9705. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  9706. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  9707. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9708. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9709. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  9710. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9711. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9712. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9713. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  9714. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9715. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9716. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9717. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  9718. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9719. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9720. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9721. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  9722. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9723. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9724. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9725. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  9726. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9727. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9728. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9729. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  9730. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  9731. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  9732. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  9733. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  9734. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  9735. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  9736. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  9737. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9738. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9739. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9740. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9741. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9742. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9743. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9744. at java.lang.Thread.run(Thread.java:745)
  9745. Caused by: java.io.IOException: Broken pipe
  9746. at sun.nio.ch.FileDispatcherImpl.write0(Native Method)
  9747. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
  9748. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  9749. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  9750. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  9751. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  9752. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  9753. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  9754. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  9755. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  9756. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  9757. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  9758. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  9759. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  9760. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  9761. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  9762. at org.apache.coyote.Response.action(Response.java:168)
  9763. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  9764. ... 121 common frames omitted
  9765. 2018-08-15 14:01:53.824 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9766. 2018-08-15 14:01:58.328 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9767. 2018-08-15 14:01:58.330 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9768. 2018-08-15 14:01:58.331 |-WARN [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [391] -| Failed to invoke @ExceptionHandler method: public java.lang.String com.xintong.visualinspection.controller.BaseController.exp(javax.servlet.http.HttpServletRequest,java.lang.Exception)
  9769. org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe
  9770. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:321)
  9771. at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:284)
  9772. at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:118)
  9773. at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297)
  9774. at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
  9775. at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
  9776. at org.springframework.util.StreamUtils.copy(StreamUtils.java:110)
  9777. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:107)
  9778. at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:41)
  9779. at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:227)
  9780. at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:247)
  9781. at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:174)
  9782. at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:81)
  9783. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:132)
  9784. at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:380)
  9785. at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:59)
  9786. at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:136)
  9787. at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:74)
  9788. at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1218)
  9789. at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1030)
  9790. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:980)
  9791. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  9792. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  9793. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  9794. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  9795. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  9796. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  9797. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  9798. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9799. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  9800. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9801. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9802. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  9803. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9804. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9805. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9806. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9807. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9808. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9809. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  9810. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9811. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9812. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9813. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9814. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9815. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9816. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  9817. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9818. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9819. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  9820. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9821. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9822. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9823. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  9824. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  9825. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  9826. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9827. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  9828. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9829. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  9830. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9831. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  9832. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9833. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  9834. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9835. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  9836. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9837. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  9838. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9839. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9840. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  9841. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9842. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  9843. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9844. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9845. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  9846. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9847. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9848. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  9849. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9850. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  9851. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9852. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  9853. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  9854. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  9855. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  9856. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  9857. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9858. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9859. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  9860. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9861. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9862. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9863. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  9864. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9865. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9866. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9867. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  9868. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9869. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9870. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9871. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  9872. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9873. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9874. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9875. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  9876. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  9877. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  9878. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  9879. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  9880. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  9881. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  9882. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  9883. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  9884. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  9885. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  9886. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  9887. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  9888. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  9889. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  9890. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  9891. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  9892. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  9893. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  9894. at java.lang.Thread.run(Thread.java:745)
  9895. Caused by: java.io.IOException: Broken pipe
  9896. at sun.nio.ch.FileDispatcherImpl.write0(Native Method)
  9897. at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:47)
  9898. at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
  9899. at sun.nio.ch.IOUtil.write(IOUtil.java:65)
  9900. at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:471)
  9901. at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:134)
  9902. at org.apache.tomcat.util.net.NioBlockingSelector.write(NioBlockingSelector.java:101)
  9903. at org.apache.tomcat.util.net.NioSelectorPool.write(NioSelectorPool.java:157)
  9904. at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1238)
  9905. at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:670)
  9906. at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:607)
  9907. at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:597)
  9908. at org.apache.coyote.http11.Http11OutputBuffer.flushBuffer(Http11OutputBuffer.java:519)
  9909. at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:260)
  9910. at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1494)
  9911. at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:279)
  9912. at org.apache.coyote.Response.action(Response.java:168)
  9913. at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:317)
  9914. ... 124 common frames omitted
  9915. 2018-08-15 14:01:58.337 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9916. 2018-08-15 14:01:58.372 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9917. 2018-08-15 14:01:58.373 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9918. 2018-08-15 14:01:58.377 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9919. 2018-08-15 14:01:58.377 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9920. 2018-08-15 14:01:58.377 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9921. 2018-08-15 14:01:58.377 |-INFO [http-nio-8089-exec-15] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9922. 2018-08-15 14:01:58.377 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9923. 2018-08-15 14:01:58.378 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9924. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9925. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9926. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9927. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9928. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9929. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9930. 2018-08-15 14:01:58.380 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9931. 2018-08-15 14:01:58.381 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9932. 2018-08-15 14:01:58.381 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9933. 2018-08-15 14:01:58.382 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9934. 2018-08-15 14:01:58.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9935. 2018-08-15 14:01:58.383 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9936. 2018-08-15 14:01:58.383 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9937. 2018-08-15 14:01:58.384 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9938. 2018-08-15 14:01:58.384 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9939. 2018-08-15 14:01:58.384 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9940. 2018-08-15 14:01:58.388 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9941. 2018-08-15 14:01:58.389 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9942. 2018-08-15 14:01:58.390 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9943. 2018-08-15 14:01:58.390 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9944. 2018-08-15 14:01:58.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9945. 2018-08-15 14:01:58.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9946. 2018-08-15 14:01:58.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9947. 2018-08-15 14:01:58.391 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9948. 2018-08-15 14:01:58.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9949. 2018-08-15 14:01:58.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9950. 2018-08-15 14:01:58.392 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9951. 2018-08-15 14:01:58.392 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9952. 2018-08-15 14:01:58.393 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9953. 2018-08-15 14:01:58.394 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9954. 2018-08-15 14:01:58.394 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9955. 2018-08-15 14:01:58.394 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9956. 2018-08-15 14:01:58.395 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9957. 2018-08-15 14:01:58.395 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9958. 2018-08-15 14:01:58.395 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9959. 2018-08-15 14:01:58.395 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9960. 2018-08-15 14:01:58.396 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9961. 2018-08-15 14:01:58.396 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9962. 2018-08-15 14:01:58.397 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  9963. 2018-08-15 14:01:58.397 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  9964. 2018-08-15 14:01:58.397 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  9965. 2018-08-15 14:01:58.398 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  9966. 2018-08-15 14:01:58.398 |-INFO [http-nio-8089-exec-15] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9967. 2018-08-15 14:01:58.398 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  9968. 2018-08-15 14:01:58.399 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  9969. 2018-08-15 14:01:58.399 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  9970. 2018-08-15 14:01:58.400 |-INFO [http-nio-8089-exec-15] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9971. 2018-08-15 14:01:58.401 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  9972. 2018-08-15 14:01:58.401 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  9973. 2018-08-15 14:01:58.401 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  9974. 2018-08-15 14:01:58.403 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  9975. 2018-08-15 14:01:58.406 |-DEBUG [http-nio-8089-exec-15] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  9976. 2018-08-15 14:01:58.413 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9977. 2018-08-15 14:01:58.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9978. 2018-08-15 14:01:58.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9979. 2018-08-15 14:01:58.417 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9980. 2018-08-15 14:01:58.417 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9981. 2018-08-15 14:01:58.418 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9982. 2018-08-15 14:01:58.423 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9983. 2018-08-15 14:01:58.424 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9984. 2018-08-15 14:01:58.424 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  9985. 2018-08-15 14:01:58.426 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  9986. 2018-08-15 14:01:58.427 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  9987. 2018-08-15 14:01:58.428 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9988. 2018-08-15 14:01:58.433 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  9989. 2018-08-15 14:01:58.433 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  9990. 2018-08-15 14:01:58.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  9991. 2018-08-15 14:01:58.504 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  9992. 2018-08-15 14:01:58.506 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  9993. 2018-08-15 14:01:58.506 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  9994. 2018-08-15 14:01:58.508 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  9995. 2018-08-15 14:01:58.509 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  9996. 2018-08-15 14:01:58.509 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  9997. 2018-08-15 14:01:58.515 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  9998. 2018-08-15 14:01:58.515 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  9999. 2018-08-15 14:01:58.515 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10000. 2018-08-15 14:01:58.517 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10001. 2018-08-15 14:01:58.519 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10002. 2018-08-15 14:01:58.520 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10003. 2018-08-15 14:01:58.523 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10004. 2018-08-15 14:01:58.524 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10005. 2018-08-15 14:01:58.525 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10006. 2018-08-15 14:01:58.584 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10007. 2018-08-15 14:01:58.585 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10008. 2018-08-15 14:01:58.586 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10009. 2018-08-15 14:01:58.587 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10010. 2018-08-15 14:01:58.588 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10011. 2018-08-15 14:01:58.588 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10012. 2018-08-15 14:01:58.588 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10013. 2018-08-15 14:01:58.588 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10014. 2018-08-15 14:01:58.589 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10015. 2018-08-15 14:01:58.590 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10016. 2018-08-15 14:01:58.590 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10017. 2018-08-15 14:01:58.591 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10018. 2018-08-15 14:01:58.591 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10019. 2018-08-15 14:01:58.591 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10020. 2018-08-15 14:01:58.591 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10021. 2018-08-15 14:01:58.591 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10022. 2018-08-15 14:01:58.592 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10023. 2018-08-15 14:01:58.592 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10024. 2018-08-15 14:01:58.599 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10025. 2018-08-15 14:01:58.600 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10026. 2018-08-15 14:01:58.600 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10027. 2018-08-15 14:01:58.601 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10028. 2018-08-15 14:01:58.601 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10029. 2018-08-15 14:01:58.602 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10030. 2018-08-15 14:01:58.602 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10031. 2018-08-15 14:01:58.602 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10032. 2018-08-15 14:01:58.603 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10033. 2018-08-15 14:01:58.603 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10034. 2018-08-15 14:01:58.604 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10035. 2018-08-15 14:01:58.605 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10036. 2018-08-15 14:01:58.607 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10037. 2018-08-15 14:01:58.607 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10038. 2018-08-15 14:01:58.608 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10039. 2018-08-15 14:01:58.608 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10040. 2018-08-15 14:01:58.608 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10041. 2018-08-15 14:01:58.609 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10042. 2018-08-15 14:01:58.610 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10043. 2018-08-15 14:01:58.611 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10044. 2018-08-15 14:01:58.612 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10045. 2018-08-15 14:01:58.614 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10046. 2018-08-15 14:01:58.615 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10047. 2018-08-15 14:01:58.618 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  10048. 2018-08-15 14:01:58.619 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10049. 2018-08-15 14:01:58.619 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10050. 2018-08-15 14:01:58.621 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10051. 2018-08-15 14:02:04.744 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10052. 2018-08-15 14:02:04.746 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10053. 2018-08-15 14:02:04.746 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10054. 2018-08-15 14:02:04.748 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10055. 2018-08-15 14:02:04.749 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10056. 2018-08-15 14:02:04.749 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10057. 2018-08-15 14:02:04.755 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10058. 2018-08-15 14:02:04.755 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10059. 2018-08-15 14:02:04.756 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10060. 2018-08-15 14:02:04.757 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10061. 2018-08-15 14:02:04.759 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10062. 2018-08-15 14:02:04.759 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10063. 2018-08-15 14:02:04.765 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  10064. 2018-08-15 14:02:04.765 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  10065. 2018-08-15 14:02:04.777 |-INFO [http-nio-8089-exec-11] org.springframework.beans.factory.xml.XmlBeanDefinitionReader [317] -| Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]
  10066. 2018-08-15 14:02:04.804 |-INFO [http-nio-8089-exec-11] org.springframework.jdbc.support.SQLErrorCodesFactory [127] -| SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase, Hana]
  10067. 2018-08-15 14:02:04.808 |-ERROR [http-nio-8089-exec-11] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  10068. org.springframework.jdbc.BadSqlGrammarException:
  10069. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10070. ### The error may exist in file [/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes/com/xintong/visualinspection/mapper/master/CheckItemMapper.xml]
  10071. ### The error may involve defaultParameterMap
  10072. ### The error occurred while setting parameters
  10073. ### SQL: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  10074. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10075. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10076. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  10077. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  10078. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  10079. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  10080. at com.sun.proxy.$Proxy99.selectList(Unknown Source)
  10081. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  10082. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  10083. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  10084. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  10085. at com.sun.proxy.$Proxy114.getAll(Unknown Source)
  10086. at com.xintong.visualinspection.service.impl.CheckItemServiceImpl.getAll(CheckItemServiceImpl.java:33)
  10087. at com.xintong.visualinspection.controller.CheckItemController.getAll(CheckItemController.java:94)
  10088. at com.xintong.visualinspection.controller.CheckItemController$$FastClassBySpringCGLIB$$1d678e75.invoke(<generated>)
  10089. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
  10090. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
  10091. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
  10092. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
  10093. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
  10094. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
  10095. at com.xintong.visualinspection.controller.CheckItemController$$EnhancerBySpringCGLIB$$ded56f89.getAll(<generated>)
  10096. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  10097. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  10098. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  10099. at java.lang.reflect.Method.invoke(Method.java:497)
  10100. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
  10101. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
  10102. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
  10103. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
  10104. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
  10105. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
  10106. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
  10107. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
  10108. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
  10109. at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
  10110. at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
  10111. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  10112. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
  10113. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
  10114. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10115. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  10116. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10117. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10118. at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
  10119. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10120. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10121. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10122. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  10123. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10124. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10125. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
  10126. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10127. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10128. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  10129. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10130. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10131. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10132. at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
  10133. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10134. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10135. at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
  10136. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10137. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10138. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10139. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
  10140. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
  10141. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
  10142. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10143. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
  10144. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10145. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  10146. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10147. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  10148. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10149. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
  10150. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10151. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  10152. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10153. at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:79)
  10154. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10155. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10156. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  10157. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10158. at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
  10159. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10160. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10161. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
  10162. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10163. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10164. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  10165. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10166. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  10167. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10168. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
  10169. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
  10170. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
  10171. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
  10172. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
  10173. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10174. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10175. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  10176. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10177. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10178. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10179. at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
  10180. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10181. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10182. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10183. at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  10184. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10185. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10186. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10187. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  10188. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10189. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10190. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10191. at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
  10192. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  10193. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
  10194. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
  10195. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
  10196. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
  10197. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
  10198. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
  10199. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
  10200. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
  10201. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
  10202. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
  10203. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
  10204. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
  10205. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
  10206. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
  10207. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  10208. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  10209. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  10210. at java.lang.Thread.run(Thread.java:745)
  10211. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10212. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  10213. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  10214. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  10215. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  10216. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  10217. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  10218. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  10219. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  10220. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  10221. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  10222. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  10223. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  10224. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  10225. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  10226. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  10227. at sun.reflect.GeneratedMethodAccessor226.invoke(Unknown Source)
  10228. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  10229. at java.lang.reflect.Method.invoke(Method.java:497)
  10230. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  10231. at com.sun.proxy.$Proxy151.execute(Unknown Source)
  10232. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  10233. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  10234. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  10235. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  10236. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  10237. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  10238. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  10239. at sun.reflect.GeneratedMethodAccessor224.invoke(Unknown Source)
  10240. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  10241. at java.lang.reflect.Method.invoke(Method.java:497)
  10242. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  10243. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  10244. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  10245. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  10246. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  10247. at com.sun.proxy.$Proxy149.query(Unknown Source)
  10248. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  10249. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  10250. at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source)
  10251. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  10252. at java.lang.reflect.Method.invoke(Method.java:497)
  10253. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  10254. ... 131 common frames omitted
  10255. 2018-08-15 14:02:04.809 |-WARN [http-nio-8089-exec-11] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.jdbc.BadSqlGrammarException:
  10256. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10257. ### The error may exist in file [/Users/wenhongquan/VisualInspection/VisualInspection_server/target/classes/com/xintong/visualinspection/mapper/master/CheckItemMapper.xml]
  10258. ### The error may involve defaultParameterMap
  10259. ### The error occurred while setting parameters
  10260. ### SQL: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  10261. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10262. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'status' in 'where clause'
  10263. 2018-08-15 14:07:20.386 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10264. 2018-08-15 14:07:20.390 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10265. 2018-08-15 14:07:20.390 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10266. 2018-08-15 14:07:20.392 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10267. 2018-08-15 14:07:20.394 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10268. 2018-08-15 14:07:20.394 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10269. 2018-08-15 14:07:20.400 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10270. 2018-08-15 14:07:20.400 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10271. 2018-08-15 14:07:20.400 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10272. 2018-08-15 14:07:20.402 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10273. 2018-08-15 14:07:20.404 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10274. 2018-08-15 14:07:20.404 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10275. 2018-08-15 14:07:20.405 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  10276. 2018-08-15 14:07:20.406 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  10277. 2018-08-15 14:07:20.417 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  10278. 2018-08-15 14:07:26.017 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10279. 2018-08-15 14:07:26.021 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10280. 2018-08-15 14:07:26.021 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10281. 2018-08-15 14:07:26.022 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10282. 2018-08-15 14:07:26.022 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10283. 2018-08-15 14:07:26.022 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10284. 2018-08-15 14:07:26.022 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10285. 2018-08-15 14:07:26.022 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10286. 2018-08-15 14:07:26.024 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10287. 2018-08-15 14:07:26.024 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10288. 2018-08-15 14:07:26.024 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10289. 2018-08-15 14:07:26.025 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10290. 2018-08-15 14:07:26.025 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10291. 2018-08-15 14:07:26.025 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10292. 2018-08-15 14:07:26.026 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10293. 2018-08-15 14:07:26.026 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10294. 2018-08-15 14:07:26.026 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10295. 2018-08-15 14:07:26.026 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10296. 2018-08-15 14:07:26.026 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10297. 2018-08-15 14:07:26.027 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10298. 2018-08-15 14:07:26.027 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10299. 2018-08-15 14:07:26.028 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10300. 2018-08-15 14:07:26.029 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10301. 2018-08-15 14:07:26.029 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10302. 2018-08-15 14:07:26.031 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10303. 2018-08-15 14:07:26.031 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10304. 2018-08-15 14:07:26.031 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10305. 2018-08-15 14:07:26.031 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10306. 2018-08-15 14:07:26.031 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10307. 2018-08-15 14:07:26.032 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10308. 2018-08-15 14:07:26.032 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10309. 2018-08-15 14:07:26.033 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10310. 2018-08-15 14:07:26.034 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10311. 2018-08-15 14:07:26.033 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10312. 2018-08-15 14:07:26.034 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10313. 2018-08-15 14:07:26.034 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10314. 2018-08-15 14:07:26.034 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10315. 2018-08-15 14:07:26.034 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10316. 2018-08-15 14:07:26.035 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10317. 2018-08-15 14:07:26.037 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10318. 2018-08-15 14:07:26.040 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10319. 2018-08-15 14:07:26.041 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10320. 2018-08-15 14:07:26.041 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10321. 2018-08-15 14:07:26.042 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10322. 2018-08-15 14:07:26.042 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10323. 2018-08-15 14:07:26.042 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10324. 2018-08-15 14:07:26.043 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10325. 2018-08-15 14:07:26.043 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10326. 2018-08-15 14:07:26.043 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10327. 2018-08-15 14:07:26.043 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10328. 2018-08-15 14:07:26.044 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10329. 2018-08-15 14:07:26.044 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10330. 2018-08-15 14:07:26.045 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10331. 2018-08-15 14:07:26.045 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10332. 2018-08-15 14:07:26.045 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10333. 2018-08-15 14:07:26.045 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10334. 2018-08-15 14:07:26.045 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10335. 2018-08-15 14:07:26.046 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10336. 2018-08-15 14:07:26.046 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10337. 2018-08-15 14:07:26.046 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10338. 2018-08-15 14:07:26.046 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10339. 2018-08-15 14:07:26.046 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10340. 2018-08-15 14:07:26.047 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10341. 2018-08-15 14:07:26.047 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10342. 2018-08-15 14:07:26.048 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10343. 2018-08-15 14:07:26.048 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10344. 2018-08-15 14:07:26.048 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10345. 2018-08-15 14:07:26.048 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10346. 2018-08-15 14:07:26.049 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10347. 2018-08-15 14:07:26.050 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10348. 2018-08-15 14:07:26.050 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10349. 2018-08-15 14:07:26.050 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10350. 2018-08-15 14:07:26.053 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10351. 2018-08-15 14:07:26.053 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10352. 2018-08-15 14:07:26.053 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10353. 2018-08-15 14:07:26.055 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10354. 2018-08-15 14:07:26.055 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10355. 2018-08-15 14:07:26.055 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10356. 2018-08-15 14:07:26.056 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10357. 2018-08-15 14:07:26.056 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 20(Integer)
  10358. 2018-08-15 14:07:26.057 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10359. 2018-08-15 14:07:26.058 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10360. 2018-08-15 14:07:26.059 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10361. 2018-08-15 14:07:26.059 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10362. 2018-08-15 14:07:26.059 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  10363. 2018-08-15 14:07:26.060 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 31
  10364. 2018-08-15 14:07:26.060 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10365. 2018-08-15 14:07:26.060 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10366. 2018-08-15 14:07:26.061 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  10367. 2018-08-15 14:07:26.061 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10368. 2018-08-15 14:07:26.061 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 40(Integer)
  10369. 2018-08-15 14:07:26.062 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10370. 2018-08-15 14:07:26.062 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10371. 2018-08-15 14:07:26.063 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  10372. 2018-08-15 14:07:26.063 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10373. 2018-08-15 14:07:26.064 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 0
  10374. 2018-08-15 14:07:26.064 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10375. 2018-08-15 14:07:26.064 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  10376. 2018-08-15 14:07:26.064 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10377. 2018-08-15 14:07:26.065 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10378. 2018-08-15 14:07:26.064 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10379. 2018-08-15 14:07:26.065 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10380. 2018-08-15 14:07:26.065 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10381. 2018-08-15 14:07:26.065 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10382. 2018-08-15 14:07:26.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10383. 2018-08-15 14:07:26.067 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10384. 2018-08-15 14:07:26.067 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10385. 2018-08-15 14:07:26.068 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10386. 2018-08-15 14:07:26.069 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10387. 2018-08-15 14:07:26.070 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10388. 2018-08-15 14:07:26.071 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10389. 2018-08-15 14:07:26.071 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10390. 2018-08-15 14:07:26.072 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10391. 2018-08-15 14:07:26.073 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10392. 2018-08-15 14:07:26.073 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10393. 2018-08-15 14:07:26.073 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10394. 2018-08-15 14:07:26.074 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10395. 2018-08-15 14:07:26.074 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10396. 2018-08-15 14:07:26.075 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10397. 2018-08-15 14:07:26.076 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10398. 2018-08-15 14:07:26.081 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10399. 2018-08-15 14:07:26.082 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10400. 2018-08-15 14:07:26.082 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10401. 2018-08-15 14:07:26.083 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10402. 2018-08-15 14:07:26.085 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10403. 2018-08-15 14:07:26.086 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10404. 2018-08-15 14:07:26.089 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10405. 2018-08-15 14:07:26.090 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10406. 2018-08-15 14:07:26.092 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  10407. 2018-08-15 14:07:27.083 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10408. 2018-08-15 14:07:27.084 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10409. 2018-08-15 14:07:27.085 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10410. 2018-08-15 14:07:27.085 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10411. 2018-08-15 14:07:27.086 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10412. 2018-08-15 14:07:27.087 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10413. 2018-08-15 14:07:27.088 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10414. 2018-08-15 14:07:27.088 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10415. 2018-08-15 14:07:27.088 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10416. 2018-08-15 14:07:27.088 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10417. 2018-08-15 14:07:27.089 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10418. 2018-08-15 14:07:27.089 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10419. 2018-08-15 14:07:27.089 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10420. 2018-08-15 14:07:27.089 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10421. 2018-08-15 14:07:27.090 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10422. 2018-08-15 14:07:27.090 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10423. 2018-08-15 14:07:27.090 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10424. 2018-08-15 14:07:27.091 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10425. 2018-08-15 14:07:27.091 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10426. 2018-08-15 14:07:27.091 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10427. 2018-08-15 14:07:27.092 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10428. 2018-08-15 14:07:27.092 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10429. 2018-08-15 14:07:27.092 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10430. 2018-08-15 14:07:27.092 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10431. 2018-08-15 14:07:27.093 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10432. 2018-08-15 14:07:27.093 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10433. 2018-08-15 14:07:27.093 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10434. 2018-08-15 14:07:27.093 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10435. 2018-08-15 14:07:27.093 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10436. 2018-08-15 14:07:27.094 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10437. 2018-08-15 14:07:27.097 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10438. 2018-08-15 14:07:27.097 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10439. 2018-08-15 14:07:27.097 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10440. 2018-08-15 14:07:27.100 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10441. 2018-08-15 14:07:27.101 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10442. 2018-08-15 14:07:27.102 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10443. 2018-08-15 14:07:27.102 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10444. 2018-08-15 14:07:27.102 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10445. 2018-08-15 14:07:27.103 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10446. 2018-08-15 14:07:27.103 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10447. 2018-08-15 14:07:27.103 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10448. 2018-08-15 14:07:27.103 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10449. 2018-08-15 14:07:27.103 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10450. 2018-08-15 14:07:27.103 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10451. 2018-08-15 14:07:27.104 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10452. 2018-08-15 14:07:27.104 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10453. 2018-08-15 14:07:27.104 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10454. 2018-08-15 14:07:27.105 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10455. 2018-08-15 14:07:27.105 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10456. 2018-08-15 14:07:27.105 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10457. 2018-08-15 14:07:27.106 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10458. 2018-08-15 14:07:27.106 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10459. 2018-08-15 14:07:27.106 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10460. 2018-08-15 14:07:27.106 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10461. 2018-08-15 14:07:27.107 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10462. 2018-08-15 14:07:27.107 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10463. 2018-08-15 14:07:27.107 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10464. 2018-08-15 14:07:27.108 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10465. 2018-08-15 14:07:27.108 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10466. 2018-08-15 14:07:27.110 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10467. 2018-08-15 14:07:27.111 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10468. 2018-08-15 14:07:27.112 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10469. 2018-08-15 14:07:27.112 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10470. 2018-08-15 14:07:27.115 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10471. 2018-08-15 14:07:27.115 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10472. 2018-08-15 14:07:27.116 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10473. 2018-08-15 14:07:27.116 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  10474. 2018-08-15 14:07:27.117 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10475. 2018-08-15 14:07:27.117 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10476. 2018-08-15 14:07:27.120 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  10477. 2018-08-15 14:07:27.120 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10478. 2018-08-15 14:07:27.121 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  10479. 2018-08-15 14:07:27.121 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10480. 2018-08-15 14:07:27.122 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10481. 2018-08-15 14:07:27.128 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10482. 2018-08-15 14:07:27.159 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10483. 2018-08-15 14:07:27.159 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10484. 2018-08-15 14:07:27.160 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10485. 2018-08-15 14:07:27.160 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10486. 2018-08-15 14:07:27.161 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10487. 2018-08-15 14:07:27.161 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10488. 2018-08-15 14:07:27.162 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10489. 2018-08-15 14:07:27.162 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10490. 2018-08-15 14:07:27.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10491. 2018-08-15 14:07:27.162 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10492. 2018-08-15 14:07:27.162 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10493. 2018-08-15 14:07:27.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10494. 2018-08-15 14:07:27.164 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10495. 2018-08-15 14:07:27.164 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10496. 2018-08-15 14:07:27.165 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10497. 2018-08-15 14:07:27.165 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10498. 2018-08-15 14:07:27.165 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10499. 2018-08-15 14:07:27.165 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10500. 2018-08-15 14:07:27.165 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10501. 2018-08-15 14:07:27.165 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10502. 2018-08-15 14:07:27.166 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10503. 2018-08-15 14:07:27.166 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10504. 2018-08-15 14:07:27.166 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10505. 2018-08-15 14:07:27.166 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10506. 2018-08-15 14:07:27.172 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10507. 2018-08-15 14:07:27.173 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10508. 2018-08-15 14:07:27.173 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10509. 2018-08-15 14:07:27.173 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10510. 2018-08-15 14:07:27.174 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10511. 2018-08-15 14:07:27.174 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10512. 2018-08-15 14:07:27.174 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10513. 2018-08-15 14:07:27.175 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10514. 2018-08-15 14:07:27.175 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10515. 2018-08-15 14:07:27.175 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10516. 2018-08-15 14:07:27.175 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10517. 2018-08-15 14:07:27.176 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10518. 2018-08-15 14:07:27.176 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10519. 2018-08-15 14:07:27.176 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10520. 2018-08-15 14:07:27.177 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10521. 2018-08-15 14:07:27.177 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10522. 2018-08-15 14:07:27.178 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10523. 2018-08-15 14:07:27.178 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10524. 2018-08-15 14:07:27.178 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10525. 2018-08-15 14:07:27.179 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10526. 2018-08-15 14:07:27.179 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10527. 2018-08-15 14:07:27.179 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  10528. 2018-08-15 14:07:27.179 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10529. 2018-08-15 14:07:27.179 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10530. 2018-08-15 14:07:27.179 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  10531. 2018-08-15 14:07:27.180 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  10532. 2018-08-15 14:07:27.180 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10533. 2018-08-15 14:07:27.180 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  10534. 2018-08-15 14:07:27.180 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10535. 2018-08-15 14:07:27.181 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  10536. 2018-08-15 14:07:27.181 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10537. 2018-08-15 14:07:27.182 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10538. 2018-08-15 14:07:27.182 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10539. 2018-08-15 14:07:27.183 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10540. 2018-08-15 14:07:27.183 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  10541. 2018-08-15 14:07:27.185 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  10542. 2018-08-15 14:07:27.190 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10543. 2018-08-15 14:07:27.192 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10544. 2018-08-15 14:07:27.192 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10545. 2018-08-15 14:07:27.194 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10546. 2018-08-15 14:07:27.195 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10547. 2018-08-15 14:07:27.195 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10548. 2018-08-15 14:07:27.201 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10549. 2018-08-15 14:07:27.202 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10550. 2018-08-15 14:07:27.202 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10551. 2018-08-15 14:07:27.204 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10552. 2018-08-15 14:07:27.206 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10553. 2018-08-15 14:07:27.207 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10554. 2018-08-15 14:07:27.211 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10555. 2018-08-15 14:07:27.212 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10556. 2018-08-15 14:07:27.241 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  10557. 2018-08-15 14:07:27.267 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10558. 2018-08-15 14:07:27.269 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10559. 2018-08-15 14:07:27.270 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10560. 2018-08-15 14:07:27.272 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10561. 2018-08-15 14:07:27.272 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10562. 2018-08-15 14:07:27.273 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10563. 2018-08-15 14:07:27.278 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10564. 2018-08-15 14:07:27.279 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10565. 2018-08-15 14:07:27.279 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10566. 2018-08-15 14:07:27.281 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10567. 2018-08-15 14:07:27.283 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10568. 2018-08-15 14:07:27.283 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10569. 2018-08-15 14:07:27.286 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10570. 2018-08-15 14:07:27.287 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10571. 2018-08-15 14:07:27.288 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10572. 2018-08-15 14:07:27.377 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10573. 2018-08-15 14:07:27.380 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10574. 2018-08-15 14:07:27.380 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10575. 2018-08-15 14:07:27.382 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10576. 2018-08-15 14:07:27.383 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10577. 2018-08-15 14:07:27.383 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10578. 2018-08-15 14:07:27.389 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10579. 2018-08-15 14:07:27.389 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10580. 2018-08-15 14:07:27.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10581. 2018-08-15 14:07:27.391 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10582. 2018-08-15 14:07:27.393 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10583. 2018-08-15 14:07:27.394 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10584. 2018-08-15 14:07:28.938 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10585. 2018-08-15 14:07:28.940 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10586. 2018-08-15 14:07:28.940 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10587. 2018-08-15 14:07:28.943 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10588. 2018-08-15 14:07:28.943 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10589. 2018-08-15 14:07:28.975 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10590. 2018-08-15 14:07:28.975 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10591. 2018-08-15 14:07:30.179 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10592. 2018-08-15 14:07:30.182 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10593. 2018-08-15 14:07:30.182 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10594. 2018-08-15 14:07:30.182 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10595. 2018-08-15 14:07:30.182 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10596. 2018-08-15 14:07:30.184 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10597. 2018-08-15 14:07:30.185 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10598. 2018-08-15 14:07:30.185 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10599. 2018-08-15 14:07:30.185 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10600. 2018-08-15 14:07:30.185 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10601. 2018-08-15 14:07:30.185 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10602. 2018-08-15 14:07:30.187 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10603. 2018-08-15 14:07:30.187 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10604. 2018-08-15 14:07:30.187 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10605. 2018-08-15 14:07:30.191 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10606. 2018-08-15 14:07:30.193 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10607. 2018-08-15 14:07:30.194 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10608. 2018-08-15 14:07:30.194 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10609. 2018-08-15 14:07:30.194 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10610. 2018-08-15 14:07:30.194 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10611. 2018-08-15 14:07:30.194 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10612. 2018-08-15 14:07:30.195 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10613. 2018-08-15 14:07:30.195 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10614. 2018-08-15 14:07:30.197 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10615. 2018-08-15 14:07:30.197 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10616. 2018-08-15 14:07:30.199 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10617. 2018-08-15 14:07:30.199 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10618. 2018-08-15 14:07:30.200 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10619. 2018-08-15 14:07:30.200 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10620. 2018-08-15 14:07:30.206 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  10621. 2018-08-15 14:07:30.207 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  10622. 2018-08-15 14:07:30.215 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  10623. 2018-08-15 14:07:30.730 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10624. 2018-08-15 14:07:30.732 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10625. 2018-08-15 14:07:30.732 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10626. 2018-08-15 14:07:30.734 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10627. 2018-08-15 14:07:30.735 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10628. 2018-08-15 14:07:30.735 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10629. 2018-08-15 14:07:30.742 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10630. 2018-08-15 14:07:30.743 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10631. 2018-08-15 14:07:30.743 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10632. 2018-08-15 14:07:30.745 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10633. 2018-08-15 14:07:30.748 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10634. 2018-08-15 14:07:30.749 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10635. 2018-08-15 14:07:30.755 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| ==> Preparing: SELECT * FROM check_rule WHERE rule_type = ?
  10636. 2018-08-15 14:07:30.756 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| ==> Parameters: 6(String)
  10637. 2018-08-15 14:07:30.757 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| <== Total: 1
  10638. 2018-08-15 14:07:30.758 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Preparing: SELECT t.*,c.name AS i_name ,c.score ,c.id AS i_id ,c.parent_id FROM (SELECT a.*,b.* FROM check_rule a left join check_rule_item b on a.id=b.rule_id WHERE a.id = ?) t LEFT JOIN check_item c ON t.item_id = c.id
  10639. 2018-08-15 14:07:30.758 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Parameters: 25(Long)
  10640. 2018-08-15 14:07:30.763 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| <== Total: 80
  10641. 2018-08-15 14:07:30.763 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  10642. 2018-08-15 14:07:30.764 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  10643. 2018-08-15 14:07:30.771 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  10644. 2018-08-15 14:07:46.638 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10645. 2018-08-15 14:07:46.640 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10646. 2018-08-15 14:07:46.641 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10647. 2018-08-15 14:07:46.641 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10648. 2018-08-15 14:07:46.641 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10649. 2018-08-15 14:07:46.641 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10650. 2018-08-15 14:07:46.641 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10651. 2018-08-15 14:07:46.641 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10652. 2018-08-15 14:07:46.644 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10653. 2018-08-15 14:07:46.645 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10654. 2018-08-15 14:07:46.645 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10655. 2018-08-15 14:07:46.645 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10656. 2018-08-15 14:07:46.644 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10657. 2018-08-15 14:07:46.645 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10658. 2018-08-15 14:07:46.648 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10659. 2018-08-15 14:07:46.645 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10660. 2018-08-15 14:07:46.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10661. 2018-08-15 14:07:46.648 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10662. 2018-08-15 14:07:46.648 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10663. 2018-08-15 14:07:46.648 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10664. 2018-08-15 14:07:46.648 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10665. 2018-08-15 14:07:46.649 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10666. 2018-08-15 14:07:46.649 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10667. 2018-08-15 14:07:46.650 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10668. 2018-08-15 14:07:46.650 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10669. 2018-08-15 14:07:46.650 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10670. 2018-08-15 14:07:46.650 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10671. 2018-08-15 14:07:46.650 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10672. 2018-08-15 14:07:46.651 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10673. 2018-08-15 14:07:46.651 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10674. 2018-08-15 14:07:46.651 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10675. 2018-08-15 14:07:46.652 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10676. 2018-08-15 14:07:46.652 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10677. 2018-08-15 14:07:46.653 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10678. 2018-08-15 14:07:46.653 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10679. 2018-08-15 14:07:46.653 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10680. 2018-08-15 14:07:46.658 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10681. 2018-08-15 14:07:46.659 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10682. 2018-08-15 14:07:46.659 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10683. 2018-08-15 14:07:46.659 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10684. 2018-08-15 14:07:46.659 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10685. 2018-08-15 14:07:46.660 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10686. 2018-08-15 14:07:46.661 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10687. 2018-08-15 14:07:46.661 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10688. 2018-08-15 14:07:46.662 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10689. 2018-08-15 14:07:46.662 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10690. 2018-08-15 14:07:46.662 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10691. 2018-08-15 14:07:46.662 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10692. 2018-08-15 14:07:46.664 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10693. 2018-08-15 14:07:46.664 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10694. 2018-08-15 14:07:46.664 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10695. 2018-08-15 14:07:46.664 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10696. 2018-08-15 14:07:46.664 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10697. 2018-08-15 14:07:46.665 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10698. 2018-08-15 14:07:46.665 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10699. 2018-08-15 14:07:46.665 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10700. 2018-08-15 14:07:46.665 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10701. 2018-08-15 14:07:46.665 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10702. 2018-08-15 14:07:46.666 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10703. 2018-08-15 14:07:46.666 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10704. 2018-08-15 14:07:46.666 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10705. 2018-08-15 14:07:46.666 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10706. 2018-08-15 14:07:46.666 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10707. 2018-08-15 14:07:46.667 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10708. 2018-08-15 14:07:46.667 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10709. 2018-08-15 14:07:46.668 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10710. 2018-08-15 14:07:46.668 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10711. 2018-08-15 14:07:46.669 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10712. 2018-08-15 14:07:46.669 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10713. 2018-08-15 14:07:46.670 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10714. 2018-08-15 14:07:46.670 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10715. 2018-08-15 14:07:46.670 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10716. 2018-08-15 14:07:46.671 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10717. 2018-08-15 14:07:46.671 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10718. 2018-08-15 14:07:46.671 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10719. 2018-08-15 14:07:46.672 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10720. 2018-08-15 14:07:46.672 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  10721. 2018-08-15 14:07:46.674 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10722. 2018-08-15 14:07:46.674 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10723. 2018-08-15 14:07:46.674 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10724. 2018-08-15 14:07:46.675 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10725. 2018-08-15 14:07:46.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 20(Integer)
  10726. 2018-08-15 14:07:46.676 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  10727. 2018-08-15 14:07:46.676 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10728. 2018-08-15 14:07:46.676 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10729. 2018-08-15 14:07:46.676 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10730. 2018-08-15 14:07:46.677 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10731. 2018-08-15 14:07:46.677 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10732. 2018-08-15 14:07:46.677 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10733. 2018-08-15 14:07:46.677 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 40(Integer)
  10734. 2018-08-15 14:07:46.677 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  10735. 2018-08-15 14:07:46.678 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10736. 2018-08-15 14:07:46.678 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 31
  10737. 2018-08-15 14:07:46.679 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10738. 2018-08-15 14:07:46.680 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 0
  10739. 2018-08-15 14:07:46.680 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10740. 2018-08-15 14:07:46.680 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10741. 2018-08-15 14:07:46.680 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10742. 2018-08-15 14:07:46.681 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10743. 2018-08-15 14:07:46.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10744. 2018-08-15 14:07:46.681 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10745. 2018-08-15 14:07:46.681 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10746. 2018-08-15 14:07:46.681 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  10747. 2018-08-15 14:07:46.683 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10748. 2018-08-15 14:07:46.683 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10749. 2018-08-15 14:07:46.683 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10750. 2018-08-15 14:07:46.683 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10751. 2018-08-15 14:07:46.685 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10752. 2018-08-15 14:07:46.688 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10753. 2018-08-15 14:07:46.690 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10754. 2018-08-15 14:07:46.690 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10755. 2018-08-15 14:07:46.691 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10756. 2018-08-15 14:07:46.691 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10757. 2018-08-15 14:07:46.692 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10758. 2018-08-15 14:07:46.692 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10759. 2018-08-15 14:07:46.692 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10760. 2018-08-15 14:07:46.692 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10761. 2018-08-15 14:07:46.693 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10762. 2018-08-15 14:07:46.696 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10763. 2018-08-15 14:07:46.697 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10764. 2018-08-15 14:07:46.697 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10765. 2018-08-15 14:07:46.698 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10766. 2018-08-15 14:07:46.698 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10767. 2018-08-15 14:07:46.699 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10768. 2018-08-15 14:07:46.700 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10769. 2018-08-15 14:07:46.701 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10770. 2018-08-15 14:07:46.701 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10771. 2018-08-15 14:07:46.702 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10772. 2018-08-15 14:07:46.703 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  10773. 2018-08-15 14:07:48.569 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10774. 2018-08-15 14:07:48.570 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10775. 2018-08-15 14:07:48.571 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10776. 2018-08-15 14:07:48.571 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10777. 2018-08-15 14:07:48.572 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10778. 2018-08-15 14:07:48.572 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10779. 2018-08-15 14:07:48.572 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10780. 2018-08-15 14:07:48.573 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10781. 2018-08-15 14:07:48.573 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10782. 2018-08-15 14:07:48.573 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10783. 2018-08-15 14:07:48.574 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10784. 2018-08-15 14:07:48.574 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10785. 2018-08-15 14:07:48.574 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10786. 2018-08-15 14:07:48.574 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10787. 2018-08-15 14:07:48.575 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10788. 2018-08-15 14:07:48.575 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10789. 2018-08-15 14:07:48.575 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10790. 2018-08-15 14:07:48.576 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10791. 2018-08-15 14:07:48.576 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10792. 2018-08-15 14:07:48.576 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10793. 2018-08-15 14:07:48.576 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10794. 2018-08-15 14:07:48.576 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10795. 2018-08-15 14:07:48.576 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10796. 2018-08-15 14:07:48.577 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10797. 2018-08-15 14:07:48.577 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10798. 2018-08-15 14:07:48.577 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10799. 2018-08-15 14:07:48.577 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10800. 2018-08-15 14:07:48.581 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10801. 2018-08-15 14:07:48.582 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10802. 2018-08-15 14:07:48.582 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10803. 2018-08-15 14:07:48.583 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10804. 2018-08-15 14:07:48.583 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10805. 2018-08-15 14:07:48.583 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10806. 2018-08-15 14:07:48.585 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10807. 2018-08-15 14:07:48.585 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10808. 2018-08-15 14:07:48.585 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10809. 2018-08-15 14:07:48.586 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10810. 2018-08-15 14:07:48.586 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10811. 2018-08-15 14:07:48.587 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10812. 2018-08-15 14:07:48.587 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10813. 2018-08-15 14:07:48.587 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10814. 2018-08-15 14:07:48.587 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10815. 2018-08-15 14:07:48.587 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10816. 2018-08-15 14:07:48.588 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10817. 2018-08-15 14:07:48.589 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10818. 2018-08-15 14:07:48.589 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10819. 2018-08-15 14:07:48.589 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10820. 2018-08-15 14:07:48.589 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10821. 2018-08-15 14:07:48.589 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10822. 2018-08-15 14:07:48.590 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10823. 2018-08-15 14:07:48.590 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10824. 2018-08-15 14:07:48.591 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10825. 2018-08-15 14:07:48.591 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10826. 2018-08-15 14:07:48.592 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10827. 2018-08-15 14:07:48.592 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10828. 2018-08-15 14:07:48.592 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10829. 2018-08-15 14:07:48.592 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10830. 2018-08-15 14:07:48.593 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10831. 2018-08-15 14:07:48.593 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10832. 2018-08-15 14:07:48.593 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10833. 2018-08-15 14:07:48.594 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10834. 2018-08-15 14:07:48.594 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10835. 2018-08-15 14:07:48.595 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10836. 2018-08-15 14:07:48.599 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10837. 2018-08-15 14:07:48.600 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10838. 2018-08-15 14:07:48.601 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  10839. 2018-08-15 14:07:48.602 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  10840. 2018-08-15 14:07:48.602 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10841. 2018-08-15 14:07:48.602 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  10842. 2018-08-15 14:07:48.602 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10843. 2018-08-15 14:07:48.604 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10844. 2018-08-15 14:07:48.605 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  10845. 2018-08-15 14:07:48.606 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10846. 2018-08-15 14:07:48.606 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10847. 2018-08-15 14:07:48.612 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10848. 2018-08-15 14:07:48.654 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10849. 2018-08-15 14:07:48.654 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10850. 2018-08-15 14:07:48.654 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10851. 2018-08-15 14:07:48.655 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10852. 2018-08-15 14:07:48.656 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10853. 2018-08-15 14:07:48.656 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10854. 2018-08-15 14:07:48.656 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10855. 2018-08-15 14:07:48.656 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10856. 2018-08-15 14:07:48.656 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10857. 2018-08-15 14:07:48.656 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10858. 2018-08-15 14:07:48.657 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10859. 2018-08-15 14:07:48.657 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10860. 2018-08-15 14:07:48.658 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10861. 2018-08-15 14:07:48.659 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10862. 2018-08-15 14:07:48.659 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10863. 2018-08-15 14:07:48.659 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10864. 2018-08-15 14:07:48.659 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10865. 2018-08-15 14:07:48.659 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10866. 2018-08-15 14:07:48.660 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10867. 2018-08-15 14:07:48.660 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10868. 2018-08-15 14:07:48.660 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10869. 2018-08-15 14:07:48.660 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10870. 2018-08-15 14:07:48.660 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10871. 2018-08-15 14:07:48.661 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10872. 2018-08-15 14:07:48.665 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10873. 2018-08-15 14:07:48.666 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10874. 2018-08-15 14:07:48.666 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10875. 2018-08-15 14:07:48.666 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10876. 2018-08-15 14:07:48.667 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10877. 2018-08-15 14:07:48.667 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10878. 2018-08-15 14:07:48.667 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10879. 2018-08-15 14:07:48.668 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10880. 2018-08-15 14:07:48.668 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10881. 2018-08-15 14:07:48.668 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10882. 2018-08-15 14:07:48.668 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10883. 2018-08-15 14:07:48.668 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10884. 2018-08-15 14:07:48.669 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10885. 2018-08-15 14:07:48.669 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10886. 2018-08-15 14:07:48.669 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10887. 2018-08-15 14:07:48.669 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10888. 2018-08-15 14:07:48.670 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10889. 2018-08-15 14:07:48.670 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10890. 2018-08-15 14:07:48.670 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10891. 2018-08-15 14:07:48.671 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10892. 2018-08-15 14:07:48.671 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10893. 2018-08-15 14:07:48.671 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  10894. 2018-08-15 14:07:48.672 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10895. 2018-08-15 14:07:48.672 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  10896. 2018-08-15 14:07:48.672 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  10897. 2018-08-15 14:07:48.672 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10898. 2018-08-15 14:07:48.673 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  10899. 2018-08-15 14:07:48.673 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  10900. 2018-08-15 14:07:48.673 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10901. 2018-08-15 14:07:48.673 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  10902. 2018-08-15 14:07:48.674 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  10903. 2018-08-15 14:07:48.674 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  10904. 2018-08-15 14:07:48.675 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  10905. 2018-08-15 14:07:48.675 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  10906. 2018-08-15 14:07:48.675 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  10907. 2018-08-15 14:07:48.678 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  10908. 2018-08-15 14:07:48.683 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10909. 2018-08-15 14:07:48.685 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10910. 2018-08-15 14:07:48.685 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10911. 2018-08-15 14:07:48.687 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10912. 2018-08-15 14:07:48.687 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10913. 2018-08-15 14:07:48.688 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10914. 2018-08-15 14:07:48.694 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10915. 2018-08-15 14:07:48.695 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10916. 2018-08-15 14:07:48.695 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10917. 2018-08-15 14:07:48.696 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10918. 2018-08-15 14:07:48.699 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10919. 2018-08-15 14:07:48.700 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10920. 2018-08-15 14:07:48.705 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  10921. 2018-08-15 14:07:48.705 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  10922. 2018-08-15 14:07:48.733 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  10923. 2018-08-15 14:07:48.758 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10924. 2018-08-15 14:07:48.760 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10925. 2018-08-15 14:07:48.760 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10926. 2018-08-15 14:07:48.762 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10927. 2018-08-15 14:07:48.763 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10928. 2018-08-15 14:07:48.763 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10929. 2018-08-15 14:07:48.769 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10930. 2018-08-15 14:07:48.770 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10931. 2018-08-15 14:07:48.770 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10932. 2018-08-15 14:07:48.772 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10933. 2018-08-15 14:07:48.775 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10934. 2018-08-15 14:07:48.775 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10935. 2018-08-15 14:07:48.779 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  10936. 2018-08-15 14:07:48.780 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  10937. 2018-08-15 14:07:48.781 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10938. 2018-08-15 14:07:48.796 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10939. 2018-08-15 14:07:48.797 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10940. 2018-08-15 14:07:48.798 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10941. 2018-08-15 14:07:48.800 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10942. 2018-08-15 14:07:48.800 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10943. 2018-08-15 14:07:48.801 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10944. 2018-08-15 14:07:48.806 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10945. 2018-08-15 14:07:48.807 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10946. 2018-08-15 14:07:48.807 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10947. 2018-08-15 14:07:48.807 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10948. 2018-08-15 14:07:48.808 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10949. 2018-08-15 14:07:48.808 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10950. 2018-08-15 14:07:48.809 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10951. 2018-08-15 14:07:48.809 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10952. 2018-08-15 14:07:48.809 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10953. 2018-08-15 14:07:48.809 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10954. 2018-08-15 14:07:48.810 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10955. 2018-08-15 14:07:48.811 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10956. 2018-08-15 14:07:48.811 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10957. 2018-08-15 14:07:48.811 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10958. 2018-08-15 14:07:48.812 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10959. 2018-08-15 14:07:48.812 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10960. 2018-08-15 14:07:48.812 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10961. 2018-08-15 14:07:48.812 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10962. 2018-08-15 14:07:48.812 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  10963. 2018-08-15 14:07:48.813 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  10964. 2018-08-15 14:07:48.814 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  10965. 2018-08-15 14:07:48.818 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10966. 2018-08-15 14:07:48.819 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10967. 2018-08-15 14:07:48.819 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10968. 2018-08-15 14:07:48.820 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10969. 2018-08-15 14:07:48.821 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10970. 2018-08-15 14:07:49.367 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10971. 2018-08-15 14:07:49.367 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  10972. 2018-08-15 14:07:49.369 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10973. 2018-08-15 14:07:49.369 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  10974. 2018-08-15 14:07:49.370 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10975. 2018-08-15 14:07:49.372 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  10976. 2018-08-15 14:07:49.373 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10977. 2018-08-15 14:07:49.375 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  10978. 2018-08-15 14:07:49.375 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  10979. 2018-08-15 14:07:49.378 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  10980. 2018-08-15 14:07:49.380 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  10981. 2018-08-15 14:07:49.381 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  10982. 2018-08-15 14:07:49.382 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  10983. 2018-08-15 14:07:50.400 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10984. 2018-08-15 14:07:50.402 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  10985. 2018-08-15 14:07:50.402 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10986. 2018-08-15 14:07:50.403 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10987. 2018-08-15 14:07:50.404 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  10988. 2018-08-15 14:07:50.404 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  10989. 2018-08-15 14:07:50.405 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10990. 2018-08-15 14:07:50.405 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10991. 2018-08-15 14:07:50.410 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10992. 2018-08-15 14:07:50.410 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  10993. 2018-08-15 14:07:50.411 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  10994. 2018-08-15 14:07:50.412 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  10995. 2018-08-15 14:07:50.420 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10996. 2018-08-15 14:07:50.420 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  10997. 2018-08-15 14:07:50.421 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10998. 2018-08-15 14:07:50.421 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  10999. 2018-08-15 14:07:50.421 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11000. 2018-08-15 14:07:50.422 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11001. 2018-08-15 14:07:50.423 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11002. 2018-08-15 14:07:50.423 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11003. 2018-08-15 14:07:50.426 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11004. 2018-08-15 14:07:50.426 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11005. 2018-08-15 14:07:50.428 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11006. 2018-08-15 14:07:50.428 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11007. 2018-08-15 14:07:50.433 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11008. 2018-08-15 14:07:50.434 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11009. 2018-08-15 14:07:50.436 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11010. 2018-08-15 14:07:50.467 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  11011. 2018-08-15 14:07:50.467 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  11012. 2018-08-15 14:07:50.468 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  11013. 2018-08-15 14:07:50.470 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  11014. 2018-08-15 14:07:50.470 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  11015. 2018-08-15 14:07:50.472 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  11016. 2018-08-15 14:07:55.651 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11017. 2018-08-15 14:07:55.652 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11018. 2018-08-15 14:07:55.653 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11019. 2018-08-15 14:07:55.655 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11020. 2018-08-15 14:07:55.656 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11021. 2018-08-15 14:07:55.656 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11022. 2018-08-15 14:07:55.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11023. 2018-08-15 14:07:55.663 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11024. 2018-08-15 14:07:55.664 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11025. 2018-08-15 14:07:55.665 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11026. 2018-08-15 14:07:55.668 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11027. 2018-08-15 14:07:55.668 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11028. 2018-08-15 14:07:55.670 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  11029. 2018-08-15 14:07:55.670 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  11030. 2018-08-15 14:07:55.678 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  11031. 2018-08-15 14:09:18.744 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11032. 2018-08-15 14:09:18.744 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11033. 2018-08-15 14:09:18.747 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11034. 2018-08-15 14:09:18.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11035. 2018-08-15 14:09:18.748 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11036. 2018-08-15 14:09:18.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11037. 2018-08-15 14:09:18.750 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11038. 2018-08-15 14:09:18.750 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11039. 2018-08-15 14:09:18.751 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11040. 2018-08-15 14:09:18.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11041. 2018-08-15 14:09:18.752 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11042. 2018-08-15 14:09:18.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11043. 2018-08-15 14:09:18.760 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11044. 2018-08-15 14:09:18.760 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11045. 2018-08-15 14:09:18.762 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11046. 2018-08-15 14:09:18.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11047. 2018-08-15 14:09:18.763 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11048. 2018-08-15 14:09:18.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11049. 2018-08-15 14:09:18.765 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11050. 2018-08-15 14:09:18.765 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11051. 2018-08-15 14:09:18.768 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11052. 2018-08-15 14:09:18.768 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11053. 2018-08-15 14:09:18.769 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11054. 2018-08-15 14:09:18.769 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11055. 2018-08-15 14:09:18.772 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11056. 2018-08-15 14:09:18.773 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11057. 2018-08-15 14:09:18.774 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  11058. 2018-08-15 14:09:18.775 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  11059. 2018-08-15 14:09:18.775 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11060. 2018-08-15 14:09:18.776 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  11061. 2018-08-15 14:09:18.777 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  11062. 2018-08-15 14:09:18.777 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  11063. 2018-08-15 14:09:18.781 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  11064. 2018-08-15 14:09:21.336 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11065. 2018-08-15 14:09:21.336 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11066. 2018-08-15 14:09:21.338 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11067. 2018-08-15 14:09:21.338 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11068. 2018-08-15 14:09:21.338 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11069. 2018-08-15 14:09:21.339 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11070. 2018-08-15 14:09:21.341 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11071. 2018-08-15 14:09:21.341 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11072. 2018-08-15 14:09:21.342 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11073. 2018-08-15 14:09:21.342 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11074. 2018-08-15 14:09:21.342 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11075. 2018-08-15 14:09:21.342 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11076. 2018-08-15 14:09:21.349 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11077. 2018-08-15 14:09:21.349 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11078. 2018-08-15 14:09:21.350 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11079. 2018-08-15 14:09:21.350 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11080. 2018-08-15 14:09:21.350 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11081. 2018-08-15 14:09:21.350 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11082. 2018-08-15 14:09:21.352 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11083. 2018-08-15 14:09:21.352 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11084. 2018-08-15 14:09:21.353 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11085. 2018-08-15 14:09:21.353 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11086. 2018-08-15 14:09:21.354 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11087. 2018-08-15 14:09:21.354 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11088. 2018-08-15 14:09:21.355 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  11089. 2018-08-15 14:09:21.355 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Preparing: SELECT t.*,c.name AS i_name ,c.score ,c.id AS i_id ,c.parent_id FROM (SELECT a.*,b.* FROM check_rule a left join check_rule_item b on a.id=b.rule_id WHERE a.id = ?) t LEFT JOIN check_item c ON t.item_id = c.id
  11090. 2018-08-15 14:09:21.356 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  11091. 2018-08-15 14:09:21.356 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Parameters: 25(Long)
  11092. 2018-08-15 14:09:21.364 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| <== Total: 80
  11093. 2018-08-15 14:09:21.365 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  11094. 2018-08-15 14:09:21.365 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  11095. 2018-08-15 14:09:21.366 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  11096. 2018-08-15 14:09:21.373 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  11097. 2018-08-15 14:09:31.608 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11098. 2018-08-15 14:09:31.610 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11099. 2018-08-15 14:09:31.610 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11100. 2018-08-15 14:09:31.612 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11101. 2018-08-15 14:09:31.613 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11102. 2018-08-15 14:09:31.613 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11103. 2018-08-15 14:09:31.619 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11104. 2018-08-15 14:09:31.620 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11105. 2018-08-15 14:09:31.620 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11106. 2018-08-15 14:09:31.622 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11107. 2018-08-15 14:09:31.623 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11108. 2018-08-15 14:09:31.624 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11109. 2018-08-15 14:09:31.625 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  11110. 2018-08-15 14:09:31.625 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  11111. 2018-08-15 14:09:31.636 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  11112. 2018-08-15 14:09:32.811 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11113. 2018-08-15 14:09:32.811 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11114. 2018-08-15 14:09:32.812 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11115. 2018-08-15 14:09:32.812 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11116. 2018-08-15 14:09:32.813 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11117. 2018-08-15 14:09:32.813 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11118. 2018-08-15 14:09:32.815 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11119. 2018-08-15 14:09:32.815 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11120. 2018-08-15 14:09:32.816 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11121. 2018-08-15 14:09:32.816 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11122. 2018-08-15 14:09:32.816 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11123. 2018-08-15 14:09:32.816 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11124. 2018-08-15 14:09:32.823 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11125. 2018-08-15 14:09:32.824 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11126. 2018-08-15 14:09:32.824 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11127. 2018-08-15 14:09:32.824 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11128. 2018-08-15 14:09:32.824 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11129. 2018-08-15 14:09:32.825 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11130. 2018-08-15 14:09:32.826 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11131. 2018-08-15 14:09:32.826 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11132. 2018-08-15 14:09:32.828 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11133. 2018-08-15 14:09:32.829 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11134. 2018-08-15 14:09:32.829 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11135. 2018-08-15 14:09:32.829 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11136. 2018-08-15 14:09:32.833 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11137. 2018-08-15 14:09:32.833 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11138. 2018-08-15 14:09:32.834 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  11139. 2018-08-15 14:09:32.834 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  11140. 2018-08-15 14:09:32.835 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11141. 2018-08-15 14:09:32.835 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  11142. 2018-08-15 14:09:32.836 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  11143. 2018-08-15 14:09:32.836 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  11144. 2018-08-15 14:09:32.838 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  11145. 2018-08-15 14:09:49.008 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11146. 2018-08-15 14:09:49.011 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11147. 2018-08-15 14:09:49.012 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11148. 2018-08-15 14:09:49.013 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11149. 2018-08-15 14:09:49.013 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11150. 2018-08-15 14:09:49.015 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11151. 2018-08-15 14:09:49.014 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11152. 2018-08-15 14:09:49.015 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11153. 2018-08-15 14:09:49.015 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11154. 2018-08-15 14:09:49.016 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11155. 2018-08-15 14:09:49.017 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11156. 2018-08-15 14:09:49.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11157. 2018-08-15 14:09:49.016 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11158. 2018-08-15 14:09:49.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11159. 2018-08-15 14:09:49.018 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11160. 2018-08-15 14:09:49.018 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11161. 2018-08-15 14:09:49.019 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11162. 2018-08-15 14:09:49.019 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11163. 2018-08-15 14:09:49.019 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11164. 2018-08-15 14:09:49.020 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11165. 2018-08-15 14:09:49.020 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11166. 2018-08-15 14:09:49.020 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11167. 2018-08-15 14:09:49.020 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11168. 2018-08-15 14:09:49.021 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11169. 2018-08-15 14:09:49.021 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11170. 2018-08-15 14:09:49.022 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11171. 2018-08-15 14:09:49.022 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11172. 2018-08-15 14:09:49.022 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11173. 2018-08-15 14:09:49.023 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11174. 2018-08-15 14:09:49.023 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11175. 2018-08-15 14:09:49.023 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11176. 2018-08-15 14:09:49.023 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11177. 2018-08-15 14:09:49.024 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11178. 2018-08-15 14:09:49.024 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11179. 2018-08-15 14:09:49.024 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11180. 2018-08-15 14:09:49.024 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11181. 2018-08-15 14:09:49.024 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11182. 2018-08-15 14:09:49.025 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11183. 2018-08-15 14:09:49.025 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11184. 2018-08-15 14:09:49.028 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11185. 2018-08-15 14:09:49.028 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11186. 2018-08-15 14:09:49.029 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11187. 2018-08-15 14:09:49.030 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11188. 2018-08-15 14:09:49.032 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11189. 2018-08-15 14:09:49.033 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11190. 2018-08-15 14:09:49.033 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11191. 2018-08-15 14:09:49.033 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11192. 2018-08-15 14:09:49.034 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11193. 2018-08-15 14:09:49.033 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11194. 2018-08-15 14:09:49.034 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11195. 2018-08-15 14:09:49.034 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11196. 2018-08-15 14:09:49.035 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11197. 2018-08-15 14:09:49.035 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11198. 2018-08-15 14:09:49.035 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  11199. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11200. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11201. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11202. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11203. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  11204. 2018-08-15 14:09:49.036 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11205. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11206. 2018-08-15 14:09:49.036 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11207. 2018-08-15 14:09:49.037 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11208. 2018-08-15 14:09:49.037 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11209. 2018-08-15 14:09:49.038 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11210. 2018-08-15 14:09:49.038 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11211. 2018-08-15 14:09:49.039 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11212. 2018-08-15 14:09:49.039 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11213. 2018-08-15 14:09:49.039 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11214. 2018-08-15 14:09:49.039 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11215. 2018-08-15 14:09:49.040 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11216. 2018-08-15 14:09:49.040 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11217. 2018-08-15 14:09:49.043 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11218. 2018-08-15 14:09:49.043 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11219. 2018-08-15 14:09:49.044 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11220. 2018-08-15 14:09:49.044 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11221. 2018-08-15 14:09:49.044 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11222. 2018-08-15 14:09:49.045 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11223. 2018-08-15 14:09:49.045 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11224. 2018-08-15 14:09:49.045 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  11225. 2018-08-15 14:09:49.046 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11226. 2018-08-15 14:09:49.047 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11227. 2018-08-15 14:09:49.047 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 20(Integer)
  11228. 2018-08-15 14:09:49.047 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 40(Integer)
  11229. 2018-08-15 14:09:49.047 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11230. 2018-08-15 14:09:49.048 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11231. 2018-08-15 14:09:49.048 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11232. 2018-08-15 14:09:49.049 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  11233. 2018-08-15 14:09:49.049 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 0
  11234. 2018-08-15 14:09:49.049 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11235. 2018-08-15 14:09:49.050 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11236. 2018-08-15 14:09:49.050 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 31
  11237. 2018-08-15 14:09:49.050 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11238. 2018-08-15 14:09:49.050 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  11239. 2018-08-15 14:09:49.051 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11240. 2018-08-15 14:09:49.051 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11241. 2018-08-15 14:09:49.051 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11242. 2018-08-15 14:09:49.051 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  11243. 2018-08-15 14:09:49.052 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11244. 2018-08-15 14:09:49.053 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  11245. 2018-08-15 14:09:49.054 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  11246. 2018-08-15 14:09:49.054 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11247. 2018-08-15 14:09:49.054 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11248. 2018-08-15 14:09:49.055 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11249. 2018-08-15 14:09:49.055 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  11250. 2018-08-15 14:09:49.055 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11251. 2018-08-15 14:09:49.056 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11252. 2018-08-15 14:09:49.059 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11253. 2018-08-15 14:09:49.059 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11254. 2018-08-15 14:09:49.061 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11255. 2018-08-15 14:09:49.061 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11256. 2018-08-15 14:09:49.062 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11257. 2018-08-15 14:09:49.062 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11258. 2018-08-15 14:09:49.062 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11259. 2018-08-15 14:09:49.063 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11260. 2018-08-15 14:09:49.064 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11261. 2018-08-15 14:09:49.064 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11262. 2018-08-15 14:09:49.066 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11263. 2018-08-15 14:09:49.066 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11264. 2018-08-15 14:09:49.067 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11265. 2018-08-15 14:09:49.072 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11266. 2018-08-15 14:09:49.082 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11267. 2018-08-15 14:09:49.082 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11268. 2018-08-15 14:09:49.084 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11269. 2018-08-15 14:09:49.086 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11270. 2018-08-15 14:09:49.086 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11271. 2018-08-15 14:09:49.090 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11272. 2018-08-15 14:09:49.090 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11273. 2018-08-15 14:09:49.092 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11274. 2018-08-15 14:09:49.850 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11275. 2018-08-15 14:09:49.852 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11276. 2018-08-15 14:09:49.852 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11277. 2018-08-15 14:09:49.852 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11278. 2018-08-15 14:09:49.853 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11279. 2018-08-15 14:09:49.853 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11280. 2018-08-15 14:09:49.854 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11281. 2018-08-15 14:09:49.854 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11282. 2018-08-15 14:09:49.854 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11283. 2018-08-15 14:09:49.854 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11284. 2018-08-15 14:09:49.855 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11285. 2018-08-15 14:09:49.855 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11286. 2018-08-15 14:09:49.855 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11287. 2018-08-15 14:09:49.855 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11288. 2018-08-15 14:09:49.856 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11289. 2018-08-15 14:09:49.856 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11290. 2018-08-15 14:09:49.857 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11291. 2018-08-15 14:09:49.857 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11292. 2018-08-15 14:09:49.857 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11293. 2018-08-15 14:09:49.857 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11294. 2018-08-15 14:09:49.858 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11295. 2018-08-15 14:09:49.858 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11296. 2018-08-15 14:09:49.858 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11297. 2018-08-15 14:09:49.858 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11298. 2018-08-15 14:09:49.858 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11299. 2018-08-15 14:09:49.858 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11300. 2018-08-15 14:09:49.859 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11301. 2018-08-15 14:09:49.863 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11302. 2018-08-15 14:09:49.863 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11303. 2018-08-15 14:09:49.863 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11304. 2018-08-15 14:09:49.863 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11305. 2018-08-15 14:09:49.864 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11306. 2018-08-15 14:09:49.864 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11307. 2018-08-15 14:09:49.865 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11308. 2018-08-15 14:09:49.866 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11309. 2018-08-15 14:09:49.866 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11310. 2018-08-15 14:09:49.866 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11311. 2018-08-15 14:09:49.868 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11312. 2018-08-15 14:09:49.868 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11313. 2018-08-15 14:09:49.869 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11314. 2018-08-15 14:09:49.869 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11315. 2018-08-15 14:09:49.869 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11316. 2018-08-15 14:09:49.870 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11317. 2018-08-15 14:09:49.870 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11318. 2018-08-15 14:09:49.870 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11319. 2018-08-15 14:09:49.870 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11320. 2018-08-15 14:09:49.871 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11321. 2018-08-15 14:09:49.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11322. 2018-08-15 14:09:49.871 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11323. 2018-08-15 14:09:49.872 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  11324. 2018-08-15 14:09:49.872 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11325. 2018-08-15 14:09:49.872 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11326. 2018-08-15 14:09:49.872 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11327. 2018-08-15 14:09:49.872 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  11328. 2018-08-15 14:09:49.873 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11329. 2018-08-15 14:09:49.874 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11330. 2018-08-15 14:09:49.874 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11331. 2018-08-15 14:09:49.875 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11332. 2018-08-15 14:09:49.875 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11333. 2018-08-15 14:09:49.875 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11334. 2018-08-15 14:09:49.876 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11335. 2018-08-15 14:09:49.877 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11336. 2018-08-15 14:09:49.878 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11337. 2018-08-15 14:09:49.882 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11338. 2018-08-15 14:09:49.883 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11339. 2018-08-15 14:09:49.883 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  11340. 2018-08-15 14:09:49.884 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  11341. 2018-08-15 14:09:49.884 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11342. 2018-08-15 14:09:49.885 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  11343. 2018-08-15 14:09:49.885 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11344. 2018-08-15 14:09:49.886 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  11345. 2018-08-15 14:09:49.887 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  11346. 2018-08-15 14:09:49.888 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11347. 2018-08-15 14:09:49.888 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11348. 2018-08-15 14:09:49.894 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11349. 2018-08-15 14:09:49.927 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11350. 2018-08-15 14:09:49.927 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11351. 2018-08-15 14:09:49.927 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11352. 2018-08-15 14:09:49.927 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11353. 2018-08-15 14:09:49.929 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11354. 2018-08-15 14:09:49.929 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11355. 2018-08-15 14:09:49.930 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11356. 2018-08-15 14:09:49.930 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11357. 2018-08-15 14:09:49.930 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11358. 2018-08-15 14:09:49.930 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11359. 2018-08-15 14:09:49.930 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11360. 2018-08-15 14:09:49.930 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11361. 2018-08-15 14:09:49.932 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11362. 2018-08-15 14:09:49.932 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11363. 2018-08-15 14:09:49.932 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11364. 2018-08-15 14:09:49.932 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11365. 2018-08-15 14:09:49.933 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11366. 2018-08-15 14:09:49.933 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11367. 2018-08-15 14:09:49.933 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11368. 2018-08-15 14:09:49.933 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11369. 2018-08-15 14:09:49.933 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11370. 2018-08-15 14:09:49.934 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11371. 2018-08-15 14:09:49.934 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11372. 2018-08-15 14:09:49.934 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11373. 2018-08-15 14:09:49.938 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11374. 2018-08-15 14:09:49.939 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11375. 2018-08-15 14:09:49.939 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11376. 2018-08-15 14:09:49.939 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11377. 2018-08-15 14:09:49.940 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11378. 2018-08-15 14:09:49.940 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11379. 2018-08-15 14:09:49.940 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11380. 2018-08-15 14:09:49.941 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11381. 2018-08-15 14:09:49.941 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11382. 2018-08-15 14:09:49.941 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11383. 2018-08-15 14:09:49.941 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11384. 2018-08-15 14:09:49.942 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11385. 2018-08-15 14:09:49.942 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11386. 2018-08-15 14:09:49.942 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11387. 2018-08-15 14:09:49.943 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11388. 2018-08-15 14:09:49.943 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11389. 2018-08-15 14:09:49.943 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11390. 2018-08-15 14:09:49.943 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11391. 2018-08-15 14:09:49.944 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11392. 2018-08-15 14:09:49.945 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11393. 2018-08-15 14:09:49.945 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11394. 2018-08-15 14:09:49.946 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11395. 2018-08-15 14:09:49.946 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11396. 2018-08-15 14:09:49.946 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  11397. 2018-08-15 14:09:49.946 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  11398. 2018-08-15 14:09:49.947 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  11399. 2018-08-15 14:09:49.947 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11400. 2018-08-15 14:09:49.947 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11401. 2018-08-15 14:09:49.947 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  11402. 2018-08-15 14:09:49.948 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  11403. 2018-08-15 14:09:49.948 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  11404. 2018-08-15 14:09:49.949 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11405. 2018-08-15 14:09:49.949 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  11406. 2018-08-15 14:09:49.949 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11407. 2018-08-15 14:09:49.950 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  11408. 2018-08-15 14:09:49.952 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  11409. 2018-08-15 14:09:49.957 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11410. 2018-08-15 14:09:49.959 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11411. 2018-08-15 14:09:49.959 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11412. 2018-08-15 14:09:49.961 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11413. 2018-08-15 14:09:49.962 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11414. 2018-08-15 14:09:49.962 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11415. 2018-08-15 14:09:49.968 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11416. 2018-08-15 14:09:49.969 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11417. 2018-08-15 14:09:49.969 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11418. 2018-08-15 14:09:49.970 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11419. 2018-08-15 14:09:49.973 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11420. 2018-08-15 14:09:49.974 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11421. 2018-08-15 14:09:49.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  11422. 2018-08-15 14:09:49.979 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11423. 2018-08-15 14:09:50.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  11424. 2018-08-15 14:09:50.033 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11425. 2018-08-15 14:09:50.035 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11426. 2018-08-15 14:09:50.035 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11427. 2018-08-15 14:09:50.037 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11428. 2018-08-15 14:09:50.038 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11429. 2018-08-15 14:09:50.038 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11430. 2018-08-15 14:09:50.044 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11431. 2018-08-15 14:09:50.045 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11432. 2018-08-15 14:09:50.045 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11433. 2018-08-15 14:09:50.047 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11434. 2018-08-15 14:09:50.050 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11435. 2018-08-15 14:09:50.051 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11436. 2018-08-15 14:09:50.054 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  11437. 2018-08-15 14:09:50.055 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11438. 2018-08-15 14:09:50.056 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11439. 2018-08-15 14:09:50.150 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11440. 2018-08-15 14:09:50.152 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11441. 2018-08-15 14:09:50.153 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11442. 2018-08-15 14:09:50.155 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11443. 2018-08-15 14:09:50.155 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11444. 2018-08-15 14:09:50.156 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11445. 2018-08-15 14:09:50.162 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11446. 2018-08-15 14:09:50.162 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11447. 2018-08-15 14:09:50.163 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11448. 2018-08-15 14:09:50.164 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11449. 2018-08-15 14:09:50.166 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11450. 2018-08-15 14:09:50.167 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11451. 2018-08-15 14:09:51.876 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11452. 2018-08-15 14:09:51.879 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11453. 2018-08-15 14:09:51.879 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11454. 2018-08-15 14:09:51.889 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11455. 2018-08-15 14:09:51.890 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11456. 2018-08-15 14:09:51.890 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11457. 2018-08-15 14:09:51.897 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11458. 2018-08-15 14:09:51.897 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11459. 2018-08-15 14:09:51.898 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11460. 2018-08-15 14:09:51.899 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11461. 2018-08-15 14:09:51.901 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11462. 2018-08-15 14:09:51.902 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11463. 2018-08-15 14:09:51.911 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11464. 2018-08-15 14:09:51.911 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11465. 2018-08-15 14:09:51.913 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11466. 2018-08-15 14:09:51.914 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11467. 2018-08-15 14:09:51.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11468. 2018-08-15 14:09:51.915 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11469. 2018-08-15 14:09:51.916 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11470. 2018-08-15 14:09:51.917 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11471. 2018-08-15 14:09:51.917 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11472. 2018-08-15 14:09:51.917 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11473. 2018-08-15 14:09:51.918 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11474. 2018-08-15 14:09:51.918 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11475. 2018-08-15 14:09:51.923 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11476. 2018-08-15 14:09:51.924 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11477. 2018-08-15 14:09:51.924 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11478. 2018-08-15 14:09:51.925 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11479. 2018-08-15 14:09:51.925 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11480. 2018-08-15 14:09:51.925 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11481. 2018-08-15 14:09:51.925 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11482. 2018-08-15 14:09:51.927 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11483. 2018-08-15 14:09:51.928 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11484. 2018-08-15 14:09:51.929 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11485. 2018-08-15 14:09:51.930 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11486. 2018-08-15 14:09:51.931 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11487. 2018-08-15 14:09:51.940 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  11488. 2018-08-15 14:09:51.941 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  11489. 2018-08-15 14:09:51.950 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  11490. 2018-08-15 14:09:53.160 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11491. 2018-08-15 14:09:53.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11492. 2018-08-15 14:09:53.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11493. 2018-08-15 14:09:53.167 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11494. 2018-08-15 14:09:53.168 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11495. 2018-08-15 14:09:53.168 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11496. 2018-08-15 14:09:53.175 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11497. 2018-08-15 14:09:53.176 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11498. 2018-08-15 14:09:53.176 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11499. 2018-08-15 14:09:53.177 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11500. 2018-08-15 14:09:53.181 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11501. 2018-08-15 14:09:53.182 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11502. 2018-08-15 14:09:53.183 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| ==> Preparing: SELECT * FROM check_rule WHERE rule_type = ?
  11503. 2018-08-15 14:09:53.184 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| ==> Parameters: 6(String)
  11504. 2018-08-15 14:09:53.185 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| <== Total: 1
  11505. 2018-08-15 14:09:53.185 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Preparing: SELECT t.*,c.name AS i_name ,c.score ,c.id AS i_id ,c.parent_id FROM (SELECT a.*,b.* FROM check_rule a left join check_rule_item b on a.id=b.rule_id WHERE a.id = ?) t LEFT JOIN check_item c ON t.item_id = c.id
  11506. 2018-08-15 14:09:53.186 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Parameters: 25(Long)
  11507. 2018-08-15 14:09:53.189 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| <== Total: 80
  11508. 2018-08-15 14:09:53.190 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  11509. 2018-08-15 14:09:53.190 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  11510. 2018-08-15 14:09:53.199 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  11511. 2018-08-15 14:09:56.749 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11512. 2018-08-15 14:09:56.752 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11513. 2018-08-15 14:09:56.752 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11514. 2018-08-15 14:09:56.752 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11515. 2018-08-15 14:09:56.753 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11516. 2018-08-15 14:09:56.753 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11517. 2018-08-15 14:09:56.754 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11518. 2018-08-15 14:09:56.754 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11519. 2018-08-15 14:09:56.754 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11520. 2018-08-15 14:09:56.755 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11521. 2018-08-15 14:09:56.755 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11522. 2018-08-15 14:09:56.756 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11523. 2018-08-15 14:09:56.756 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11524. 2018-08-15 14:09:56.756 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11525. 2018-08-15 14:09:56.756 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11526. 2018-08-15 14:09:56.756 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11527. 2018-08-15 14:09:56.756 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11528. 2018-08-15 14:09:56.757 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11529. 2018-08-15 14:09:56.757 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11530. 2018-08-15 14:09:56.758 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11531. 2018-08-15 14:09:56.758 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11532. 2018-08-15 14:09:56.758 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11533. 2018-08-15 14:09:56.758 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11534. 2018-08-15 14:09:56.759 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11535. 2018-08-15 14:09:56.759 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11536. 2018-08-15 14:09:56.759 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11537. 2018-08-15 14:09:56.759 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11538. 2018-08-15 14:09:56.760 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11539. 2018-08-15 14:09:56.760 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11540. 2018-08-15 14:09:56.760 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11541. 2018-08-15 14:09:56.764 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11542. 2018-08-15 14:09:56.765 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11543. 2018-08-15 14:09:56.765 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11544. 2018-08-15 14:09:56.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11545. 2018-08-15 14:09:56.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11546. 2018-08-15 14:09:56.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11547. 2018-08-15 14:09:56.770 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11548. 2018-08-15 14:09:56.770 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11549. 2018-08-15 14:09:56.770 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11550. 2018-08-15 14:09:56.771 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11551. 2018-08-15 14:09:56.771 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11552. 2018-08-15 14:09:56.772 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11553. 2018-08-15 14:09:56.772 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11554. 2018-08-15 14:09:56.772 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11555. 2018-08-15 14:09:56.773 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11556. 2018-08-15 14:09:56.773 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11557. 2018-08-15 14:09:56.773 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11558. 2018-08-15 14:09:56.773 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11559. 2018-08-15 14:09:56.774 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11560. 2018-08-15 14:09:56.774 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11561. 2018-08-15 14:09:56.774 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11562. 2018-08-15 14:09:56.774 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11563. 2018-08-15 14:09:56.774 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11564. 2018-08-15 14:09:56.774 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11565. 2018-08-15 14:09:56.775 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11566. 2018-08-15 14:09:56.775 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11567. 2018-08-15 14:09:56.776 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  11568. 2018-08-15 14:09:56.776 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11569. 2018-08-15 14:09:56.776 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  11570. 2018-08-15 14:09:56.777 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11571. 2018-08-15 14:09:56.778 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11572. 2018-08-15 14:09:56.778 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11573. 2018-08-15 14:09:56.778 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11574. 2018-08-15 14:09:56.782 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11575. 2018-08-15 14:09:56.782 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  11576. 2018-08-15 14:09:56.783 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11577. 2018-08-15 14:09:56.783 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11578. 2018-08-15 14:09:56.784 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  11579. 2018-08-15 14:09:56.784 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  11580. 2018-08-15 14:09:56.784 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  11581. 2018-08-15 14:09:56.785 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11582. 2018-08-15 14:09:56.786 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11583. 2018-08-15 14:09:56.786 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11584. 2018-08-15 14:09:56.786 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  11585. 2018-08-15 14:09:56.792 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11586. 2018-08-15 14:09:56.871 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11587. 2018-08-15 14:09:56.872 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11588. 2018-08-15 14:09:56.873 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11589. 2018-08-15 14:09:56.874 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11590. 2018-08-15 14:09:56.874 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11591. 2018-08-15 14:09:56.874 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11592. 2018-08-15 14:09:56.874 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11593. 2018-08-15 14:09:56.875 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11594. 2018-08-15 14:09:56.875 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11595. 2018-08-15 14:09:56.876 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11596. 2018-08-15 14:09:56.876 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11597. 2018-08-15 14:09:56.876 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11598. 2018-08-15 14:09:56.876 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11599. 2018-08-15 14:09:56.877 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11600. 2018-08-15 14:09:56.877 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11601. 2018-08-15 14:09:56.877 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11602. 2018-08-15 14:09:56.878 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11603. 2018-08-15 14:09:56.878 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11604. 2018-08-15 14:09:56.878 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11605. 2018-08-15 14:09:56.879 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11606. 2018-08-15 14:09:56.879 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11607. 2018-08-15 14:09:56.879 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11608. 2018-08-15 14:09:56.880 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11609. 2018-08-15 14:09:56.880 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11610. 2018-08-15 14:09:56.885 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11611. 2018-08-15 14:09:56.885 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11612. 2018-08-15 14:09:56.886 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11613. 2018-08-15 14:09:56.886 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11614. 2018-08-15 14:09:56.886 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11615. 2018-08-15 14:09:56.886 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11616. 2018-08-15 14:09:56.887 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11617. 2018-08-15 14:09:56.887 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11618. 2018-08-15 14:09:56.887 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11619. 2018-08-15 14:09:56.887 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11620. 2018-08-15 14:09:56.888 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11621. 2018-08-15 14:09:56.888 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11622. 2018-08-15 14:09:56.888 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11623. 2018-08-15 14:09:56.888 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11624. 2018-08-15 14:09:56.889 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11625. 2018-08-15 14:09:56.890 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11626. 2018-08-15 14:09:56.890 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11627. 2018-08-15 14:09:56.890 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11628. 2018-08-15 14:09:56.891 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11629. 2018-08-15 14:09:56.891 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11630. 2018-08-15 14:09:56.892 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11631. 2018-08-15 14:09:56.892 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  11632. 2018-08-15 14:09:56.893 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11633. 2018-08-15 14:09:56.893 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11634. 2018-08-15 14:09:56.893 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  11635. 2018-08-15 14:09:56.893 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11636. 2018-08-15 14:09:56.894 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  11637. 2018-08-15 14:09:56.894 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  11638. 2018-08-15 14:09:56.895 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11639. 2018-08-15 14:09:56.895 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  11640. 2018-08-15 14:09:56.895 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11641. 2018-08-15 14:09:56.897 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  11642. 2018-08-15 14:09:56.897 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  11643. 2018-08-15 14:09:56.898 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11644. 2018-08-15 14:09:56.898 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  11645. 2018-08-15 14:09:56.901 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  11646. 2018-08-15 14:09:56.908 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11647. 2018-08-15 14:09:56.910 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11648. 2018-08-15 14:09:56.910 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11649. 2018-08-15 14:09:56.912 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11650. 2018-08-15 14:09:56.913 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11651. 2018-08-15 14:09:56.913 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11652. 2018-08-15 14:09:56.919 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11653. 2018-08-15 14:09:56.919 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11654. 2018-08-15 14:09:56.920 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11655. 2018-08-15 14:09:56.921 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11656. 2018-08-15 14:09:56.923 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11657. 2018-08-15 14:09:56.924 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11658. 2018-08-15 14:09:56.928 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  11659. 2018-08-15 14:09:56.929 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11660. 2018-08-15 14:09:56.957 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  11661. 2018-08-15 14:09:56.992 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11662. 2018-08-15 14:09:56.995 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11663. 2018-08-15 14:09:56.996 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11664. 2018-08-15 14:09:56.998 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11665. 2018-08-15 14:09:56.998 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11666. 2018-08-15 14:09:56.999 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11667. 2018-08-15 14:09:57.005 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11668. 2018-08-15 14:09:57.005 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11669. 2018-08-15 14:09:57.006 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11670. 2018-08-15 14:09:57.007 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11671. 2018-08-15 14:09:57.009 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11672. 2018-08-15 14:09:57.009 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11673. 2018-08-15 14:09:57.014 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  11674. 2018-08-15 14:09:57.014 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11675. 2018-08-15 14:09:57.016 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11676. 2018-08-15 14:09:57.163 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11677. 2018-08-15 14:09:57.166 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11678. 2018-08-15 14:09:57.166 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11679. 2018-08-15 14:09:57.169 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11680. 2018-08-15 14:09:57.169 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11681. 2018-08-15 14:09:57.170 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11682. 2018-08-15 14:09:57.176 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11683. 2018-08-15 14:09:57.177 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11684. 2018-08-15 14:09:57.178 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11685. 2018-08-15 14:09:57.179 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11686. 2018-08-15 14:09:57.182 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11687. 2018-08-15 14:09:57.183 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11688. 2018-08-15 14:09:58.764 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11689. 2018-08-15 14:09:58.766 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11690. 2018-08-15 14:09:58.767 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11691. 2018-08-15 14:09:58.769 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11692. 2018-08-15 14:09:58.770 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11693. 2018-08-15 14:09:58.770 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11694. 2018-08-15 14:09:58.776 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11695. 2018-08-15 14:09:58.777 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11696. 2018-08-15 14:09:58.778 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11697. 2018-08-15 14:09:58.779 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11698. 2018-08-15 14:09:58.782 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11699. 2018-08-15 14:09:58.783 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11700. 2018-08-15 14:09:58.811 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11701. 2018-08-15 14:09:58.815 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11702. 2018-08-15 14:09:58.816 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11703. 2018-08-15 14:09:58.817 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11704. 2018-08-15 14:09:58.818 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11705. 2018-08-15 14:09:58.819 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11706. 2018-08-15 14:09:58.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11707. 2018-08-15 14:09:58.819 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11708. 2018-08-15 14:09:58.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11709. 2018-08-15 14:09:58.822 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11710. 2018-08-15 14:09:58.822 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11711. 2018-08-15 14:09:58.823 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11712. 2018-08-15 14:09:58.826 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11713. 2018-08-15 14:09:58.828 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11714. 2018-08-15 14:09:58.828 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11715. 2018-08-15 14:09:58.830 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11716. 2018-08-15 14:09:58.831 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11717. 2018-08-15 14:09:58.832 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11718. 2018-08-15 14:09:58.832 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11719. 2018-08-15 14:09:58.832 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11720. 2018-08-15 14:09:58.833 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11721. 2018-08-15 14:09:58.833 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11722. 2018-08-15 14:09:58.837 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11723. 2018-08-15 14:09:58.839 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11724. 2018-08-15 14:09:58.848 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  11725. 2018-08-15 14:09:58.849 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  11726. 2018-08-15 14:09:58.856 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-199] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  11727. 2018-08-15 14:10:48.818 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11728. 2018-08-15 14:10:48.820 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11729. 2018-08-15 14:10:48.820 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11730. 2018-08-15 14:10:48.822 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11731. 2018-08-15 14:10:48.823 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11732. 2018-08-15 14:10:48.823 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11733. 2018-08-15 14:10:48.829 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11734. 2018-08-15 14:10:48.829 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11735. 2018-08-15 14:10:48.829 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11736. 2018-08-15 14:10:48.831 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11737. 2018-08-15 14:10:48.833 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11738. 2018-08-15 14:10:48.834 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11739. 2018-08-15 14:10:48.836 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| ==> Preparing: SELECT * FROM check_rule WHERE rule_type = ?
  11740. 2018-08-15 14:10:48.836 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| ==> Parameters: 6(String)
  11741. 2018-08-15 14:10:48.838 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getByRuleType [159] -| <== Total: 1
  11742. 2018-08-15 14:10:48.839 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Preparing: SELECT t.*,c.name AS i_name ,c.score ,c.id AS i_id ,c.parent_id FROM (SELECT a.*,b.* FROM check_rule a left join check_rule_item b on a.id=b.rule_id WHERE a.id = ?) t LEFT JOIN check_item c ON t.item_id = c.id
  11743. 2018-08-15 14:10:48.839 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Parameters: 25(Long)
  11744. 2018-08-15 14:10:48.843 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| <== Total: 80
  11745. 2018-08-15 14:10:48.843 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  11746. 2018-08-15 14:10:48.843 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  11747. 2018-08-15 14:10:48.851 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  11748. 2018-08-15 14:11:43.806 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11749. 2018-08-15 14:11:43.808 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11750. 2018-08-15 14:11:43.809 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11751. 2018-08-15 14:11:43.809 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11752. 2018-08-15 14:11:43.810 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11753. 2018-08-15 14:11:43.810 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11754. 2018-08-15 14:11:43.811 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11755. 2018-08-15 14:11:43.812 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11756. 2018-08-15 14:11:43.812 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11757. 2018-08-15 14:11:43.812 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11758. 2018-08-15 14:11:43.812 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11759. 2018-08-15 14:11:43.813 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11760. 2018-08-15 14:11:43.813 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11761. 2018-08-15 14:11:43.813 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11762. 2018-08-15 14:11:43.814 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11763. 2018-08-15 14:11:43.814 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11764. 2018-08-15 14:11:43.815 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11765. 2018-08-15 14:11:43.815 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11766. 2018-08-15 14:11:43.815 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11767. 2018-08-15 14:11:43.815 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11768. 2018-08-15 14:11:43.818 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11769. 2018-08-15 14:11:43.818 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11770. 2018-08-15 14:11:43.819 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11771. 2018-08-15 14:11:43.819 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11772. 2018-08-15 14:11:43.819 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11773. 2018-08-15 14:11:43.819 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11774. 2018-08-15 14:11:43.820 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11775. 2018-08-15 14:11:43.821 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11776. 2018-08-15 14:11:43.821 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11777. 2018-08-15 14:11:43.821 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11778. 2018-08-15 14:11:43.821 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11779. 2018-08-15 14:11:43.821 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11780. 2018-08-15 14:11:43.821 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11781. 2018-08-15 14:11:43.824 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11782. 2018-08-15 14:11:43.826 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11783. 2018-08-15 14:11:43.827 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11784. 2018-08-15 14:11:43.827 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11785. 2018-08-15 14:11:43.829 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11786. 2018-08-15 14:11:43.829 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11787. 2018-08-15 14:11:43.829 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11788. 2018-08-15 14:11:43.830 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11789. 2018-08-15 14:11:43.830 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11790. 2018-08-15 14:11:43.830 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11791. 2018-08-15 14:11:43.831 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11792. 2018-08-15 14:11:43.831 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11793. 2018-08-15 14:11:43.831 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11794. 2018-08-15 14:11:43.831 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11795. 2018-08-15 14:11:43.831 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11796. 2018-08-15 14:11:43.832 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11797. 2018-08-15 14:11:43.832 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11798. 2018-08-15 14:11:43.832 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  11799. 2018-08-15 14:11:43.833 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  11800. 2018-08-15 14:11:43.833 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11801. 2018-08-15 14:11:43.834 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11802. 2018-08-15 14:11:43.834 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11803. 2018-08-15 14:11:43.835 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11804. 2018-08-15 14:11:43.835 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11805. 2018-08-15 14:11:43.835 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11806. 2018-08-15 14:11:43.836 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11807. 2018-08-15 14:11:43.836 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11808. 2018-08-15 14:11:43.837 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11809. 2018-08-15 14:11:43.837 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11810. 2018-08-15 14:11:43.837 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11811. 2018-08-15 14:11:43.841 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  11812. 2018-08-15 14:11:43.841 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  11813. 2018-08-15 14:11:43.841 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  11814. 2018-08-15 14:11:43.842 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  11815. 2018-08-15 14:11:43.844 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  11816. 2018-08-15 14:11:43.844 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  11817. 2018-08-15 14:11:43.845 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  11818. 2018-08-15 14:11:43.845 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11819. 2018-08-15 14:11:43.845 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  11820. 2018-08-15 14:11:43.845 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11821. 2018-08-15 14:11:43.847 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  11822. 2018-08-15 14:11:43.852 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11823. 2018-08-15 14:11:43.898 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11824. 2018-08-15 14:11:43.899 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11825. 2018-08-15 14:11:43.899 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11826. 2018-08-15 14:11:43.899 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11827. 2018-08-15 14:11:43.901 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11828. 2018-08-15 14:11:43.901 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11829. 2018-08-15 14:11:43.902 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11830. 2018-08-15 14:11:43.902 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11831. 2018-08-15 14:11:43.902 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11832. 2018-08-15 14:11:43.902 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11833. 2018-08-15 14:11:43.902 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11834. 2018-08-15 14:11:43.903 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11835. 2018-08-15 14:11:43.904 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11836. 2018-08-15 14:11:43.904 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11837. 2018-08-15 14:11:43.904 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11838. 2018-08-15 14:11:43.904 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11839. 2018-08-15 14:11:43.905 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11840. 2018-08-15 14:11:43.905 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11841. 2018-08-15 14:11:43.905 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11842. 2018-08-15 14:11:43.905 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11843. 2018-08-15 14:11:43.905 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11844. 2018-08-15 14:11:43.906 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11845. 2018-08-15 14:11:43.906 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11846. 2018-08-15 14:11:43.906 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11847. 2018-08-15 14:11:43.911 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11848. 2018-08-15 14:11:43.912 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11849. 2018-08-15 14:11:43.912 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11850. 2018-08-15 14:11:43.912 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11851. 2018-08-15 14:11:43.913 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11852. 2018-08-15 14:11:43.913 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11853. 2018-08-15 14:11:43.913 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11854. 2018-08-15 14:11:43.913 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11855. 2018-08-15 14:11:43.914 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11856. 2018-08-15 14:11:43.914 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11857. 2018-08-15 14:11:43.914 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11858. 2018-08-15 14:11:43.914 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11859. 2018-08-15 14:11:43.914 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11860. 2018-08-15 14:11:43.914 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11861. 2018-08-15 14:11:43.915 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11862. 2018-08-15 14:11:43.916 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11863. 2018-08-15 14:11:43.916 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11864. 2018-08-15 14:11:43.917 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11865. 2018-08-15 14:11:43.917 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11866. 2018-08-15 14:11:43.917 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11867. 2018-08-15 14:11:43.917 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11868. 2018-08-15 14:11:43.918 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11869. 2018-08-15 14:11:43.918 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11870. 2018-08-15 14:11:43.918 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  11871. 2018-08-15 14:11:43.918 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  11872. 2018-08-15 14:11:43.919 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11873. 2018-08-15 14:11:43.919 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  11874. 2018-08-15 14:11:43.919 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  11875. 2018-08-15 14:11:43.919 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  11876. 2018-08-15 14:11:43.920 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  11877. 2018-08-15 14:11:43.920 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  11878. 2018-08-15 14:11:43.920 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  11879. 2018-08-15 14:11:43.921 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  11880. 2018-08-15 14:11:43.921 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  11881. 2018-08-15 14:11:43.922 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  11882. 2018-08-15 14:11:43.924 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  11883. 2018-08-15 14:11:43.930 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11884. 2018-08-15 14:11:43.931 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11885. 2018-08-15 14:11:43.932 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11886. 2018-08-15 14:11:43.934 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11887. 2018-08-15 14:11:43.934 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11888. 2018-08-15 14:11:43.934 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11889. 2018-08-15 14:11:43.941 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11890. 2018-08-15 14:11:43.941 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11891. 2018-08-15 14:11:43.942 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11892. 2018-08-15 14:11:43.943 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11893. 2018-08-15 14:11:43.946 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11894. 2018-08-15 14:11:43.946 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11895. 2018-08-15 14:11:43.951 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  11896. 2018-08-15 14:11:43.952 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  11897. 2018-08-15 14:11:43.987 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  11898. 2018-08-15 14:11:44.015 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11899. 2018-08-15 14:11:44.016 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11900. 2018-08-15 14:11:44.017 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11901. 2018-08-15 14:11:44.019 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11902. 2018-08-15 14:11:44.019 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11903. 2018-08-15 14:11:44.019 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11904. 2018-08-15 14:11:44.025 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11905. 2018-08-15 14:11:44.026 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11906. 2018-08-15 14:11:44.026 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11907. 2018-08-15 14:11:44.027 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11908. 2018-08-15 14:11:44.029 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11909. 2018-08-15 14:11:44.030 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11910. 2018-08-15 14:11:44.034 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  11911. 2018-08-15 14:11:44.034 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  11912. 2018-08-15 14:11:44.035 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  11913. 2018-08-15 14:11:44.136 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11914. 2018-08-15 14:11:44.138 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11915. 2018-08-15 14:11:44.138 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11916. 2018-08-15 14:11:44.141 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11917. 2018-08-15 14:11:44.141 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11918. 2018-08-15 14:11:44.142 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11919. 2018-08-15 14:11:44.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11920. 2018-08-15 14:11:44.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11921. 2018-08-15 14:11:44.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11922. 2018-08-15 14:11:44.149 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11923. 2018-08-15 14:11:44.151 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11924. 2018-08-15 14:11:44.152 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11925. 2018-08-15 14:11:47.645 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11926. 2018-08-15 14:11:47.645 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11927. 2018-08-15 14:11:47.646 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11928. 2018-08-15 14:11:47.646 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11929. 2018-08-15 14:11:47.646 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11930. 2018-08-15 14:11:47.646 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11931. 2018-08-15 14:11:47.648 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11932. 2018-08-15 14:11:47.649 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11933. 2018-08-15 14:11:47.648 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11934. 2018-08-15 14:11:47.649 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11935. 2018-08-15 14:11:47.649 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11936. 2018-08-15 14:11:47.650 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11937. 2018-08-15 14:11:47.650 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11938. 2018-08-15 14:11:47.651 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11939. 2018-08-15 14:11:47.650 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11940. 2018-08-15 14:11:47.652 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11941. 2018-08-15 14:11:47.652 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11942. 2018-08-15 14:11:47.652 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11943. 2018-08-15 14:11:47.653 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11944. 2018-08-15 14:11:47.653 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11945. 2018-08-15 14:11:47.653 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11946. 2018-08-15 14:11:47.653 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11947. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11948. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  11949. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11950. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11951. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11952. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  11953. 2018-08-15 14:11:47.654 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11954. 2018-08-15 14:11:47.655 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11955. 2018-08-15 14:11:47.656 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11956. 2018-08-15 14:11:47.656 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11957. 2018-08-15 14:11:47.656 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11958. 2018-08-15 14:11:47.657 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  11959. 2018-08-15 14:11:47.660 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  11960. 2018-08-15 14:11:47.660 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  11961. 2018-08-15 14:11:47.663 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11962. 2018-08-15 14:11:47.665 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11963. 2018-08-15 14:11:47.665 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11964. 2018-08-15 14:11:47.666 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11965. 2018-08-15 14:11:47.667 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11966. 2018-08-15 14:11:47.665 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11967. 2018-08-15 14:11:47.667 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11968. 2018-08-15 14:11:47.667 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11969. 2018-08-15 14:11:47.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11970. 2018-08-15 14:11:47.668 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11971. 2018-08-15 14:11:47.668 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11972. 2018-08-15 14:11:47.668 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11973. 2018-08-15 14:11:47.669 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11974. 2018-08-15 14:11:47.669 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11975. 2018-08-15 14:11:47.669 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11976. 2018-08-15 14:11:47.670 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11977. 2018-08-15 14:11:47.670 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  11978. 2018-08-15 14:11:47.670 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11979. 2018-08-15 14:11:47.671 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  11980. 2018-08-15 14:11:47.672 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11981. 2018-08-15 14:11:47.672 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11982. 2018-08-15 14:11:47.672 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11983. 2018-08-15 14:11:47.672 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11984. 2018-08-15 14:11:47.672 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  11985. 2018-08-15 14:11:47.673 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11986. 2018-08-15 14:11:47.673 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11987. 2018-08-15 14:11:47.674 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11988. 2018-08-15 14:11:47.674 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11989. 2018-08-15 14:11:47.674 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  11990. 2018-08-15 14:11:47.674 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11991. 2018-08-15 14:11:47.675 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11992. 2018-08-15 14:11:47.676 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11993. 2018-08-15 14:11:47.675 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11994. 2018-08-15 14:11:47.677 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11995. 2018-08-15 14:11:47.678 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  11996. 2018-08-15 14:11:47.680 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  11997. 2018-08-15 14:11:47.704 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Preparing: select * from check_task_period where 1=1
  11998. 2018-08-15 14:11:47.704 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Parameters:
  11999. 2018-08-15 14:11:47.707 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| <== Total: 15
  12000. 2018-08-15 14:11:47.780 |-ERROR [http-nio-8089-exec-18] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  12001. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12002. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12003. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12004. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12005. ### The error occurred while setting parameters
  12006. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12007. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12008. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12009. org.springframework.jdbc.BadSqlGrammarException:
  12010. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12011. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12012. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12013. ### The error occurred while setting parameters
  12014. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12015. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12016. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12017. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12018. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12019. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12020. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12021. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12022. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12023. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12024. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12025. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12026. at com.sun.proxy.$Proxy85.selectFeeStationScoreInfo(Unknown Source)
  12027. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.reFeeStationScoreInfo(StatisticsServiceImpl.java:1119)
  12028. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getFeeStationScoreInfo(StatisticsServiceImpl.java:929)
  12029. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12030. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12031. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12032. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12033. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12034. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12035. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12036. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12037. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12038. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12039. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12040. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12041. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12042. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12043. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12044. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12045. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12046. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12047. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12048. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12049. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12050. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12051. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12052. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12053. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12054. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12055. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12056. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12057. at java.lang.Thread.run(Thread.java:745)
  12058. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12059. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12060. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12061. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12062. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12063. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12064. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12065. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12066. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12067. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12068. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12069. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12070. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12071. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12072. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12073. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12074. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12075. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12076. at java.lang.reflect.Method.invoke(Method.java:497)
  12077. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12078. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12079. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12080. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12081. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12082. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12083. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12084. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12085. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12086. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12087. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12088. at java.lang.reflect.Method.invoke(Method.java:497)
  12089. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12090. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12091. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12092. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12093. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12094. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12095. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12096. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12097. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12098. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12099. at java.lang.reflect.Method.invoke(Method.java:497)
  12100. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12101. ... 37 more
  12102. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  12103. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12104. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12105. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12106. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12107. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12108. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12109. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12110. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12111. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12112. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12113. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12114. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12115. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12116. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12117. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12118. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12119. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12120. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12121. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12122. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12123. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12124. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12125. at java.lang.Thread.run(Thread.java:745)
  12126. 2018-08-15 14:11:47.780 |-ERROR [http-nio-8089-exec-12] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  12127. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12128. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12129. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12130. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationCheckNum-Inline
  12131. ### The error occurred while setting parameters
  12132. ### SQL: SELECT COUNT(t.checked_dept) AS checked_num, t.checked_dept AS dept_id FROM view_check_task t WHERE 1=1 AND t.start_time >= ? AND t.end_time < ? AND t.period_id = ? GROUP BY t.checked_dept
  12133. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12134. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12135. org.springframework.jdbc.BadSqlGrammarException:
  12136. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12137. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12138. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationCheckNum-Inline
  12139. ### The error occurred while setting parameters
  12140. ### SQL: SELECT COUNT(t.checked_dept) AS checked_num, t.checked_dept AS dept_id FROM view_check_task t WHERE 1=1 AND t.start_time >= ? AND t.end_time < ? AND t.period_id = ? GROUP BY t.checked_dept
  12141. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12142. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12143. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12144. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12145. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12146. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12147. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12148. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12149. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12150. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12151. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12152. at com.sun.proxy.$Proxy85.selectFeeStationCheckNum(Unknown Source)
  12153. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getFeeStationCheckedScore(StatisticsServiceImpl.java:792)
  12154. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12155. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12156. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12157. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12158. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12159. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12160. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12161. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12162. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12163. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12164. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12165. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12166. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12167. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12168. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12169. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12170. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12171. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12172. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12173. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12174. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12175. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12176. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12177. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12178. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12179. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12180. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12181. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12182. at java.lang.Thread.run(Thread.java:745)
  12183. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12184. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12185. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12186. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12187. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12188. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12189. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12190. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12191. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12192. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12193. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12194. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12195. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12196. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12197. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12198. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12199. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12200. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12201. at java.lang.reflect.Method.invoke(Method.java:497)
  12202. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12203. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12204. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12205. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12206. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12207. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12208. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12209. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12210. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12211. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12212. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12213. at java.lang.reflect.Method.invoke(Method.java:497)
  12214. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12215. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12216. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12217. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12218. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12219. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12220. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12221. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12222. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12223. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12224. at java.lang.reflect.Method.invoke(Method.java:497)
  12225. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12226. ... 36 more
  12227. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  12228. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12229. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12230. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12231. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12232. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12233. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12234. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12235. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12236. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12237. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12238. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12239. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12240. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12241. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12242. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12243. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12244. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12245. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12246. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12247. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12248. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12249. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12250. at java.lang.Thread.run(Thread.java:745)
  12251. 2018-08-15 14:11:47.782 |-ERROR [http-nio-8089-exec-11] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  12252. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12253. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12254. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12255. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectYearScoreInfo-Inline
  12256. ### The error occurred while setting parameters
  12257. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.mth FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  12258. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12259. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12260. org.springframework.jdbc.BadSqlGrammarException:
  12261. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12262. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12263. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectYearScoreInfo-Inline
  12264. ### The error occurred while setting parameters
  12265. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.mth FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  12266. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12267. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12268. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12269. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12270. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12271. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12272. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12273. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12274. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12275. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12276. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12277. at com.sun.proxy.$Proxy85.selectYearScoreInfo(Unknown Source)
  12278. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getYearScoreChange(StatisticsServiceImpl.java:758)
  12279. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12280. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12281. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12282. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12283. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12284. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12285. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12286. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12287. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12288. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12289. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12290. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12291. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12292. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12293. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12294. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12295. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12296. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12297. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12298. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12299. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12300. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12301. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12302. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12303. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12304. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12305. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12306. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12307. at java.lang.Thread.run(Thread.java:745)
  12308. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12309. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12310. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12311. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12312. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12313. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12314. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12315. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12316. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12317. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12318. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12319. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12320. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12321. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12322. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12323. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12324. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12325. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12326. at java.lang.reflect.Method.invoke(Method.java:497)
  12327. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12328. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12329. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12330. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12331. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12332. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12333. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12334. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12335. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12336. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12337. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12338. at java.lang.reflect.Method.invoke(Method.java:497)
  12339. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12340. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12341. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12342. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12343. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12344. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12345. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12346. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12347. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12348. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12349. at java.lang.reflect.Method.invoke(Method.java:497)
  12350. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12351. ... 36 more
  12352. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  12353. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12354. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12355. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12356. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12357. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12358. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12359. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12360. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12361. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12362. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12363. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12364. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12365. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12366. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12367. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12368. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12369. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12370. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12371. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12372. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12373. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12374. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12375. at java.lang.Thread.run(Thread.java:745)
  12376. 2018-08-15 14:11:47.783 |-ERROR [http-nio-8089-exec-17] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  12377. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12378. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12379. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12380. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  12381. ### The error occurred while setting parameters
  12382. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  12383. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12384. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12385. org.springframework.jdbc.BadSqlGrammarException:
  12386. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12387. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12388. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  12389. ### The error occurred while setting parameters
  12390. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  12391. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12392. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12393. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12394. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12395. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12396. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12397. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12398. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12399. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12400. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12401. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12402. at com.sun.proxy.$Proxy85.selectCheckedItemScoreInfo(Unknown Source)
  12403. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.get2CheckedItemScoreInfo(StatisticsServiceImpl.java:968)
  12404. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12405. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12406. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12407. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12408. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12409. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12410. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12411. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12412. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12413. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12414. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12415. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12416. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12417. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12418. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12419. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12420. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12421. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12422. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12423. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12424. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12425. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12426. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12427. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12428. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12429. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12430. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12431. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12432. at java.lang.Thread.run(Thread.java:745)
  12433. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12434. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12435. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12436. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12437. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12438. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12439. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12440. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12441. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12442. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12443. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12444. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12445. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12446. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12447. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12448. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12449. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12450. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12451. at java.lang.reflect.Method.invoke(Method.java:497)
  12452. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12453. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12454. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12455. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12456. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12457. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12458. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12459. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12460. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12461. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12462. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12463. at java.lang.reflect.Method.invoke(Method.java:497)
  12464. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12465. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12466. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12467. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12468. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12469. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12470. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12471. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12472. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12473. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12474. at java.lang.reflect.Method.invoke(Method.java:497)
  12475. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12476. ... 36 more
  12477. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  12478. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12479. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12480. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12481. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12482. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12483. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12484. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12485. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12486. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12487. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12488. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12489. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12490. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12491. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12492. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12493. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12494. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12495. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12496. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12497. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12498. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12499. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12500. at java.lang.Thread.run(Thread.java:745)
  12501. 2018-08-15 14:11:47.783 |-ERROR [http-nio-8089-exec-19] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  12502. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12503. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12504. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12505. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  12506. ### The error occurred while setting parameters
  12507. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  12508. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12509. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12510. org.springframework.jdbc.BadSqlGrammarException:
  12511. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12512. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12513. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  12514. ### The error occurred while setting parameters
  12515. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  12516. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12517. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12518. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12519. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12520. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12521. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12522. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12523. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12524. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12525. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12526. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12527. at com.sun.proxy.$Proxy85.selectCheckedItemScoreInfo(Unknown Source)
  12528. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getCheckedItemScoreInfo(StatisticsServiceImpl.java:943)
  12529. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12530. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12531. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12532. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12533. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12534. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12535. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12536. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12537. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12538. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12539. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12540. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12541. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12542. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12543. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12544. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12545. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12546. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12547. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12548. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12549. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12550. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12551. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12552. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12553. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12554. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12555. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12556. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12557. at java.lang.Thread.run(Thread.java:745)
  12558. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12559. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12560. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12561. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12562. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12563. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12564. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12565. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12566. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12567. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12568. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12569. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12570. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12571. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12572. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12573. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12574. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12575. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12576. at java.lang.reflect.Method.invoke(Method.java:497)
  12577. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12578. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12579. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12580. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12581. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12582. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12583. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12584. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12585. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12586. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12587. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12588. at java.lang.reflect.Method.invoke(Method.java:497)
  12589. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12590. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12591. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12592. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12593. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12594. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12595. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12596. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12597. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12598. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12599. at java.lang.reflect.Method.invoke(Method.java:497)
  12600. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12601. ... 36 more
  12602. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  12603. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12604. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12605. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12606. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12607. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12608. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12609. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12610. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12611. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12612. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12613. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12614. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12615. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12616. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12617. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12618. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12619. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12620. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12621. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12622. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12623. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12624. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12625. at java.lang.Thread.run(Thread.java:745)
  12626. 2018-08-15 14:11:47.783 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  12627. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12628. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12629. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12630. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12631. ### The error occurred while setting parameters
  12632. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12633. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12634. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12635. org.springframework.jdbc.BadSqlGrammarException:
  12636. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12637. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12638. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12639. ### The error occurred while setting parameters
  12640. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12641. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12642. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12643. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12644. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12645. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12646. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12647. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12648. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12649. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12650. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12651. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12652. at com.sun.proxy.$Proxy85.selectFeeStationScoreInfo(Unknown Source)
  12653. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.reFeeStationScoreInfo(StatisticsServiceImpl.java:1119)
  12654. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getCenterManageScoreInfo(StatisticsServiceImpl.java:875)
  12655. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12656. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12657. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12658. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12659. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12660. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12661. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12662. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12663. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12664. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12665. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12666. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12667. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12668. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12669. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12670. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12671. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12672. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12673. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12674. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12675. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12676. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12677. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12678. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12679. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12680. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12681. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12682. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12683. at java.lang.Thread.run(Thread.java:745)
  12684. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12685. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12686. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12687. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12688. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12689. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12690. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12691. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12692. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12693. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12694. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12695. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12696. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12697. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12698. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12699. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12700. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12701. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12702. at java.lang.reflect.Method.invoke(Method.java:497)
  12703. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12704. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12705. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12706. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12707. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12708. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12709. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12710. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12711. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12712. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12713. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12714. at java.lang.reflect.Method.invoke(Method.java:497)
  12715. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12716. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12717. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12718. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12719. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12720. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12721. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12722. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12723. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12724. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12725. at java.lang.reflect.Method.invoke(Method.java:497)
  12726. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12727. ... 37 more
  12728. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  12729. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12730. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12731. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12732. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12733. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12734. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12735. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12736. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12737. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12738. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12739. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12740. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12741. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12742. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12743. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12744. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12745. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12746. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12747. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12748. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12749. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12750. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12751. at java.lang.Thread.run(Thread.java:745)
  12752. 2018-08-15 14:11:47.784 |-WARN [http-nio-8089-exec-18] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12753. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12754. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12755. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12756. ### The error occurred while setting parameters
  12757. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12758. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12759. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12760. org.springframework.jdbc.BadSqlGrammarException:
  12761. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12762. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12763. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12764. ### The error occurred while setting parameters
  12765. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12766. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12767. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12768. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12769. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12770. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12771. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12772. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12773. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12774. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12775. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12776. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12777. at com.sun.proxy.$Proxy85.selectFeeStationScoreInfo(Unknown Source)
  12778. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.reFeeStationScoreInfo(StatisticsServiceImpl.java:1119)
  12779. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getFeeStationScoreInfo(StatisticsServiceImpl.java:929)
  12780. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12781. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12782. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12783. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12784. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12785. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12786. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12787. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12788. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12789. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12790. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12791. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12792. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12793. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12794. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12795. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12796. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12797. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12798. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12799. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12800. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12801. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12802. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12803. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12804. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12805. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12806. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12807. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12808. at java.lang.Thread.run(Thread.java:745)
  12809. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12810. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12811. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12812. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12813. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12814. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12815. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12816. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12817. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12818. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12819. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12820. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12821. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12822. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12823. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12824. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12825. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12826. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12827. at java.lang.reflect.Method.invoke(Method.java:497)
  12828. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12829. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12830. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12831. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12832. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12833. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12834. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12835. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12836. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12837. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12838. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12839. at java.lang.reflect.Method.invoke(Method.java:497)
  12840. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12841. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12842. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12843. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12844. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12845. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12846. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12847. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12848. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12849. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12850. at java.lang.reflect.Method.invoke(Method.java:497)
  12851. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12852. ... 37 more
  12853. 2018-08-15 14:11:47.786 |-WARN [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12854. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12855. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12856. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12857. ### The error occurred while setting parameters
  12858. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12859. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12860. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12861. org.springframework.jdbc.BadSqlGrammarException:
  12862. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12863. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12864. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationScoreInfo-Inline
  12865. ### The error occurred while setting parameters
  12866. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND monthfunc (t.start_time) =? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept
  12867. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12868. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12869. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12870. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12871. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12872. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12873. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12874. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12875. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12876. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12877. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12878. at com.sun.proxy.$Proxy85.selectFeeStationScoreInfo(Unknown Source)
  12879. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.reFeeStationScoreInfo(StatisticsServiceImpl.java:1119)
  12880. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getCenterManageScoreInfo(StatisticsServiceImpl.java:875)
  12881. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12882. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12883. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12884. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12885. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12886. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12887. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12888. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12889. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12890. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12891. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12892. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12893. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12894. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12895. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12896. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12897. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12898. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12899. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12900. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  12901. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12902. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  12903. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  12904. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  12905. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  12906. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  12907. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  12908. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  12909. at java.lang.Thread.run(Thread.java:745)
  12910. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12911. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  12912. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  12913. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  12914. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  12915. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  12916. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  12917. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  12918. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  12919. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  12920. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  12921. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  12922. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  12923. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  12924. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  12925. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  12926. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  12927. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12928. at java.lang.reflect.Method.invoke(Method.java:497)
  12929. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  12930. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  12931. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  12932. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  12933. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  12934. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  12935. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  12936. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  12937. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  12938. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  12939. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12940. at java.lang.reflect.Method.invoke(Method.java:497)
  12941. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  12942. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  12943. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  12944. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  12945. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  12946. at com.sun.proxy.$Proxy98.query(Unknown Source)
  12947. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  12948. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  12949. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  12950. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  12951. at java.lang.reflect.Method.invoke(Method.java:497)
  12952. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  12953. ... 37 more
  12954. 2018-08-15 14:11:47.784 |-WARN [http-nio-8089-exec-12] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  12955. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12956. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12957. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationCheckNum-Inline
  12958. ### The error occurred while setting parameters
  12959. ### SQL: SELECT COUNT(t.checked_dept) AS checked_num, t.checked_dept AS dept_id FROM view_check_task t WHERE 1=1 AND t.start_time >= ? AND t.end_time < ? AND t.period_id = ? GROUP BY t.checked_dept
  12960. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12961. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12962. org.springframework.jdbc.BadSqlGrammarException:
  12963. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12964. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  12965. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectFeeStationCheckNum-Inline
  12966. ### The error occurred while setting parameters
  12967. ### SQL: SELECT COUNT(t.checked_dept) AS checked_num, t.checked_dept AS dept_id FROM view_check_task t WHERE 1=1 AND t.start_time >= ? AND t.end_time < ? AND t.period_id = ? GROUP BY t.checked_dept
  12968. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12969. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  12970. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  12971. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  12972. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  12973. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  12974. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  12975. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  12976. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  12977. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  12978. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  12979. at com.sun.proxy.$Proxy85.selectFeeStationCheckNum(Unknown Source)
  12980. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getFeeStationCheckedScore(StatisticsServiceImpl.java:792)
  12981. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  12982. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  12983. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  12984. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  12985. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  12986. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  12987. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12988. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  12989. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12990. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  12991. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12992. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  12993. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12994. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  12995. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12996. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  12997. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  12998. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  12999. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13000. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13001. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13002. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13003. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13004. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13005. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13006. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13007. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13008. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13009. at java.lang.Thread.run(Thread.java:745)
  13010. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13011. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13012. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13013. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13014. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13015. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13016. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13017. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13018. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13019. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13020. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13021. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13022. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13023. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13024. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13025. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13026. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13027. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13028. at java.lang.reflect.Method.invoke(Method.java:497)
  13029. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13030. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13031. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13032. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13033. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13034. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13035. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13036. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13037. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13038. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13039. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13040. at java.lang.reflect.Method.invoke(Method.java:497)
  13041. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13042. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13043. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13044. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13045. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13046. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13047. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13048. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13049. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13050. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13051. at java.lang.reflect.Method.invoke(Method.java:497)
  13052. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13053. ... 36 more
  13054. 2018-08-15 14:11:47.785 |-WARN [http-nio-8089-exec-11] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13055. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13056. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13057. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectYearScoreInfo-Inline
  13058. ### The error occurred while setting parameters
  13059. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.mth FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  13060. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13061. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13062. org.springframework.jdbc.BadSqlGrammarException:
  13063. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13064. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13065. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectYearScoreInfo-Inline
  13066. ### The error occurred while setting parameters
  13067. ### SQL: SELECT sum(tab.checkd_all_score) AS all_check_score, sum(tab.checked_num) AS checked_num, tab.mth FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS checkd_all_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.checked_dept) AS checked_num, monthfunc(t.start_time) AS mth, t.id, t.checked_dept FROM view_check_task t WHERE t.checked_dept IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept, mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1 = 1 GROUP BY mth, m.checked_dept ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth
  13068. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13069. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13070. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13071. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13072. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13073. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13074. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13075. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13076. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13077. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13078. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13079. at com.sun.proxy.$Proxy85.selectYearScoreInfo(Unknown Source)
  13080. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getYearScoreChange(StatisticsServiceImpl.java:758)
  13081. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13082. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13083. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13084. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13085. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13086. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13087. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13088. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13089. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13090. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13091. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13092. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13093. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13094. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13095. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13096. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13097. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13098. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13099. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13100. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13101. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13102. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13103. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13104. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13105. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13106. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13107. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13108. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13109. at java.lang.Thread.run(Thread.java:745)
  13110. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13111. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13112. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13113. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13114. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13115. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13116. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13117. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13118. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13119. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13120. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13121. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13122. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13123. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13124. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13125. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13126. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13127. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13128. at java.lang.reflect.Method.invoke(Method.java:497)
  13129. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13130. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13131. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13132. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13133. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13134. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13135. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13136. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13137. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13138. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13139. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13140. at java.lang.reflect.Method.invoke(Method.java:497)
  13141. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13142. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13143. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13144. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13145. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13146. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13147. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13148. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13149. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13150. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13151. at java.lang.reflect.Method.invoke(Method.java:497)
  13152. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13153. ... 36 more
  13154. 2018-08-15 14:11:47.786 |-WARN [http-nio-8089-exec-17] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13155. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13156. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13157. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  13158. ### The error occurred while setting parameters
  13159. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  13160. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13161. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13162. org.springframework.jdbc.BadSqlGrammarException:
  13163. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13164. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13165. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  13166. ### The error occurred while setting parameters
  13167. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  13168. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13169. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13170. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13171. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13172. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13173. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13174. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13175. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13176. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13177. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13178. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13179. at com.sun.proxy.$Proxy85.selectCheckedItemScoreInfo(Unknown Source)
  13180. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.get2CheckedItemScoreInfo(StatisticsServiceImpl.java:968)
  13181. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13182. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13183. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13184. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13185. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13186. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13187. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13188. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13189. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13190. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13191. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13192. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13193. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13194. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13195. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13196. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13197. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13198. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13199. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13200. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13201. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13202. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13203. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13204. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13205. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13206. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13207. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13208. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13209. at java.lang.Thread.run(Thread.java:745)
  13210. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13211. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13212. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13213. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13214. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13215. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13216. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13217. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13218. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13219. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13220. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13221. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13222. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13223. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13224. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13225. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13226. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13227. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13228. at java.lang.reflect.Method.invoke(Method.java:497)
  13229. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13230. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13231. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13232. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13233. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13234. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13235. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13236. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13237. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13238. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13239. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13240. at java.lang.reflect.Method.invoke(Method.java:497)
  13241. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13242. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13243. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13244. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13245. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13246. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13247. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13248. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13249. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13250. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13251. at java.lang.reflect.Method.invoke(Method.java:497)
  13252. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13253. ... 36 more
  13254. 2018-08-15 14:11:47.786 |-WARN [http-nio-8089-exec-19] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13255. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13256. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13257. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  13258. ### The error occurred while setting parameters
  13259. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  13260. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13261. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13262. org.springframework.jdbc.BadSqlGrammarException:
  13263. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13264. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13265. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectCheckedItemScoreInfo-Inline
  13266. ### The error occurred while setting parameters
  13267. ### SQL: SELECT count(DISTINCT m.task_id) AS checked_num, sum(m.check_item_score) AS all_check_score, m.check_item_id, m.checked_dept AS dept_id FROM view_check_task t INNER JOIN check_score m ON t.id = m.task_id WHERE 1=1 AND monthfunc(t.start_time) = ? GROUP BY m.check_item_id,m.checked_dept ORDER BY m.checked_dept
  13268. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13269. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13270. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13271. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13272. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13273. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13274. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13275. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13276. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13277. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13278. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13279. at com.sun.proxy.$Proxy85.selectCheckedItemScoreInfo(Unknown Source)
  13280. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getCheckedItemScoreInfo(StatisticsServiceImpl.java:943)
  13281. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13282. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13283. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13284. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13285. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13286. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13287. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13288. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13289. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13290. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13291. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13292. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13293. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13294. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13295. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13296. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13297. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13298. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13299. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13300. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13301. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13302. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13303. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13304. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13305. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13306. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13307. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13308. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13309. at java.lang.Thread.run(Thread.java:745)
  13310. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13311. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13312. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13313. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13314. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13315. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13316. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13317. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13318. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13319. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13320. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13321. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13322. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13323. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13324. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13325. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13326. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13327. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13328. at java.lang.reflect.Method.invoke(Method.java:497)
  13329. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13330. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13331. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13332. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13333. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13334. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13335. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13336. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13337. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13338. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13339. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13340. at java.lang.reflect.Method.invoke(Method.java:497)
  13341. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13342. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13343. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13344. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13345. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13346. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13347. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13348. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13349. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13350. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13351. at java.lang.reflect.Method.invoke(Method.java:497)
  13352. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13353. ... 36 more
  13354. 2018-08-15 14:11:48.355 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13355. 2018-08-15 14:11:48.355 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13356. 2018-08-15 14:11:48.355 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13357. 2018-08-15 14:11:48.357 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  13358. 2018-08-15 14:11:48.358 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  13359. 2018-08-15 14:11:48.358 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  13360. 2018-08-15 14:11:48.358 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  13361. 2018-08-15 14:11:48.358 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  13362. 2018-08-15 14:11:48.359 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  13363. 2018-08-15 14:11:48.360 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13364. 2018-08-15 14:11:48.361 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  13365. 2018-08-15 14:11:48.361 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13366. 2018-08-15 14:11:48.361 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13367. 2018-08-15 14:11:48.361 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  13368. 2018-08-15 14:11:48.363 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  13369. 2018-08-15 14:11:48.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  13370. 2018-08-15 14:11:48.364 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  13371. 2018-08-15 14:11:48.364 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  13372. 2018-08-15 14:11:48.370 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  13373. 2018-08-15 14:11:48.371 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  13374. 2018-08-15 14:11:48.372 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  13375. 2018-08-15 14:11:48.372 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  13376. 2018-08-15 14:11:48.372 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  13377. 2018-08-15 14:11:48.372 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  13378. 2018-08-15 14:11:48.373 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  13379. 2018-08-15 14:11:48.373 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  13380. 2018-08-15 14:11:48.373 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  13381. 2018-08-15 14:11:48.374 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  13382. 2018-08-15 14:11:48.374 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  13383. 2018-08-15 14:11:48.375 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  13384. 2018-08-15 14:11:48.376 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13385. 2018-08-15 14:11:48.376 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  13386. 2018-08-15 14:11:48.377 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  13387. 2018-08-15 14:11:48.377 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13388. 2018-08-15 14:11:48.378 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  13389. 2018-08-15 14:11:48.378 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  13390. 2018-08-15 14:11:48.378 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13391. 2018-08-15 14:11:48.379 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  13392. 2018-08-15 14:11:48.379 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13393. 2018-08-15 14:11:48.381 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  13394. 2018-08-15 14:11:48.382 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  13395. 2018-08-15 14:11:48.382 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  13396. 2018-08-15 14:11:48.384 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Preparing: select * from check_task_period where 1=1
  13397. 2018-08-15 14:11:48.385 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Parameters:
  13398. 2018-08-15 14:11:48.390 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  13399. 2018-08-15 14:11:48.390 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| <== Total: 15
  13400. 2018-08-15 14:11:48.391 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  13401. 2018-08-15 14:11:48.391 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  13402. 2018-08-15 14:11:48.392 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  13403. 2018-08-15 14:11:48.393 |-ERROR [http-nio-8089-exec-18] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  13404. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13405. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13406. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13407. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedInfoData-Inline
  13408. ### The error occurred while setting parameters
  13409. ### SQL: SELECT * FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS all_check_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.id) AS checked_num, monthfunc(t.start_time) AS mth, t.checked_dept FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept = ? GROUP BY mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1=1 AND m.checked_dept = ? GROUP BY mth ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) t
  13410. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13411. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13412. org.springframework.jdbc.BadSqlGrammarException:
  13413. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13414. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13415. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedInfoData-Inline
  13416. ### The error occurred while setting parameters
  13417. ### SQL: SELECT * FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS all_check_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.id) AS checked_num, monthfunc(t.start_time) AS mth, t.checked_dept FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept = ? GROUP BY mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1=1 AND m.checked_dept = ? GROUP BY mth ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) t
  13418. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13419. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13420. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13421. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13422. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13423. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13424. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13425. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13426. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13427. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13428. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13429. at com.sun.proxy.$Proxy85.selectOneCheckedInfoData(Unknown Source)
  13430. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getOneSACheckedInfo(StatisticsServiceImpl.java:573)
  13431. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13432. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13433. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13434. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13435. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13436. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13437. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13438. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13439. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13440. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13441. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13442. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13443. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13444. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13445. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13446. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13447. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13448. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13449. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13450. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13451. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13452. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13453. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13454. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13455. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13456. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13457. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13458. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13459. at java.lang.Thread.run(Thread.java:745)
  13460. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13461. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13462. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13463. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13464. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13465. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13466. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13467. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13468. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13469. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13470. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13471. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13472. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13473. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13474. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13475. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13476. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13477. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13478. at java.lang.reflect.Method.invoke(Method.java:497)
  13479. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13480. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13481. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13482. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13483. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13484. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13485. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13486. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13487. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13488. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13489. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13490. at java.lang.reflect.Method.invoke(Method.java:497)
  13491. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13492. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13493. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13494. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13495. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13496. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13497. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13498. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13499. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13500. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13501. at java.lang.reflect.Method.invoke(Method.java:497)
  13502. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13503. ... 36 more
  13504. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  13505. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13506. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13507. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13508. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13509. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13510. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13511. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13512. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13513. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13514. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13515. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13516. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13517. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13518. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13519. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13520. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13521. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13522. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13523. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13524. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13525. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13526. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13527. at java.lang.Thread.run(Thread.java:745)
  13528. 2018-08-15 14:11:48.394 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  13529. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13530. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13531. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13532. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedItemInfo-Inline
  13533. ### The error occurred while setting parameters
  13534. ### SQL: SELECT a.* FROM ( SELECT count(t.id) AS checked_num, sum(cs.check_item_score) AS all_check_score, cs.check_item_id, cs.checked_dept as dept_id FROM view_check_task t LEFT JOIN check_score cs ON cs.task_id = t.id WHERE 1 = 1 and cs.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? GROUP BY check_item_id ) a where a.all_check_score is not null
  13535. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13536. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13537. org.springframework.jdbc.BadSqlGrammarException:
  13538. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13539. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13540. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedItemInfo-Inline
  13541. ### The error occurred while setting parameters
  13542. ### SQL: SELECT a.* FROM ( SELECT count(t.id) AS checked_num, sum(cs.check_item_score) AS all_check_score, cs.check_item_id, cs.checked_dept as dept_id FROM view_check_task t LEFT JOIN check_score cs ON cs.task_id = t.id WHERE 1 = 1 and cs.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? GROUP BY check_item_id ) a where a.all_check_score is not null
  13543. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13544. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13545. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13546. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13547. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13548. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13549. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13550. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13551. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13552. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13553. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13554. at com.sun.proxy.$Proxy85.selectOneCheckedItemInfo(Unknown Source)
  13555. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getOneCheckedItemInfo(StatisticsServiceImpl.java:578)
  13556. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13557. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13558. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13559. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13560. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13561. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13562. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13563. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13564. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13565. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13566. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13567. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13568. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13569. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13570. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13571. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13572. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13573. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13574. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13575. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13576. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13577. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13578. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13579. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13580. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13581. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13582. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13583. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13584. at java.lang.Thread.run(Thread.java:745)
  13585. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13586. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13587. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13588. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13589. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13590. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13591. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13592. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13593. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13594. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13595. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13596. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13597. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13598. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13599. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13600. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13601. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13602. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13603. at java.lang.reflect.Method.invoke(Method.java:497)
  13604. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13605. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13606. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13607. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13608. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13609. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13610. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13611. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13612. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13613. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13614. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13615. at java.lang.reflect.Method.invoke(Method.java:497)
  13616. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13617. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13618. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13619. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13620. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13621. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13622. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13623. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13624. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13625. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13626. at java.lang.reflect.Method.invoke(Method.java:497)
  13627. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13628. ... 36 more
  13629. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  13630. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13631. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13632. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13633. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13634. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13635. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13636. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13637. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13638. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13639. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13640. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13641. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13642. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13643. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13644. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13645. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13646. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13647. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13648. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13649. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13650. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13651. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13652. at java.lang.Thread.run(Thread.java:745)
  13653. 2018-08-15 14:11:48.399 |-WARN [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13654. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13655. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13656. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedItemInfo-Inline
  13657. ### The error occurred while setting parameters
  13658. ### SQL: SELECT a.* FROM ( SELECT count(t.id) AS checked_num, sum(cs.check_item_score) AS all_check_score, cs.check_item_id, cs.checked_dept as dept_id FROM view_check_task t LEFT JOIN check_score cs ON cs.task_id = t.id WHERE 1 = 1 and cs.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? GROUP BY check_item_id ) a where a.all_check_score is not null
  13659. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13660. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13661. org.springframework.jdbc.BadSqlGrammarException:
  13662. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13663. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13664. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedItemInfo-Inline
  13665. ### The error occurred while setting parameters
  13666. ### SQL: SELECT a.* FROM ( SELECT count(t.id) AS checked_num, sum(cs.check_item_score) AS all_check_score, cs.check_item_id, cs.checked_dept as dept_id FROM view_check_task t LEFT JOIN check_score cs ON cs.task_id = t.id WHERE 1 = 1 and cs.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? GROUP BY check_item_id ) a where a.all_check_score is not null
  13667. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13668. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13669. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13670. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13671. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13672. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13673. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13674. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13675. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13676. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13677. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13678. at com.sun.proxy.$Proxy85.selectOneCheckedItemInfo(Unknown Source)
  13679. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getOneCheckedItemInfo(StatisticsServiceImpl.java:578)
  13680. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13681. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13682. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13683. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13684. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13685. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13686. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13687. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13688. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13689. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13690. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13691. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13692. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13693. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13694. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13695. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13696. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13697. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13698. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13699. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13700. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13701. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13702. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13703. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13704. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13705. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13706. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13707. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13708. at java.lang.Thread.run(Thread.java:745)
  13709. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13710. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13711. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13712. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13713. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13714. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13715. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13716. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13717. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13718. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13719. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13720. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13721. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13722. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13723. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13724. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13725. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13726. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13727. at java.lang.reflect.Method.invoke(Method.java:497)
  13728. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13729. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13730. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13731. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13732. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13733. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13734. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13735. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13736. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13737. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13738. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13739. at java.lang.reflect.Method.invoke(Method.java:497)
  13740. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13741. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13742. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13743. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13744. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13745. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13746. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13747. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13748. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13749. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13750. at java.lang.reflect.Method.invoke(Method.java:497)
  13751. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13752. ... 36 more
  13753. 2018-08-15 14:11:48.395 |-WARN [http-nio-8089-exec-18] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13754. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13755. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13756. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedInfoData-Inline
  13757. ### The error occurred while setting parameters
  13758. ### SQL: SELECT * FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS all_check_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.id) AS checked_num, monthfunc(t.start_time) AS mth, t.checked_dept FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept = ? GROUP BY mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1=1 AND m.checked_dept = ? GROUP BY mth ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) t
  13759. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13760. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13761. org.springframework.jdbc.BadSqlGrammarException:
  13762. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13763. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13764. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedInfoData-Inline
  13765. ### The error occurred while setting parameters
  13766. ### SQL: SELECT * FROM ( SELECT check_num_t.checked_num, check_num_t.mth, IFNULL(checked_score_t.checkd_all_score, 0) AS all_check_score, check_num_t.checked_dept FROM ( SELECT COUNT(t.id) AS checked_num, monthfunc(t.start_time) AS mth, t.checked_dept FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? AND t.checked_dept = ? GROUP BY mth ) check_num_t LEFT JOIN ( SELECT monthfunc(t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, m.* FROM check_score m INNER JOIN (SELECT * FROM view_check_task t WHERE 1 = 1 AND t.start_time >= ? AND t.end_time < ? ) t ON m.task_id = t.id WHERE 1=1 AND m.checked_dept = ? GROUP BY mth ) checked_score_t ON checked_score_t.checked_dept = check_num_t.checked_dept AND check_num_t.mth = checked_score_t.mth ) t
  13767. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13768. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13769. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13770. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13771. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13772. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13773. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13774. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13775. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13776. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13777. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13778. at com.sun.proxy.$Proxy85.selectOneCheckedInfoData(Unknown Source)
  13779. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getOneSACheckedInfo(StatisticsServiceImpl.java:573)
  13780. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13781. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13782. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13783. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13784. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13785. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13786. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13787. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13788. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13789. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13790. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13791. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13792. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13793. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13794. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13795. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13796. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13797. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13798. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13799. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13800. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13801. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13802. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13803. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13804. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13805. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13806. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13807. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13808. at java.lang.Thread.run(Thread.java:745)
  13809. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13810. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13811. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13812. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13813. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13814. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13815. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13816. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13817. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13818. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13819. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13820. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13821. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13822. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13823. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13824. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13825. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13826. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13827. at java.lang.reflect.Method.invoke(Method.java:497)
  13828. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13829. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13830. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13831. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13832. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13833. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13834. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13835. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13836. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13837. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13838. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13839. at java.lang.reflect.Method.invoke(Method.java:497)
  13840. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13841. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13842. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13843. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13844. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13845. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13846. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13847. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13848. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13849. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13850. at java.lang.reflect.Method.invoke(Method.java:497)
  13851. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13852. ... 36 more
  13853. 2018-08-15 14:11:48.401 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  13854. 2018-08-15 14:11:48.402 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  13855. 2018-08-15 14:11:48.404 |-ERROR [http-nio-8089-exec-21] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  13856. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13857. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13858. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13859. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectStatistics-Inline
  13860. ### The error occurred while setting parameters
  13861. ### SQL: SELECT u.dept_id, u.check_item_id, sum(u.score) AS score FROM ( SELECT t.checked_dept dept_id, t.check_item_id, t.check_item_score AS score FROM check_score t JOIN view_check_task ct ON ct.id = t.task_id WHERE 1 = 1 AND ct.start_time >= ? AND ct.end_time < ? ) u GROUP BY check_item_id
  13862. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13863. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13864. org.springframework.jdbc.BadSqlGrammarException:
  13865. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13866. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13867. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectStatistics-Inline
  13868. ### The error occurred while setting parameters
  13869. ### SQL: SELECT u.dept_id, u.check_item_id, sum(u.score) AS score FROM ( SELECT t.checked_dept dept_id, t.check_item_id, t.check_item_score AS score FROM check_score t JOIN view_check_task ct ON ct.id = t.task_id WHERE 1 = 1 AND ct.start_time >= ? AND ct.end_time < ? ) u GROUP BY check_item_id
  13870. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13871. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13872. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13873. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13874. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  13875. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  13876. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  13877. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  13878. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  13879. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  13880. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  13881. at com.sun.proxy.$Proxy85.selectStatistics(Unknown Source)
  13882. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getEmployeeCheckedInfo(StatisticsServiceImpl.java:604)
  13883. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getEmployeeRankingData(StatisticsServiceImpl.java:485)
  13884. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  13885. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  13886. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  13887. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  13888. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  13889. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  13890. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13891. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13892. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13893. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13894. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13895. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13896. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13897. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13898. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13899. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13900. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13901. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13902. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13903. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13904. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13905. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13906. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13907. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13908. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13909. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13910. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13911. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13912. at java.lang.Thread.run(Thread.java:745)
  13913. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13914. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  13915. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  13916. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  13917. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  13918. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  13919. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  13920. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  13921. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  13922. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  13923. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  13924. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  13925. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  13926. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  13927. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  13928. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  13929. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  13930. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13931. at java.lang.reflect.Method.invoke(Method.java:497)
  13932. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  13933. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  13934. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  13935. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  13936. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  13937. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  13938. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  13939. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  13940. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  13941. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  13942. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13943. at java.lang.reflect.Method.invoke(Method.java:497)
  13944. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  13945. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  13946. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  13947. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  13948. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  13949. at com.sun.proxy.$Proxy98.query(Unknown Source)
  13950. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  13951. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  13952. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  13953. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  13954. at java.lang.reflect.Method.invoke(Method.java:497)
  13955. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  13956. ... 37 more
  13957. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  13958. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13959. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  13960. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13961. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  13962. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13963. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  13964. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13965. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  13966. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13967. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  13968. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13969. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  13970. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13971. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  13972. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  13973. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  13974. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  13975. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  13976. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  13977. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  13978. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  13979. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  13980. at java.lang.Thread.run(Thread.java:745)
  13981. 2018-08-15 14:11:48.405 |-WARN [http-nio-8089-exec-21] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  13982. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13983. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13984. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectStatistics-Inline
  13985. ### The error occurred while setting parameters
  13986. ### SQL: SELECT u.dept_id, u.check_item_id, sum(u.score) AS score FROM ( SELECT t.checked_dept dept_id, t.check_item_id, t.check_item_score AS score FROM check_score t JOIN view_check_task ct ON ct.id = t.task_id WHERE 1 = 1 AND ct.start_time >= ? AND ct.end_time < ? ) u GROUP BY check_item_id
  13987. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13988. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13989. org.springframework.jdbc.BadSqlGrammarException:
  13990. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13991. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  13992. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectStatistics-Inline
  13993. ### The error occurred while setting parameters
  13994. ### SQL: SELECT u.dept_id, u.check_item_id, sum(u.score) AS score FROM ( SELECT t.checked_dept dept_id, t.check_item_id, t.check_item_score AS score FROM check_score t JOIN view_check_task ct ON ct.id = t.task_id WHERE 1 = 1 AND ct.start_time >= ? AND ct.end_time < ? ) u GROUP BY check_item_id
  13995. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13996. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  13997. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  13998. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  13999. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  14000. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  14001. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  14002. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  14003. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  14004. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  14005. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  14006. at com.sun.proxy.$Proxy85.selectStatistics(Unknown Source)
  14007. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getEmployeeCheckedInfo(StatisticsServiceImpl.java:604)
  14008. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getEmployeeRankingData(StatisticsServiceImpl.java:485)
  14009. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  14010. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  14011. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  14012. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  14013. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  14014. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  14015. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14016. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  14017. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14018. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  14019. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14020. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  14021. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14022. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  14023. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14024. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  14025. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14026. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  14027. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14028. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  14029. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14030. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  14031. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  14032. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  14033. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  14034. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  14035. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  14036. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  14037. at java.lang.Thread.run(Thread.java:745)
  14038. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14039. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  14040. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  14041. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  14042. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  14043. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  14044. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  14045. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  14046. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  14047. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  14048. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  14049. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  14050. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  14051. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  14052. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  14053. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  14054. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  14055. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14056. at java.lang.reflect.Method.invoke(Method.java:497)
  14057. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  14058. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  14059. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  14060. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  14061. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  14062. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  14063. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  14064. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  14065. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
  14066. at sun.reflect.GeneratedMethodAccessor216.invoke(Unknown Source)
  14067. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14068. at java.lang.reflect.Method.invoke(Method.java:497)
  14069. at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
  14070. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
  14071. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  14072. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  14073. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  14074. at com.sun.proxy.$Proxy98.query(Unknown Source)
  14075. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  14076. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  14077. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  14078. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14079. at java.lang.reflect.Method.invoke(Method.java:497)
  14080. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  14081. ... 37 more
  14082. 2018-08-15 14:11:48.423 |-ERROR [http-nio-8089-exec-11] com.xintong.visualinspection.controller.BaseController [193] -| 其他错误
  14083. java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  14084. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14085. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  14086. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedDetailInfo-Inline
  14087. ### The error occurred while setting parameters
  14088. ### SQL: SELECT count(0) FROM view_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  14089. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14090. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14091. org.springframework.jdbc.BadSqlGrammarException:
  14092. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14093. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  14094. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedDetailInfo-Inline
  14095. ### The error occurred while setting parameters
  14096. ### SQL: SELECT count(0) FROM view_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  14097. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14098. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14099. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  14100. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  14101. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  14102. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  14103. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  14104. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  14105. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  14106. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  14107. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  14108. at com.sun.proxy.$Proxy85.selectOneCheckedDetailInfo(Unknown Source)
  14109. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getOneCheckedDetailInfo(StatisticsServiceImpl.java:515)
  14110. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  14111. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  14112. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  14113. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  14114. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  14115. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  14116. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14117. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  14118. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14119. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  14120. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14121. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  14122. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14123. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  14124. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14125. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  14126. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14127. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  14128. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14129. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  14130. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14131. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  14132. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  14133. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  14134. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  14135. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  14136. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  14137. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  14138. at java.lang.Thread.run(Thread.java:745)
  14139. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14140. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  14141. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  14142. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  14143. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  14144. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  14145. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  14146. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  14147. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  14148. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  14149. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  14150. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  14151. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  14152. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  14153. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  14154. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  14155. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  14156. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14157. at java.lang.reflect.Method.invoke(Method.java:497)
  14158. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  14159. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  14160. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  14161. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  14162. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  14163. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  14164. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  14165. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  14166. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  14167. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  14168. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  14169. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  14170. at com.sun.proxy.$Proxy98.query(Unknown Source)
  14171. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  14172. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  14173. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  14174. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14175. at java.lang.reflect.Method.invoke(Method.java:497)
  14176. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  14177. ... 36 more
  14178. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:105)
  14179. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14180. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  14181. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14182. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  14183. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14184. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  14185. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14186. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  14187. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14188. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  14189. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14190. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  14191. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14192. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  14193. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14194. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  14195. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  14196. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  14197. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  14198. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  14199. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  14200. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  14201. at java.lang.Thread.run(Thread.java:745)
  14202. 2018-08-15 14:11:48.423 |-WARN [http-nio-8089-exec-11] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.RuntimeException: org.springframework.jdbc.BadSqlGrammarException:
  14203. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14204. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  14205. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedDetailInfo-Inline
  14206. ### The error occurred while setting parameters
  14207. ### SQL: SELECT count(0) FROM view_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  14208. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14209. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14210. org.springframework.jdbc.BadSqlGrammarException:
  14211. ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14212. ### The error may exist in file [/Users/wenhongquan/VisualInspection/Visuallnspection_qzd/target/classes/com/xintong/visualinspection/visuallnspection_qzd/mapper/master/StatisticsMapper.xml]
  14213. ### The error may involve com.xintong.visualinspection.visuallnspection_qzd.dao.QzdStatisticsDao.selectOneCheckedDetailInfo-Inline
  14214. ### The error occurred while setting parameters
  14215. ### SQL: SELECT count(0) FROM view_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id WHERE 1 = 1 AND t.checked_dept = ? AND t.start_time >= ? AND t.end_time < ? AND cs.check_item_score IS NOT NULL
  14216. ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14217. ; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14218. at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
  14219. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
  14220. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
  14221. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
  14222. at com.sun.proxy.$Proxy82.selectList(Unknown Source)
  14223. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
  14224. at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
  14225. at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
  14226. at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
  14227. at com.sun.proxy.$Proxy85.selectOneCheckedDetailInfo(Unknown Source)
  14228. at com.xintong.visualinspection.visuallnspection_qzd.service.impl.StatisticsServiceImpl.getOneCheckedDetailInfo(StatisticsServiceImpl.java:515)
  14229. at com.alibaba.dubbo.common.bytecode.Wrapper13.invokeMethod(Wrapper13.java)
  14230. at com.alibaba.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:45)
  14231. at com.alibaba.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:71)
  14232. at com.alibaba.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:48)
  14233. at com.alibaba.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:52)
  14234. at com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:61)
  14235. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14236. at com.alibaba.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:74)
  14237. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14238. at com.alibaba.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:41)
  14239. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14240. at com.alibaba.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:77)
  14241. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14242. at com.alibaba.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:60)
  14243. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14244. at com.alibaba.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:131)
  14245. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14246. at com.alibaba.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:37)
  14247. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14248. at com.alibaba.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:37)
  14249. at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:68)
  14250. at com.alibaba.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:95)
  14251. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:96)
  14252. at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:168)
  14253. at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:50)
  14254. at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:79)
  14255. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
  14256. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
  14257. at java.lang.Thread.run(Thread.java:745)
  14258. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_3.view_check_task' doesn't exist
  14259. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  14260. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  14261. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  14262. at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
  14263. at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  14264. at com.mysql.jdbc.Util.getInstance(Util.java:408)
  14265. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
  14266. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  14267. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  14268. at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
  14269. at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
  14270. at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
  14271. at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
  14272. at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
  14273. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
  14274. at sun.reflect.GeneratedMethodAccessor175.invoke(Unknown Source)
  14275. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14276. at java.lang.reflect.Method.invoke(Method.java:497)
  14277. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  14278. at com.sun.proxy.$Proxy100.execute(Unknown Source)
  14279. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
  14280. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  14281. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  14282. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
  14283. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  14284. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  14285. at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:146)
  14286. at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
  14287. at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
  14288. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
  14289. at com.sun.proxy.$Proxy98.query(Unknown Source)
  14290. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
  14291. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
  14292. at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
  14293. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  14294. at java.lang.reflect.Method.invoke(Method.java:497)
  14295. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
  14296. ... 36 more
  14297. 2018-08-15 14:11:49.083 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14298. 2018-08-15 14:11:49.085 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14299. 2018-08-15 14:11:49.085 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14300. 2018-08-15 14:11:49.087 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14301. 2018-08-15 14:11:49.087 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14302. 2018-08-15 14:11:49.088 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14303. 2018-08-15 14:11:49.094 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14304. 2018-08-15 14:11:49.095 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14305. 2018-08-15 14:11:49.095 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14306. 2018-08-15 14:11:49.096 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14307. 2018-08-15 14:11:49.098 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14308. 2018-08-15 14:11:49.099 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14309. 2018-08-15 14:11:49.104 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Preparing: select * from check_task_period where 1=1
  14310. 2018-08-15 14:11:49.104 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Parameters:
  14311. 2018-08-15 14:11:49.106 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| <== Total: 15
  14312. 2018-08-15 14:11:49.800 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14313. 2018-08-15 14:11:49.802 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14314. 2018-08-15 14:11:49.802 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14315. 2018-08-15 14:11:49.805 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14316. 2018-08-15 14:11:49.805 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14317. 2018-08-15 14:11:49.806 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14318. 2018-08-15 14:11:49.812 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14319. 2018-08-15 14:11:49.813 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14320. 2018-08-15 14:11:49.813 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14321. 2018-08-15 14:11:49.815 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14322. 2018-08-15 14:11:49.816 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14323. 2018-08-15 14:11:49.817 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14324. 2018-08-15 14:11:49.821 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Preparing: select * from check_task_period where 1=1
  14325. 2018-08-15 14:11:49.821 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| ==> Parameters:
  14326. 2018-08-15 14:11:49.823 |-DEBUG [DubboServerHandler-192.168.68.111:7682-thread-200] com.xintong.visualinspection.dao.master.CheckTaskPeriodDao.select [159] -| <== Total: 15
  14327. 2018-08-15 14:11:51.452 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14328. 2018-08-15 14:11:51.452 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14329. 2018-08-15 14:11:51.452 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14330. 2018-08-15 14:11:51.455 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14331. 2018-08-15 14:11:51.455 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14332. 2018-08-15 14:11:51.455 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14333. 2018-08-15 14:11:51.455 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14334. 2018-08-15 14:11:51.455 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14335. 2018-08-15 14:11:51.455 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14336. 2018-08-15 14:11:51.456 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14337. 2018-08-15 14:11:51.457 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14338. 2018-08-15 14:11:51.457 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14339. 2018-08-15 14:11:51.458 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14340. 2018-08-15 14:11:51.459 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14341. 2018-08-15 14:11:51.459 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14342. 2018-08-15 14:11:51.460 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14343. 2018-08-15 14:11:51.460 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14344. 2018-08-15 14:11:51.459 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14345. 2018-08-15 14:11:51.461 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14346. 2018-08-15 14:11:51.460 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14347. 2018-08-15 14:11:51.460 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14348. 2018-08-15 14:11:51.460 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14349. 2018-08-15 14:11:51.461 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14350. 2018-08-15 14:11:51.462 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14351. 2018-08-15 14:11:51.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14352. 2018-08-15 14:11:51.462 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14353. 2018-08-15 14:11:51.463 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14354. 2018-08-15 14:11:51.464 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14355. 2018-08-15 14:11:51.464 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14356. 2018-08-15 14:11:51.465 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14357. 2018-08-15 14:11:51.465 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14358. 2018-08-15 14:11:51.465 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14359. 2018-08-15 14:11:51.466 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14360. 2018-08-15 14:11:51.466 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14361. 2018-08-15 14:11:51.466 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14362. 2018-08-15 14:11:51.466 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14363. 2018-08-15 14:11:51.466 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14364. 2018-08-15 14:11:51.466 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14365. 2018-08-15 14:11:51.467 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14366. 2018-08-15 14:11:51.470 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14367. 2018-08-15 14:11:51.470 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14368. 2018-08-15 14:11:51.471 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14369. 2018-08-15 14:11:51.472 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14370. 2018-08-15 14:11:51.472 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14371. 2018-08-15 14:11:51.473 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14372. 2018-08-15 14:11:51.473 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14373. 2018-08-15 14:11:51.473 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14374. 2018-08-15 14:11:51.474 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14375. 2018-08-15 14:11:51.474 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14376. 2018-08-15 14:11:51.474 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14377. 2018-08-15 14:11:51.475 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14378. 2018-08-15 14:11:51.475 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14379. 2018-08-15 14:11:51.475 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14380. 2018-08-15 14:11:51.476 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14381. 2018-08-15 14:11:51.476 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14382. 2018-08-15 14:11:51.477 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  14383. 2018-08-15 14:11:51.476 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14384. 2018-08-15 14:11:51.476 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14385. 2018-08-15 14:11:51.477 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14386. 2018-08-15 14:11:51.477 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  14387. 2018-08-15 14:11:51.477 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14388. 2018-08-15 14:11:51.478 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14389. 2018-08-15 14:11:51.478 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14390. 2018-08-15 14:11:51.478 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14391. 2018-08-15 14:11:51.479 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14392. 2018-08-15 14:11:51.480 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  14393. 2018-08-15 14:11:51.480 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14394. 2018-08-15 14:11:51.480 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14395. 2018-08-15 14:11:51.481 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14396. 2018-08-15 14:11:51.482 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14397. 2018-08-15 14:11:51.483 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14398. 2018-08-15 14:11:51.483 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14399. 2018-08-15 14:11:51.483 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14400. 2018-08-15 14:11:51.484 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14401. 2018-08-15 14:11:51.484 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14402. 2018-08-15 14:11:51.485 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14403. 2018-08-15 14:11:51.485 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14404. 2018-08-15 14:11:51.485 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14405. 2018-08-15 14:11:51.486 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14406. 2018-08-15 14:11:51.487 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14407. 2018-08-15 14:11:51.487 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14408. 2018-08-15 14:11:51.488 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14409. 2018-08-15 14:11:51.488 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  14410. 2018-08-15 14:11:51.488 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  14411. 2018-08-15 14:11:51.489 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14412. 2018-08-15 14:11:51.489 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 30(Integer)
  14413. 2018-08-15 14:11:51.489 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  14414. 2018-08-15 14:11:51.489 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  14415. 2018-08-15 14:11:51.489 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14416. 2018-08-15 14:11:51.489 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14417. 2018-08-15 14:11:51.490 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  14418. 2018-08-15 14:11:51.490 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  14419. 2018-08-15 14:11:51.491 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14420. 2018-08-15 14:11:51.491 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 20(Integer)
  14421. 2018-08-15 14:11:51.491 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14422. 2018-08-15 14:11:51.491 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  14423. 2018-08-15 14:11:51.492 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 34
  14424. 2018-08-15 14:11:51.493 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14425. 2018-08-15 14:11:51.493 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14426. 2018-08-15 14:11:51.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 31
  14427. 2018-08-15 14:11:51.495 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  14428. 2018-08-15 14:11:51.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14429. 2018-08-15 14:11:51.496 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14430. 2018-08-15 14:11:51.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14431. 2018-08-15 14:11:51.496 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14432. 2018-08-15 14:11:51.497 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14433. 2018-08-15 14:11:51.498 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14434. 2018-08-15 14:11:51.498 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14435. 2018-08-15 14:11:51.498 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14436. 2018-08-15 14:11:51.498 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14437. 2018-08-15 14:11:51.498 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14438. 2018-08-15 14:11:51.500 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14439. 2018-08-15 14:11:51.501 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14440. 2018-08-15 14:11:51.502 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14441. 2018-08-15 14:11:51.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14442. 2018-08-15 14:11:51.503 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14443. 2018-08-15 14:11:51.504 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14444. 2018-08-15 14:11:51.504 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14445. 2018-08-15 14:11:51.505 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14446. 2018-08-15 14:11:51.505 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14447. 2018-08-15 14:11:51.508 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  14448. 2018-08-15 14:11:51.508 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  14449. 2018-08-15 14:11:51.509 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  14450. 2018-08-15 14:11:51.510 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 40(Integer)
  14451. 2018-08-15 14:11:51.511 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  14452. 2018-08-15 14:11:51.511 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 0
  14453. 2018-08-15 14:11:51.512 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14454. 2018-08-15 14:11:51.512 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14455. 2018-08-15 14:11:51.518 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14456. 2018-08-15 14:11:52.399 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14457. 2018-08-15 14:11:52.400 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14458. 2018-08-15 14:11:52.400 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14459. 2018-08-15 14:11:52.402 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14460. 2018-08-15 14:11:52.402 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14461. 2018-08-15 14:11:52.402 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14462. 2018-08-15 14:11:52.402 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14463. 2018-08-15 14:11:52.402 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14464. 2018-08-15 14:11:52.402 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14465. 2018-08-15 14:11:52.403 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14466. 2018-08-15 14:11:52.404 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14467. 2018-08-15 14:11:52.404 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14468. 2018-08-15 14:11:52.404 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14469. 2018-08-15 14:11:52.405 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14470. 2018-08-15 14:11:52.405 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14471. 2018-08-15 14:11:52.405 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14472. 2018-08-15 14:11:52.405 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14473. 2018-08-15 14:11:52.405 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14474. 2018-08-15 14:11:52.406 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14475. 2018-08-15 14:11:52.406 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14476. 2018-08-15 14:11:52.406 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14477. 2018-08-15 14:11:52.406 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14478. 2018-08-15 14:11:52.406 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14479. 2018-08-15 14:11:52.406 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14480. 2018-08-15 14:11:52.407 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14481. 2018-08-15 14:11:52.407 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14482. 2018-08-15 14:11:52.407 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14483. 2018-08-15 14:11:52.409 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14484. 2018-08-15 14:11:52.410 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14485. 2018-08-15 14:11:52.410 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14486. 2018-08-15 14:11:52.413 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14487. 2018-08-15 14:11:52.414 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14488. 2018-08-15 14:11:52.414 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14489. 2018-08-15 14:11:52.414 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14490. 2018-08-15 14:11:52.414 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14491. 2018-08-15 14:11:52.415 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14492. 2018-08-15 14:11:52.415 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14493. 2018-08-15 14:11:52.416 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14494. 2018-08-15 14:11:52.416 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14495. 2018-08-15 14:11:52.416 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14496. 2018-08-15 14:11:52.417 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14497. 2018-08-15 14:11:52.418 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14498. 2018-08-15 14:11:52.418 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14499. 2018-08-15 14:11:52.418 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14500. 2018-08-15 14:11:52.432 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14501. 2018-08-15 14:11:52.432 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14502. 2018-08-15 14:11:52.433 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14503. 2018-08-15 14:11:52.433 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14504. 2018-08-15 14:11:52.433 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14505. 2018-08-15 14:11:52.433 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14506. 2018-08-15 14:11:52.433 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14507. 2018-08-15 14:11:52.433 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14508. 2018-08-15 14:11:52.434 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14509. 2018-08-15 14:11:52.435 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14510. 2018-08-15 14:11:52.435 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14511. 2018-08-15 14:11:52.435 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  14512. 2018-08-15 14:11:52.435 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14513. 2018-08-15 14:11:52.436 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  14514. 2018-08-15 14:11:52.437 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14515. 2018-08-15 14:11:52.438 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  14516. 2018-08-15 14:11:52.438 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14517. 2018-08-15 14:11:52.438 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14518. 2018-08-15 14:11:52.439 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14519. 2018-08-15 14:11:52.439 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  14520. 2018-08-15 14:11:52.440 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  14521. 2018-08-15 14:11:52.440 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  14522. 2018-08-15 14:11:52.441 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  14523. 2018-08-15 14:11:52.442 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  14524. 2018-08-15 14:11:52.443 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  14525. 2018-08-15 14:11:52.443 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  14526. 2018-08-15 14:11:52.444 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  14527. 2018-08-15 14:11:52.448 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  14528. 2018-08-15 14:11:52.448 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14529. 2018-08-15 14:11:52.449 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14530. 2018-08-15 14:11:52.455 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14531. 2018-08-15 14:11:52.500 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14532. 2018-08-15 14:11:52.501 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14533. 2018-08-15 14:11:52.501 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14534. 2018-08-15 14:11:52.501 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14535. 2018-08-15 14:11:52.502 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14536. 2018-08-15 14:11:52.502 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14537. 2018-08-15 14:11:52.503 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14538. 2018-08-15 14:11:52.503 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14539. 2018-08-15 14:11:52.503 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14540. 2018-08-15 14:11:52.503 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14541. 2018-08-15 14:11:52.503 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14542. 2018-08-15 14:11:52.503 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14543. 2018-08-15 14:11:52.504 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14544. 2018-08-15 14:11:52.505 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14545. 2018-08-15 14:11:52.505 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14546. 2018-08-15 14:11:52.505 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14547. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14548. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14549. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14550. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14551. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14552. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14553. 2018-08-15 14:11:52.506 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14554. 2018-08-15 14:11:52.507 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14555. 2018-08-15 14:11:52.513 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14556. 2018-08-15 14:11:52.513 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14557. 2018-08-15 14:11:52.513 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14558. 2018-08-15 14:11:52.514 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14559. 2018-08-15 14:11:52.514 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14560. 2018-08-15 14:11:52.514 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14561. 2018-08-15 14:11:52.514 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14562. 2018-08-15 14:11:52.515 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14563. 2018-08-15 14:11:52.515 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14564. 2018-08-15 14:11:52.515 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14565. 2018-08-15 14:11:52.515 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14566. 2018-08-15 14:11:52.515 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14567. 2018-08-15 14:11:52.515 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14568. 2018-08-15 14:11:52.516 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14569. 2018-08-15 14:11:52.517 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14570. 2018-08-15 14:11:52.517 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14571. 2018-08-15 14:11:52.517 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14572. 2018-08-15 14:11:52.517 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14573. 2018-08-15 14:11:52.518 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14574. 2018-08-15 14:11:52.518 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14575. 2018-08-15 14:11:52.518 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14576. 2018-08-15 14:11:52.519 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  14577. 2018-08-15 14:11:52.519 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14578. 2018-08-15 14:11:52.519 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  14579. 2018-08-15 14:11:52.519 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14580. 2018-08-15 14:11:52.519 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  14581. 2018-08-15 14:11:52.520 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  14582. 2018-08-15 14:11:52.520 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  14583. 2018-08-15 14:11:52.520 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14584. 2018-08-15 14:11:52.521 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  14585. 2018-08-15 14:11:52.522 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  14586. 2018-08-15 14:11:52.522 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  14587. 2018-08-15 14:11:52.522 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  14588. 2018-08-15 14:11:52.522 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  14589. 2018-08-15 14:11:52.523 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  14590. 2018-08-15 14:11:52.525 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  14591. 2018-08-15 14:11:52.531 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14592. 2018-08-15 14:11:52.532 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14593. 2018-08-15 14:11:52.533 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14594. 2018-08-15 14:11:52.537 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14595. 2018-08-15 14:11:52.538 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14596. 2018-08-15 14:11:52.538 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14597. 2018-08-15 14:11:52.545 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14598. 2018-08-15 14:11:52.545 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14599. 2018-08-15 14:11:52.546 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14600. 2018-08-15 14:11:52.547 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14601. 2018-08-15 14:11:52.550 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14602. 2018-08-15 14:11:52.550 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14603. 2018-08-15 14:11:52.555 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  14604. 2018-08-15 14:11:52.555 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  14605. 2018-08-15 14:11:52.589 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  14606. 2018-08-15 14:11:52.615 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14607. 2018-08-15 14:11:52.617 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14608. 2018-08-15 14:11:52.617 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14609. 2018-08-15 14:11:52.619 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14610. 2018-08-15 14:11:52.620 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14611. 2018-08-15 14:11:52.620 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14612. 2018-08-15 14:11:52.626 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14613. 2018-08-15 14:11:52.626 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14614. 2018-08-15 14:11:52.627 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14615. 2018-08-15 14:11:52.628 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14616. 2018-08-15 14:11:52.630 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14617. 2018-08-15 14:11:52.631 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14618. 2018-08-15 14:11:52.634 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  14619. 2018-08-15 14:11:52.635 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  14620. 2018-08-15 14:11:52.636 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  14621. 2018-08-15 14:11:52.653 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14622. 2018-08-15 14:11:52.654 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14623. 2018-08-15 14:11:52.655 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14624. 2018-08-15 14:11:52.656 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14625. 2018-08-15 14:11:52.657 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14626. 2018-08-15 14:11:52.657 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14627. 2018-08-15 14:11:52.664 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14628. 2018-08-15 14:11:52.664 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14629. 2018-08-15 14:11:52.664 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14630. 2018-08-15 14:11:52.664 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14631. 2018-08-15 14:11:52.665 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14632. 2018-08-15 14:11:52.665 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14633. 2018-08-15 14:11:52.665 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14634. 2018-08-15 14:11:52.666 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14635. 2018-08-15 14:11:52.666 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14636. 2018-08-15 14:11:52.666 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14637. 2018-08-15 14:11:52.667 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14638. 2018-08-15 14:11:52.668 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14639. 2018-08-15 14:11:52.668 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14640. 2018-08-15 14:11:52.668 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14641. 2018-08-15 14:11:52.668 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14642. 2018-08-15 14:11:52.668 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14643. 2018-08-15 14:11:52.669 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14644. 2018-08-15 14:11:52.669 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14645. 2018-08-15 14:11:52.670 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  14646. 2018-08-15 14:11:52.670 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  14647. 2018-08-15 14:11:52.673 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  14648. 2018-08-15 14:11:52.675 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14649. 2018-08-15 14:11:52.675 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14650. 2018-08-15 14:11:52.676 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14651. 2018-08-15 14:11:52.676 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14652. 2018-08-15 14:11:52.676 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14653. 2018-08-15 14:11:52.677 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14654. 2018-08-15 14:11:52.677 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14655. 2018-08-15 14:11:52.678 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14656. 2018-08-15 14:11:52.680 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14657. 2018-08-15 14:11:52.680 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14658. 2018-08-15 14:11:52.681 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14659. 2018-08-15 14:11:52.681 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14660. 2018-08-15 14:11:52.684 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  14661. 2018-08-15 14:11:52.685 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  14662. 2018-08-15 14:11:52.687 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  14663. 2018-08-15 14:11:52.687 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  14664. 2018-08-15 14:11:52.687 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  14665. 2018-08-15 14:11:52.689 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  14666. 2018-08-15 14:11:53.979 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14667. 2018-08-15 14:11:53.981 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14668. 2018-08-15 14:11:53.981 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14669. 2018-08-15 14:11:53.982 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14670. 2018-08-15 14:11:53.983 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14671. 2018-08-15 14:11:53.983 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14672. 2018-08-15 14:11:53.984 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14673. 2018-08-15 14:11:53.984 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14674. 2018-08-15 14:11:53.985 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14675. 2018-08-15 14:11:53.989 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14676. 2018-08-15 14:11:53.990 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14677. 2018-08-15 14:11:53.994 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14678. 2018-08-15 14:11:53.996 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14679. 2018-08-15 14:11:53.997 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14680. 2018-08-15 14:11:53.997 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14681. 2018-08-15 14:11:53.999 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14682. 2018-08-15 14:11:54.000 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14683. 2018-08-15 14:11:54.001 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14684. 2018-08-15 14:11:54.001 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14685. 2018-08-15 14:11:54.001 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14686. 2018-08-15 14:11:54.002 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14687. 2018-08-15 14:11:54.003 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14688. 2018-08-15 14:11:54.004 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14689. 2018-08-15 14:11:54.005 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14690. 2018-08-15 14:11:54.006 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  14691. 2018-08-15 14:11:54.007 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  14692. 2018-08-15 14:11:54.009 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  14693. 2018-08-15 14:11:54.011 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  14694. 2018-08-15 14:11:54.011 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  14695. 2018-08-15 14:11:54.012 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  14696. 2018-08-15 14:11:54.013 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  14697. 2018-08-15 14:11:54.014 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  14698. 2018-08-15 14:11:54.016 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  14699. 2018-08-15 14:11:58.501 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14700. 2018-08-15 14:11:58.503 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14701. 2018-08-15 14:11:58.503 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14702. 2018-08-15 14:11:58.507 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14703. 2018-08-15 14:11:58.507 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14704. 2018-08-15 14:11:58.507 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14705. 2018-08-15 14:11:58.513 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14706. 2018-08-15 14:11:58.514 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14707. 2018-08-15 14:11:58.514 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14708. 2018-08-15 14:11:58.516 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14709. 2018-08-15 14:11:58.518 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14710. 2018-08-15 14:11:58.518 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14711. 2018-08-15 14:11:58.542 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByFlag [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and code_flag=?
  14712. 2018-08-15 14:11:58.543 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByFlag [159] -| ==> Parameters: rule_type(String)
  14713. 2018-08-15 14:11:58.546 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByFlag [159] -| <== Total: 9
  14714. 2018-08-15 14:12:08.565 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14715. 2018-08-15 14:12:08.567 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14716. 2018-08-15 14:12:08.568 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14717. 2018-08-15 14:12:08.570 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14718. 2018-08-15 14:12:08.570 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14719. 2018-08-15 14:12:08.570 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14720. 2018-08-15 14:12:08.576 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14721. 2018-08-15 14:12:08.577 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14722. 2018-08-15 14:12:08.577 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14723. 2018-08-15 14:12:08.578 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14724. 2018-08-15 14:12:08.580 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14725. 2018-08-15 14:12:08.581 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14726. 2018-08-15 14:12:08.587 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14727. 2018-08-15 14:12:08.587 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14728. 2018-08-15 14:12:08.588 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14729. 2018-08-15 14:12:08.589 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14730. 2018-08-15 14:12:08.589 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 0(Integer), 10(Integer)
  14731. 2018-08-15 14:12:08.591 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14732. 2018-08-15 14:12:17.970 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14733. 2018-08-15 14:12:17.970 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14734. 2018-08-15 14:12:17.972 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14735. 2018-08-15 14:12:17.972 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14736. 2018-08-15 14:12:17.972 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14737. 2018-08-15 14:12:17.972 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14738. 2018-08-15 14:12:17.974 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14739. 2018-08-15 14:12:17.975 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14740. 2018-08-15 14:12:17.975 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14741. 2018-08-15 14:12:17.975 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14742. 2018-08-15 14:12:17.975 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14743. 2018-08-15 14:12:17.976 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14744. 2018-08-15 14:12:17.982 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14745. 2018-08-15 14:12:17.983 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14746. 2018-08-15 14:12:17.983 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14747. 2018-08-15 14:12:17.984 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14748. 2018-08-15 14:12:17.984 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14749. 2018-08-15 14:12:17.984 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14750. 2018-08-15 14:12:17.985 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14751. 2018-08-15 14:12:17.986 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14752. 2018-08-15 14:12:17.987 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14753. 2018-08-15 14:12:17.987 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14754. 2018-08-15 14:12:17.988 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14755. 2018-08-15 14:12:17.988 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14756. 2018-08-15 14:12:17.995 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  14757. 2018-08-15 14:12:17.995 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rul(String)
  14758. 2018-08-15 14:12:17.996 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  14759. 2018-08-15 14:12:17.996 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  14760. 2018-08-15 14:12:17.997 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rul(String)
  14761. 2018-08-15 14:12:17.998 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  14762. 2018-08-15 14:12:24.210 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14763. 2018-08-15 14:12:24.210 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14764. 2018-08-15 14:12:24.212 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14765. 2018-08-15 14:12:24.212 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14766. 2018-08-15 14:12:24.212 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14767. 2018-08-15 14:12:24.212 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14768. 2018-08-15 14:12:24.215 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14769. 2018-08-15 14:12:24.215 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14770. 2018-08-15 14:12:24.215 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14771. 2018-08-15 14:12:24.216 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14772. 2018-08-15 14:12:24.216 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14773. 2018-08-15 14:12:24.216 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14774. 2018-08-15 14:12:24.222 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14775. 2018-08-15 14:12:24.222 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14776. 2018-08-15 14:12:24.222 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14777. 2018-08-15 14:12:24.223 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14778. 2018-08-15 14:12:24.224 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14779. 2018-08-15 14:12:24.224 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14780. 2018-08-15 14:12:24.224 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14781. 2018-08-15 14:12:24.225 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14782. 2018-08-15 14:12:24.225 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14783. 2018-08-15 14:12:24.226 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14784. 2018-08-15 14:12:24.227 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14785. 2018-08-15 14:12:24.227 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14786. 2018-08-15 14:12:24.231 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  14787. 2018-08-15 14:12:24.232 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  14788. 2018-08-15 14:12:24.232 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  14789. 2018-08-15 14:12:24.233 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  14790. 2018-08-15 14:12:24.233 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  14791. 2018-08-15 14:12:24.234 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  14792. 2018-08-15 14:12:27.492 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14793. 2018-08-15 14:12:27.493 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14794. 2018-08-15 14:12:27.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14795. 2018-08-15 14:12:27.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14796. 2018-08-15 14:12:27.495 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14797. 2018-08-15 14:12:27.495 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14798. 2018-08-15 14:12:27.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14799. 2018-08-15 14:12:27.497 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14800. 2018-08-15 14:12:27.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14801. 2018-08-15 14:12:27.497 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14802. 2018-08-15 14:12:27.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14803. 2018-08-15 14:12:27.498 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14804. 2018-08-15 14:12:27.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14805. 2018-08-15 14:12:27.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14806. 2018-08-15 14:12:27.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14807. 2018-08-15 14:12:27.504 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14808. 2018-08-15 14:12:27.505 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14809. 2018-08-15 14:12:27.505 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14810. 2018-08-15 14:12:27.505 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14811. 2018-08-15 14:12:27.506 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14812. 2018-08-15 14:12:27.507 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14813. 2018-08-15 14:12:27.507 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14814. 2018-08-15 14:12:27.508 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14815. 2018-08-15 14:12:27.509 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14816. 2018-08-15 14:12:27.511 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14817. 2018-08-15 14:12:27.512 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14818. 2018-08-15 14:12:27.512 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14819. 2018-08-15 14:12:27.512 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14820. 2018-08-15 14:12:27.512 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14821. 2018-08-15 14:12:27.513 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14822. 2018-08-15 14:12:27.513 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14823. 2018-08-15 14:12:27.513 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 0(Integer), 10(Integer)
  14824. 2018-08-15 14:12:27.514 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14825. 2018-08-15 14:12:27.514 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 0(Integer), 10(Integer)
  14826. 2018-08-15 14:12:27.516 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14827. 2018-08-15 14:12:27.516 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14828. 2018-08-15 14:12:30.807 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14829. 2018-08-15 14:12:30.809 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14830. 2018-08-15 14:12:30.809 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14831. 2018-08-15 14:12:30.811 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14832. 2018-08-15 14:12:30.812 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14833. 2018-08-15 14:12:30.812 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14834. 2018-08-15 14:12:30.818 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14835. 2018-08-15 14:12:30.819 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14836. 2018-08-15 14:12:30.819 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14837. 2018-08-15 14:12:30.820 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14838. 2018-08-15 14:12:30.822 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14839. 2018-08-15 14:12:30.823 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14840. 2018-08-15 14:12:30.827 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14841. 2018-08-15 14:12:30.827 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14842. 2018-08-15 14:12:30.828 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14843. 2018-08-15 14:12:30.828 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14844. 2018-08-15 14:12:30.829 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 10(Integer), 10(Integer)
  14845. 2018-08-15 14:12:30.830 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14846. 2018-08-15 14:12:31.597 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14847. 2018-08-15 14:12:31.599 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14848. 2018-08-15 14:12:31.600 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14849. 2018-08-15 14:12:31.602 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14850. 2018-08-15 14:12:31.602 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14851. 2018-08-15 14:12:31.603 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14852. 2018-08-15 14:12:31.611 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14853. 2018-08-15 14:12:31.611 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14854. 2018-08-15 14:12:31.611 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14855. 2018-08-15 14:12:31.613 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14856. 2018-08-15 14:12:31.615 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14857. 2018-08-15 14:12:31.616 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14858. 2018-08-15 14:12:31.620 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14859. 2018-08-15 14:12:31.621 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14860. 2018-08-15 14:12:31.622 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14861. 2018-08-15 14:12:31.622 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14862. 2018-08-15 14:12:31.623 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 20(Integer), 10(Integer)
  14863. 2018-08-15 14:12:31.624 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14864. 2018-08-15 14:12:31.975 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14865. 2018-08-15 14:12:31.976 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14866. 2018-08-15 14:12:31.977 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14867. 2018-08-15 14:12:31.979 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14868. 2018-08-15 14:12:31.979 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14869. 2018-08-15 14:12:31.980 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14870. 2018-08-15 14:12:31.985 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14871. 2018-08-15 14:12:31.986 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14872. 2018-08-15 14:12:31.986 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14873. 2018-08-15 14:12:31.987 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14874. 2018-08-15 14:12:31.989 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14875. 2018-08-15 14:12:31.990 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14876. 2018-08-15 14:12:31.994 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14877. 2018-08-15 14:12:31.994 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14878. 2018-08-15 14:12:31.995 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14879. 2018-08-15 14:12:31.996 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14880. 2018-08-15 14:12:31.996 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 30(Integer), 10(Integer)
  14881. 2018-08-15 14:12:31.998 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14882. 2018-08-15 14:12:32.224 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14883. 2018-08-15 14:12:32.226 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14884. 2018-08-15 14:12:32.227 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14885. 2018-08-15 14:12:32.229 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14886. 2018-08-15 14:12:32.229 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14887. 2018-08-15 14:12:32.229 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14888. 2018-08-15 14:12:32.235 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14889. 2018-08-15 14:12:32.236 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14890. 2018-08-15 14:12:32.236 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14891. 2018-08-15 14:12:32.239 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14892. 2018-08-15 14:12:32.240 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14893. 2018-08-15 14:12:32.241 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14894. 2018-08-15 14:12:32.245 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14895. 2018-08-15 14:12:32.245 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14896. 2018-08-15 14:12:32.246 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14897. 2018-08-15 14:12:32.247 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14898. 2018-08-15 14:12:32.247 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 40(Integer), 10(Integer)
  14899. 2018-08-15 14:12:32.249 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14900. 2018-08-15 14:12:32.426 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14901. 2018-08-15 14:12:32.427 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14902. 2018-08-15 14:12:32.428 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14903. 2018-08-15 14:12:32.430 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14904. 2018-08-15 14:12:32.430 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14905. 2018-08-15 14:12:32.431 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14906. 2018-08-15 14:12:32.436 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14907. 2018-08-15 14:12:32.437 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14908. 2018-08-15 14:12:32.437 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14909. 2018-08-15 14:12:32.438 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14910. 2018-08-15 14:12:32.440 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14911. 2018-08-15 14:12:32.441 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14912. 2018-08-15 14:12:32.445 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14913. 2018-08-15 14:12:32.445 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14914. 2018-08-15 14:12:32.446 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14915. 2018-08-15 14:12:32.447 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14916. 2018-08-15 14:12:32.447 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 50(Integer), 10(Integer)
  14917. 2018-08-15 14:12:32.449 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14918. 2018-08-15 14:12:32.607 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14919. 2018-08-15 14:12:32.608 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14920. 2018-08-15 14:12:32.608 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14921. 2018-08-15 14:12:32.610 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14922. 2018-08-15 14:12:32.611 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14923. 2018-08-15 14:12:32.611 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14924. 2018-08-15 14:12:32.617 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14925. 2018-08-15 14:12:32.618 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14926. 2018-08-15 14:12:32.618 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14927. 2018-08-15 14:12:32.620 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14928. 2018-08-15 14:12:32.621 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14929. 2018-08-15 14:12:32.622 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14930. 2018-08-15 14:12:32.626 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14931. 2018-08-15 14:12:32.626 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14932. 2018-08-15 14:12:32.627 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14933. 2018-08-15 14:12:32.628 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14934. 2018-08-15 14:12:32.628 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 60(Integer), 10(Integer)
  14935. 2018-08-15 14:12:32.629 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 5
  14936. 2018-08-15 14:12:34.342 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14937. 2018-08-15 14:12:34.344 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14938. 2018-08-15 14:12:34.344 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14939. 2018-08-15 14:12:34.347 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14940. 2018-08-15 14:12:34.347 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14941. 2018-08-15 14:12:34.347 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14942. 2018-08-15 14:12:34.354 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14943. 2018-08-15 14:12:34.354 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14944. 2018-08-15 14:12:34.354 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14945. 2018-08-15 14:12:34.356 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14946. 2018-08-15 14:12:34.358 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14947. 2018-08-15 14:12:34.358 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14948. 2018-08-15 14:12:34.362 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14949. 2018-08-15 14:12:34.362 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14950. 2018-08-15 14:12:34.364 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14951. 2018-08-15 14:12:34.364 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14952. 2018-08-15 14:12:34.365 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 50(Integer), 10(Integer)
  14953. 2018-08-15 14:12:34.367 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14954. 2018-08-15 14:12:35.079 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14955. 2018-08-15 14:12:35.081 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14956. 2018-08-15 14:12:35.081 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14957. 2018-08-15 14:12:35.083 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14958. 2018-08-15 14:12:35.084 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14959. 2018-08-15 14:12:35.084 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14960. 2018-08-15 14:12:35.090 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14961. 2018-08-15 14:12:35.091 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14962. 2018-08-15 14:12:35.091 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14963. 2018-08-15 14:12:35.093 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14964. 2018-08-15 14:12:35.095 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14965. 2018-08-15 14:12:35.096 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14966. 2018-08-15 14:12:35.101 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14967. 2018-08-15 14:12:35.102 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14968. 2018-08-15 14:12:35.104 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14969. 2018-08-15 14:12:35.104 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14970. 2018-08-15 14:12:35.105 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 40(Integer), 10(Integer)
  14971. 2018-08-15 14:12:35.107 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14972. 2018-08-15 14:12:35.698 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14973. 2018-08-15 14:12:35.699 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14974. 2018-08-15 14:12:35.700 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14975. 2018-08-15 14:12:35.702 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  14976. 2018-08-15 14:12:35.702 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  14977. 2018-08-15 14:12:35.703 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  14978. 2018-08-15 14:12:35.711 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  14979. 2018-08-15 14:12:35.712 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  14980. 2018-08-15 14:12:35.712 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  14981. 2018-08-15 14:12:35.714 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  14982. 2018-08-15 14:12:35.717 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  14983. 2018-08-15 14:12:35.718 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14984. 2018-08-15 14:12:35.723 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  14985. 2018-08-15 14:12:35.723 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  14986. 2018-08-15 14:12:35.724 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  14987. 2018-08-15 14:12:35.725 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  14988. 2018-08-15 14:12:35.725 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 30(Integer), 10(Integer)
  14989. 2018-08-15 14:12:35.727 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  14990. 2018-08-15 14:12:38.047 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14991. 2018-08-15 14:12:38.047 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14992. 2018-08-15 14:12:38.049 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14993. 2018-08-15 14:12:38.050 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  14994. 2018-08-15 14:12:38.050 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14995. 2018-08-15 14:12:38.050 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  14996. 2018-08-15 14:12:38.051 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14997. 2018-08-15 14:12:38.051 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14998. 2018-08-15 14:12:38.051 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  14999. 2018-08-15 14:12:38.053 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15000. 2018-08-15 14:12:38.053 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15001. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15002. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15003. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15004. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15005. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15006. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15007. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15008. 2018-08-15 14:12:38.054 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15009. 2018-08-15 14:12:38.055 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15010. 2018-08-15 14:12:38.055 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15011. 2018-08-15 14:12:38.058 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15012. 2018-08-15 14:12:38.059 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15013. 2018-08-15 14:12:38.060 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15014. 2018-08-15 14:12:38.060 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15015. 2018-08-15 14:12:38.060 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15016. 2018-08-15 14:12:38.060 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15017. 2018-08-15 14:12:38.061 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15018. 2018-08-15 14:12:38.061 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15019. 2018-08-15 14:12:38.061 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15020. 2018-08-15 14:12:38.062 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15021. 2018-08-15 14:12:38.062 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15022. 2018-08-15 14:12:38.062 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15023. 2018-08-15 14:12:38.063 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15024. 2018-08-15 14:12:38.063 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15025. 2018-08-15 14:12:38.063 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15026. 2018-08-15 14:12:38.065 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15027. 2018-08-15 14:12:38.066 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15028. 2018-08-15 14:12:38.068 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15029. 2018-08-15 14:12:38.069 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15030. 2018-08-15 14:12:38.069 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15031. 2018-08-15 14:12:38.070 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15032. 2018-08-15 14:12:38.070 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15033. 2018-08-15 14:12:38.070 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15034. 2018-08-15 14:12:38.070 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15035. 2018-08-15 14:12:38.070 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15036. 2018-08-15 14:12:38.070 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15037. 2018-08-15 14:12:38.071 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15038. 2018-08-15 14:12:38.071 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15039. 2018-08-15 14:12:38.072 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15040. 2018-08-15 14:12:38.072 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15041. 2018-08-15 14:12:38.072 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15042. 2018-08-15 14:12:38.072 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15043. 2018-08-15 14:12:38.073 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  15044. 2018-08-15 14:12:38.073 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  15045. 2018-08-15 14:12:38.073 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15046. 2018-08-15 14:12:38.074 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15047. 2018-08-15 14:12:38.075 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15048. 2018-08-15 14:12:38.075 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15049. 2018-08-15 14:12:38.075 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15050. 2018-08-15 14:12:38.075 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15051. 2018-08-15 14:12:38.076 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15052. 2018-08-15 14:12:38.076 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  15053. 2018-08-15 14:12:38.078 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  15054. 2018-08-15 14:12:38.078 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  15055. 2018-08-15 14:12:38.080 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and type = ? order by sortNo,id
  15056. 2018-08-15 14:12:38.080 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 10(Integer)
  15057. 2018-08-15 14:12:38.080 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 16
  15058. 2018-08-15 14:12:38.080 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  15059. 2018-08-15 14:12:38.081 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  15060. 2018-08-15 14:12:38.083 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 66
  15061. 2018-08-15 14:12:38.083 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  15062. 2018-08-15 14:12:38.084 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15063. 2018-08-15 14:12:38.085 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15064. 2018-08-15 14:12:38.090 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15065. 2018-08-15 14:12:38.147 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15066. 2018-08-15 14:12:38.147 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15067. 2018-08-15 14:12:38.147 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15068. 2018-08-15 14:12:38.147 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15069. 2018-08-15 14:12:38.149 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15070. 2018-08-15 14:12:38.149 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15071. 2018-08-15 14:12:38.149 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15072. 2018-08-15 14:12:38.149 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15073. 2018-08-15 14:12:38.149 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15074. 2018-08-15 14:12:38.150 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15075. 2018-08-15 14:12:38.150 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15076. 2018-08-15 14:12:38.151 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15077. 2018-08-15 14:12:38.152 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15078. 2018-08-15 14:12:38.152 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15079. 2018-08-15 14:12:38.152 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15080. 2018-08-15 14:12:38.153 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15081. 2018-08-15 14:12:38.153 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15082. 2018-08-15 14:12:38.153 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15083. 2018-08-15 14:12:38.153 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15084. 2018-08-15 14:12:38.153 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15085. 2018-08-15 14:12:38.153 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15086. 2018-08-15 14:12:38.154 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15087. 2018-08-15 14:12:38.154 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15088. 2018-08-15 14:12:38.154 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15089. 2018-08-15 14:12:38.159 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15090. 2018-08-15 14:12:38.160 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15091. 2018-08-15 14:12:38.160 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15092. 2018-08-15 14:12:38.161 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15093. 2018-08-15 14:12:38.161 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15094. 2018-08-15 14:12:38.161 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15095. 2018-08-15 14:12:38.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15096. 2018-08-15 14:12:38.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15097. 2018-08-15 14:12:38.162 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15098. 2018-08-15 14:12:38.162 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15099. 2018-08-15 14:12:38.162 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15100. 2018-08-15 14:12:38.163 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15101. 2018-08-15 14:12:38.163 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15102. 2018-08-15 14:12:38.163 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15103. 2018-08-15 14:12:38.164 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15104. 2018-08-15 14:12:38.164 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15105. 2018-08-15 14:12:38.165 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15106. 2018-08-15 14:12:38.165 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15107. 2018-08-15 14:12:38.165 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15108. 2018-08-15 14:12:38.166 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15109. 2018-08-15 14:12:38.166 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15110. 2018-08-15 14:12:38.167 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15111. 2018-08-15 14:12:38.167 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15112. 2018-08-15 14:12:38.168 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  15113. 2018-08-15 14:12:38.168 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_service_area a left join t_sys_organ b on a.organ_id=b.id
  15114. 2018-08-15 14:12:38.168 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15115. 2018-08-15 14:12:38.169 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  15116. 2018-08-15 14:12:38.169 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| ==> Parameters:
  15117. 2018-08-15 14:12:38.169 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  15118. 2018-08-15 14:12:38.170 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  15119. 2018-08-15 14:12:38.170 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  15120. 2018-08-15 14:12:38.170 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  15121. 2018-08-15 14:12:38.171 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  15122. 2018-08-15 14:12:38.171 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllSA [159] -| <== Total: 7
  15123. 2018-08-15 14:12:38.172 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  15124. 2018-08-15 14:12:38.173 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  15125. 2018-08-15 14:12:38.179 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15126. 2018-08-15 14:12:38.180 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15127. 2018-08-15 14:12:38.181 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15128. 2018-08-15 14:12:38.183 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15129. 2018-08-15 14:12:38.183 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15130. 2018-08-15 14:12:38.183 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15131. 2018-08-15 14:12:38.190 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15132. 2018-08-15 14:12:38.191 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15133. 2018-08-15 14:12:38.191 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15134. 2018-08-15 14:12:38.192 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15135. 2018-08-15 14:12:38.195 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15136. 2018-08-15 14:12:38.196 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15137. 2018-08-15 14:12:38.201 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  15138. 2018-08-15 14:12:38.201 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  15139. 2018-08-15 14:12:38.231 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 596
  15140. 2018-08-15 14:12:38.257 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15141. 2018-08-15 14:12:38.259 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15142. 2018-08-15 14:12:38.259 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15143. 2018-08-15 14:12:38.261 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15144. 2018-08-15 14:12:38.261 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15145. 2018-08-15 14:12:38.262 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15146. 2018-08-15 14:12:38.268 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15147. 2018-08-15 14:12:38.268 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15148. 2018-08-15 14:12:38.269 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15149. 2018-08-15 14:12:38.270 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15150. 2018-08-15 14:12:38.272 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15151. 2018-08-15 14:12:38.273 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15152. 2018-08-15 14:12:38.277 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  15153. 2018-08-15 14:12:38.278 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  15154. 2018-08-15 14:12:38.279 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 18
  15155. 2018-08-15 14:12:38.299 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15156. 2018-08-15 14:12:38.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15157. 2018-08-15 14:12:38.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15158. 2018-08-15 14:12:38.308 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15159. 2018-08-15 14:12:38.309 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15160. 2018-08-15 14:12:38.312 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15161. 2018-08-15 14:12:38.318 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15162. 2018-08-15 14:12:38.319 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15163. 2018-08-15 14:12:38.319 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15164. 2018-08-15 14:12:38.320 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15165. 2018-08-15 14:12:38.322 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15166. 2018-08-15 14:12:38.323 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15167. 2018-08-15 14:12:38.327 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  15168. 2018-08-15 14:12:38.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  15169. 2018-08-15 14:12:38.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  15170. 2018-08-15 14:12:38.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  15171. 2018-08-15 14:12:38.330 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 0(Integer), 10(Integer)
  15172. 2018-08-15 14:12:38.332 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  15173. 2018-08-15 14:12:40.957 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15174. 2018-08-15 14:12:40.959 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15175. 2018-08-15 14:12:40.959 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15176. 2018-08-15 14:12:40.961 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15177. 2018-08-15 14:12:40.962 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15178. 2018-08-15 14:12:40.962 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15179. 2018-08-15 14:12:40.968 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15180. 2018-08-15 14:12:40.969 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15181. 2018-08-15 14:12:40.969 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15182. 2018-08-15 14:12:40.971 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15183. 2018-08-15 14:12:40.973 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15184. 2018-08-15 14:12:40.974 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15185. 2018-08-15 14:12:40.978 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  15186. 2018-08-15 14:12:40.978 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  15187. 2018-08-15 14:12:40.979 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  15188. 2018-08-15 14:12:40.979 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  15189. 2018-08-15 14:12:40.980 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 20(Integer), 10(Integer)
  15190. 2018-08-15 14:12:40.981 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  15191. 2018-08-15 14:12:43.345 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15192. 2018-08-15 14:12:43.347 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15193. 2018-08-15 14:12:43.347 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15194. 2018-08-15 14:12:43.349 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15195. 2018-08-15 14:12:43.350 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15196. 2018-08-15 14:12:43.350 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15197. 2018-08-15 14:12:43.356 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15198. 2018-08-15 14:12:43.356 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15199. 2018-08-15 14:12:43.357 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15200. 2018-08-15 14:12:43.358 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15201. 2018-08-15 14:12:43.360 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15202. 2018-08-15 14:12:43.361 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15203. 2018-08-15 14:12:43.366 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  15204. 2018-08-15 14:12:43.366 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  15205. 2018-08-15 14:12:43.368 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  15206. 2018-08-15 14:12:43.368 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  15207. 2018-08-15 14:12:43.369 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 10(Integer), 10(Integer)
  15208. 2018-08-15 14:12:43.370 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  15209. 2018-08-15 14:12:44.490 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15210. 2018-08-15 14:12:44.492 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15211. 2018-08-15 14:12:44.493 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15212. 2018-08-15 14:12:44.495 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15213. 2018-08-15 14:12:44.495 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15214. 2018-08-15 14:12:44.496 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15215. 2018-08-15 14:12:44.502 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15216. 2018-08-15 14:12:44.503 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15217. 2018-08-15 14:12:44.503 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15218. 2018-08-15 14:12:44.505 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15219. 2018-08-15 14:12:44.508 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15220. 2018-08-15 14:12:44.509 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15221. 2018-08-15 14:12:44.514 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  15222. 2018-08-15 14:12:44.514 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  15223. 2018-08-15 14:12:44.515 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  15224. 2018-08-15 14:12:44.516 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  15225. 2018-08-15 14:12:44.516 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 40(Integer), 10(Integer)
  15226. 2018-08-15 14:12:44.518 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  15227. 2018-08-15 14:12:54.200 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15228. 2018-08-15 14:12:54.200 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15229. 2018-08-15 14:12:54.202 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15230. 2018-08-15 14:12:54.202 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15231. 2018-08-15 14:12:54.202 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15232. 2018-08-15 14:12:54.203 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15233. 2018-08-15 14:12:54.206 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15234. 2018-08-15 14:12:54.207 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15235. 2018-08-15 14:12:54.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15236. 2018-08-15 14:12:54.207 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15237. 2018-08-15 14:12:54.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15238. 2018-08-15 14:12:54.207 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15239. 2018-08-15 14:12:54.219 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15240. 2018-08-15 14:12:54.219 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15241. 2018-08-15 14:12:54.220 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15242. 2018-08-15 14:12:54.222 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15243. 2018-08-15 14:12:54.222 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15244. 2018-08-15 14:12:54.223 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15245. 2018-08-15 14:12:54.224 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15246. 2018-08-15 14:12:54.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15247. 2018-08-15 14:12:54.227 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15248. 2018-08-15 14:12:54.227 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15249. 2018-08-15 14:12:54.227 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15250. 2018-08-15 14:12:54.227 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15251. 2018-08-15 14:12:54.231 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15252. 2018-08-15 14:12:54.231 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15253. 2018-08-15 14:12:54.232 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15254. 2018-08-15 14:12:54.232 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15255. 2018-08-15 14:12:54.233 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15256. 2018-08-15 14:12:54.233 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15257. 2018-08-15 14:12:55.635 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15258. 2018-08-15 14:12:55.637 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15259. 2018-08-15 14:12:55.639 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15260. 2018-08-15 14:12:55.639 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15261. 2018-08-15 14:12:55.639 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15262. 2018-08-15 14:12:55.639 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15263. 2018-08-15 14:12:55.642 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15264. 2018-08-15 14:12:55.642 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15265. 2018-08-15 14:12:55.643 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15266. 2018-08-15 14:12:55.643 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15267. 2018-08-15 14:12:55.643 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15268. 2018-08-15 14:12:55.643 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15269. 2018-08-15 14:12:55.650 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15270. 2018-08-15 14:12:55.651 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15271. 2018-08-15 14:12:55.651 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15272. 2018-08-15 14:12:55.651 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15273. 2018-08-15 14:12:55.651 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15274. 2018-08-15 14:12:55.652 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15275. 2018-08-15 14:12:55.653 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15276. 2018-08-15 14:12:55.653 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15277. 2018-08-15 14:12:55.655 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15278. 2018-08-15 14:12:55.655 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15279. 2018-08-15 14:12:55.656 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15280. 2018-08-15 14:12:55.656 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15281. 2018-08-15 14:12:55.659 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15282. 2018-08-15 14:12:55.659 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15283. 2018-08-15 14:12:55.660 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15284. 2018-08-15 14:12:55.660 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15285. 2018-08-15 14:12:55.661 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15286. 2018-08-15 14:12:55.661 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15287. 2018-08-15 14:12:56.124 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15288. 2018-08-15 14:12:56.126 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15289. 2018-08-15 14:12:56.126 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15290. 2018-08-15 14:12:56.126 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15291. 2018-08-15 14:12:56.128 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15292. 2018-08-15 14:12:56.128 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15293. 2018-08-15 14:12:56.129 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15294. 2018-08-15 14:12:56.129 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15295. 2018-08-15 14:12:56.129 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15296. 2018-08-15 14:12:56.130 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15297. 2018-08-15 14:12:56.131 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15298. 2018-08-15 14:12:56.131 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15299. 2018-08-15 14:12:56.136 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15300. 2018-08-15 14:12:56.137 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15301. 2018-08-15 14:12:56.137 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15302. 2018-08-15 14:12:56.137 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15303. 2018-08-15 14:12:56.137 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15304. 2018-08-15 14:12:56.138 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15305. 2018-08-15 14:12:56.139 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15306. 2018-08-15 14:12:56.139 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15307. 2018-08-15 14:12:56.141 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15308. 2018-08-15 14:12:56.141 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15309. 2018-08-15 14:12:56.141 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15310. 2018-08-15 14:12:56.142 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15311. 2018-08-15 14:12:56.145 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15312. 2018-08-15 14:12:56.145 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15313. 2018-08-15 14:12:56.146 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15314. 2018-08-15 14:12:56.146 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15315. 2018-08-15 14:12:56.147 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15316. 2018-08-15 14:12:56.147 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15317. 2018-08-15 14:12:56.310 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15318. 2018-08-15 14:12:56.311 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15319. 2018-08-15 14:12:56.312 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15320. 2018-08-15 14:12:56.312 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15321. 2018-08-15 14:12:56.313 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15322. 2018-08-15 14:12:56.313 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15323. 2018-08-15 14:12:56.314 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15324. 2018-08-15 14:12:56.315 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15325. 2018-08-15 14:12:56.315 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15326. 2018-08-15 14:12:56.315 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15327. 2018-08-15 14:12:56.316 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15328. 2018-08-15 14:12:56.316 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15329. 2018-08-15 14:12:56.321 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15330. 2018-08-15 14:12:56.322 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15331. 2018-08-15 14:12:56.322 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15332. 2018-08-15 14:12:56.322 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15333. 2018-08-15 14:12:56.322 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15334. 2018-08-15 14:12:56.323 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15335. 2018-08-15 14:12:56.323 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15336. 2018-08-15 14:12:56.324 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15337. 2018-08-15 14:12:56.325 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15338. 2018-08-15 14:12:56.325 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15339. 2018-08-15 14:12:56.326 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15340. 2018-08-15 14:12:56.326 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15341. 2018-08-15 14:12:56.329 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15342. 2018-08-15 14:12:56.329 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15343. 2018-08-15 14:12:56.330 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15344. 2018-08-15 14:12:56.330 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15345. 2018-08-15 14:12:56.331 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15346. 2018-08-15 14:12:56.331 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15347. 2018-08-15 14:12:56.485 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15348. 2018-08-15 14:12:56.487 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15349. 2018-08-15 14:12:56.488 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15350. 2018-08-15 14:12:56.488 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15351. 2018-08-15 14:12:56.489 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15352. 2018-08-15 14:12:56.489 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15353. 2018-08-15 14:12:56.490 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15354. 2018-08-15 14:12:56.490 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15355. 2018-08-15 14:12:56.491 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15356. 2018-08-15 14:12:56.491 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15357. 2018-08-15 14:12:56.491 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15358. 2018-08-15 14:12:56.492 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15359. 2018-08-15 14:12:56.497 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15360. 2018-08-15 14:12:56.497 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15361. 2018-08-15 14:12:56.497 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15362. 2018-08-15 14:12:56.498 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15363. 2018-08-15 14:12:56.498 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15364. 2018-08-15 14:12:56.498 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15365. 2018-08-15 14:12:56.499 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15366. 2018-08-15 14:12:56.500 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15367. 2018-08-15 14:12:56.500 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15368. 2018-08-15 14:12:56.501 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15369. 2018-08-15 14:12:56.502 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15370. 2018-08-15 14:12:56.502 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15371. 2018-08-15 14:12:56.506 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15372. 2018-08-15 14:12:56.506 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15373. 2018-08-15 14:12:56.506 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15374. 2018-08-15 14:12:56.506 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15375. 2018-08-15 14:12:56.507 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15376. 2018-08-15 14:12:56.507 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15377. 2018-08-15 14:12:56.663 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15378. 2018-08-15 14:12:56.664 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15379. 2018-08-15 14:12:56.664 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15380. 2018-08-15 14:12:56.665 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15381. 2018-08-15 14:12:56.666 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15382. 2018-08-15 14:12:56.666 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15383. 2018-08-15 14:12:56.667 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15384. 2018-08-15 14:12:56.667 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15385. 2018-08-15 14:12:56.667 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15386. 2018-08-15 14:12:56.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15387. 2018-08-15 14:12:56.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15388. 2018-08-15 14:12:56.669 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15389. 2018-08-15 14:12:56.673 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15390. 2018-08-15 14:12:56.674 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15391. 2018-08-15 14:12:56.674 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15392. 2018-08-15 14:12:56.674 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15393. 2018-08-15 14:12:56.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15394. 2018-08-15 14:12:56.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15395. 2018-08-15 14:12:56.678 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15396. 2018-08-15 14:12:56.678 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15397. 2018-08-15 14:12:56.680 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15398. 2018-08-15 14:12:56.680 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15399. 2018-08-15 14:12:56.681 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15400. 2018-08-15 14:12:56.681 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15401. 2018-08-15 14:12:56.686 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15402. 2018-08-15 14:12:56.686 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15403. 2018-08-15 14:12:56.687 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15404. 2018-08-15 14:12:56.688 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15405. 2018-08-15 14:12:56.690 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15406. 2018-08-15 14:12:56.691 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15407. 2018-08-15 14:12:56.838 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15408. 2018-08-15 14:12:56.840 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15409. 2018-08-15 14:12:56.840 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15410. 2018-08-15 14:12:56.841 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15411. 2018-08-15 14:12:56.842 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15412. 2018-08-15 14:12:56.842 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15413. 2018-08-15 14:12:56.843 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15414. 2018-08-15 14:12:56.843 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15415. 2018-08-15 14:12:56.843 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15416. 2018-08-15 14:12:56.844 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15417. 2018-08-15 14:12:56.845 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15418. 2018-08-15 14:12:56.845 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15419. 2018-08-15 14:12:56.849 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15420. 2018-08-15 14:12:56.850 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15421. 2018-08-15 14:12:56.850 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15422. 2018-08-15 14:12:56.851 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15423. 2018-08-15 14:12:56.851 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15424. 2018-08-15 14:12:56.851 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15425. 2018-08-15 14:12:56.851 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15426. 2018-08-15 14:12:56.853 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15427. 2018-08-15 14:12:56.854 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15428. 2018-08-15 14:12:56.854 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15429. 2018-08-15 14:12:56.855 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15430. 2018-08-15 14:12:56.855 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15431. 2018-08-15 14:12:56.858 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15432. 2018-08-15 14:12:56.858 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15433. 2018-08-15 14:12:56.859 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15434. 2018-08-15 14:12:56.859 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: rule_type(String)
  15435. 2018-08-15 14:12:56.859 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15436. 2018-08-15 14:12:56.860 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15437. 2018-08-15 14:12:57.572 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15438. 2018-08-15 14:12:57.574 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15439. 2018-08-15 14:12:57.574 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15440. 2018-08-15 14:12:57.577 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15441. 2018-08-15 14:12:57.577 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15442. 2018-08-15 14:12:57.578 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15443. 2018-08-15 14:12:57.585 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15444. 2018-08-15 14:12:57.586 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15445. 2018-08-15 14:12:57.588 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15446. 2018-08-15 14:12:57.590 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15447. 2018-08-15 14:12:57.592 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15448. 2018-08-15 14:12:57.593 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15449. 2018-08-15 14:12:57.597 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  15450. 2018-08-15 14:12:57.597 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  15451. 2018-08-15 14:12:57.598 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  15452. 2018-08-15 14:12:57.599 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  15453. 2018-08-15 14:12:57.599 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 0(Integer), 10(Integer)
  15454. 2018-08-15 14:12:57.601 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  15455. 2018-08-15 14:13:05.560 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15456. 2018-08-15 14:13:05.560 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15457. 2018-08-15 14:13:05.562 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15458. 2018-08-15 14:13:05.562 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15459. 2018-08-15 14:13:05.562 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15460. 2018-08-15 14:13:05.562 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15461. 2018-08-15 14:13:05.564 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15462. 2018-08-15 14:13:05.565 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15463. 2018-08-15 14:13:05.565 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15464. 2018-08-15 14:13:05.565 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15465. 2018-08-15 14:13:05.565 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15466. 2018-08-15 14:13:05.566 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15467. 2018-08-15 14:13:05.573 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15468. 2018-08-15 14:13:05.573 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15469. 2018-08-15 14:13:05.574 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15470. 2018-08-15 14:13:05.574 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15471. 2018-08-15 14:13:05.574 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15472. 2018-08-15 14:13:05.575 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15473. 2018-08-15 14:13:05.575 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15474. 2018-08-15 14:13:05.576 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15475. 2018-08-15 14:13:05.577 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15476. 2018-08-15 14:13:05.578 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15477. 2018-08-15 14:13:05.578 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15478. 2018-08-15 14:13:05.579 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15479. 2018-08-15 14:13:05.582 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15480. 2018-08-15 14:13:05.582 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15481. 2018-08-15 14:13:05.582 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 任务状态(String)
  15482. 2018-08-15 14:13:05.582 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 任务状态(String)
  15483. 2018-08-15 14:13:05.584 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15484. 2018-08-15 14:13:05.584 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15485. 2018-08-15 14:13:05.584 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15486. 2018-08-15 14:13:05.585 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15487. 2018-08-15 14:13:05.585 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 任务状态(String), 0(Integer), 10(Integer)
  15488. 2018-08-15 14:13:05.585 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 任务状态(String), 0(Integer), 10(Integer)
  15489. 2018-08-15 14:13:05.587 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15490. 2018-08-15 14:13:05.587 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15491. 2018-08-15 14:13:13.475 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15492. 2018-08-15 14:13:13.475 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15493. 2018-08-15 14:13:13.477 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15494. 2018-08-15 14:13:13.477 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15495. 2018-08-15 14:13:13.477 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15496. 2018-08-15 14:13:13.477 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15497. 2018-08-15 14:13:13.480 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15498. 2018-08-15 14:13:13.480 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15499. 2018-08-15 14:13:13.480 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15500. 2018-08-15 14:13:13.480 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15501. 2018-08-15 14:13:13.480 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15502. 2018-08-15 14:13:13.481 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15503. 2018-08-15 14:13:13.488 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15504. 2018-08-15 14:13:13.489 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15505. 2018-08-15 14:13:13.489 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15506. 2018-08-15 14:13:13.490 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15507. 2018-08-15 14:13:13.490 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15508. 2018-08-15 14:13:13.490 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15509. 2018-08-15 14:13:13.491 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15510. 2018-08-15 14:13:13.492 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15511. 2018-08-15 14:13:13.493 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15512. 2018-08-15 14:13:13.494 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15513. 2018-08-15 14:13:13.494 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15514. 2018-08-15 14:13:13.494 |-INFO [http-nio-8089-exec-12] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15515. 2018-08-15 14:13:13.498 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15516. 2018-08-15 14:13:13.498 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15517. 2018-08-15 14:13:13.499 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 考核(String)
  15518. 2018-08-15 14:13:13.499 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 考核(String)
  15519. 2018-08-15 14:13:13.500 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15520. 2018-08-15 14:13:13.500 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15521. 2018-08-15 14:13:13.501 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15522. 2018-08-15 14:13:13.501 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15523. 2018-08-15 14:13:13.501 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 考核(String), 0(Integer), 10(Integer)
  15524. 2018-08-15 14:13:13.501 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 考核(String), 0(Integer), 10(Integer)
  15525. 2018-08-15 14:13:13.503 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15526. 2018-08-15 14:13:13.503 |-DEBUG [http-nio-8089-exec-12] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15527. 2018-08-15 14:13:37.644 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15528. 2018-08-15 14:13:37.646 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15529. 2018-08-15 14:13:37.646 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15530. 2018-08-15 14:13:37.648 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15531. 2018-08-15 14:13:37.648 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15532. 2018-08-15 14:13:37.649 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15533. 2018-08-15 14:13:37.649 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15534. 2018-08-15 14:13:37.649 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15535. 2018-08-15 14:13:37.649 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15536. 2018-08-15 14:13:37.652 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15537. 2018-08-15 14:13:37.653 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15538. 2018-08-15 14:13:37.653 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15539. 2018-08-15 14:13:37.655 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15540. 2018-08-15 14:13:37.656 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15541. 2018-08-15 14:13:37.656 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15542. 2018-08-15 14:13:37.658 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15543. 2018-08-15 14:13:37.660 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15544. 2018-08-15 14:13:37.660 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15545. 2018-08-15 14:13:37.660 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15546. 2018-08-15 14:13:37.660 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15547. 2018-08-15 14:13:37.661 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15548. 2018-08-15 14:13:37.662 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15549. 2018-08-15 14:13:37.663 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15550. 2018-08-15 14:13:37.664 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15551. 2018-08-15 14:13:37.664 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  15552. 2018-08-15 14:13:37.665 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  15553. 2018-08-15 14:13:37.667 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  15554. 2018-08-15 14:13:37.669 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  15555. 2018-08-15 14:13:37.669 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  15556. 2018-08-15 14:13:37.670 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  15557. 2018-08-15 14:13:37.671 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  15558. 2018-08-15 14:13:37.671 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  15559. 2018-08-15 14:13:37.673 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  15560. 2018-08-15 14:14:00.124 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15561. 2018-08-15 14:14:00.126 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15562. 2018-08-15 14:14:00.126 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15563. 2018-08-15 14:14:00.128 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15564. 2018-08-15 14:14:00.129 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15565. 2018-08-15 14:14:00.129 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15566. 2018-08-15 14:14:00.135 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15567. 2018-08-15 14:14:00.135 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15568. 2018-08-15 14:14:00.136 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15569. 2018-08-15 14:14:00.137 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15570. 2018-08-15 14:14:00.139 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15571. 2018-08-15 14:14:00.140 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15572. 2018-08-15 14:14:00.141 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  15573. 2018-08-15 14:14:00.141 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  15574. 2018-08-15 14:14:00.149 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  15575. 2018-08-15 14:14:04.920 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15576. 2018-08-15 14:14:04.923 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15577. 2018-08-15 14:14:04.923 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15578. 2018-08-15 14:14:04.925 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15579. 2018-08-15 14:14:04.926 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15580. 2018-08-15 14:14:04.926 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15581. 2018-08-15 14:14:04.932 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15582. 2018-08-15 14:14:04.932 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15583. 2018-08-15 14:14:04.932 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15584. 2018-08-15 14:14:04.934 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15585. 2018-08-15 14:14:04.936 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15586. 2018-08-15 14:14:04.937 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15587. 2018-08-15 14:14:04.941 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0
  15588. 2018-08-15 14:14:04.941 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| ==> Parameters:
  15589. 2018-08-15 14:14:04.943 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll_COUNT [159] -| <== Total: 1
  15590. 2018-08-15 14:14:04.944 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 limit ?,?
  15591. 2018-08-15 14:14:04.944 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 0(Integer), 10(Integer)
  15592. 2018-08-15 14:14:04.946 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 10
  15593. 2018-08-15 14:14:16.575 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15594. 2018-08-15 14:14:16.575 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15595. 2018-08-15 14:14:16.577 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15596. 2018-08-15 14:14:16.577 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15597. 2018-08-15 14:14:16.578 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15598. 2018-08-15 14:14:16.578 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15599. 2018-08-15 14:14:16.579 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15600. 2018-08-15 14:14:16.580 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15601. 2018-08-15 14:14:16.580 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15602. 2018-08-15 14:14:16.580 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15603. 2018-08-15 14:14:16.580 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15604. 2018-08-15 14:14:16.581 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15605. 2018-08-15 14:14:16.586 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15606. 2018-08-15 14:14:16.586 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15607. 2018-08-15 14:14:16.587 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15608. 2018-08-15 14:14:16.587 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15609. 2018-08-15 14:14:16.588 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15610. 2018-08-15 14:14:16.588 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15611. 2018-08-15 14:14:16.588 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15612. 2018-08-15 14:14:16.589 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15613. 2018-08-15 14:14:16.590 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15614. 2018-08-15 14:14:16.591 |-INFO [http-nio-8089-exec-17] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15615. 2018-08-15 14:14:16.591 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15616. 2018-08-15 14:14:16.592 |-INFO [http-nio-8089-exec-18] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15617. 2018-08-15 14:14:16.595 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15618. 2018-08-15 14:14:16.596 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 考核(String)
  15619. 2018-08-15 14:14:16.596 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15620. 2018-08-15 14:14:16.596 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 考核(String)
  15621. 2018-08-15 14:14:16.597 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15622. 2018-08-15 14:14:16.598 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15623. 2018-08-15 14:14:16.598 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15624. 2018-08-15 14:14:16.598 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15625. 2018-08-15 14:14:16.598 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 考核(String), 0(Integer), 10(Integer)
  15626. 2018-08-15 14:14:16.599 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 考核(String), 0(Integer), 10(Integer)
  15627. 2018-08-15 14:14:16.601 |-DEBUG [http-nio-8089-exec-17] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15628. 2018-08-15 14:14:16.601 |-DEBUG [http-nio-8089-exec-18] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15629. 2018-08-15 14:15:26.929 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15630. 2018-08-15 14:15:26.932 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15631. 2018-08-15 14:15:26.932 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15632. 2018-08-15 14:15:26.934 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15633. 2018-08-15 14:15:26.936 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15634. 2018-08-15 14:15:26.936 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15635. 2018-08-15 14:15:26.942 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15636. 2018-08-15 14:15:26.943 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15637. 2018-08-15 14:15:26.943 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15638. 2018-08-15 14:15:26.944 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15639. 2018-08-15 14:15:26.946 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15640. 2018-08-15 14:15:26.947 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15641. 2018-08-15 14:15:26.951 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.update [159] -| ==> Preparing: UPDATE sys_code SET code_value = ?, code_name = ?, code_flag = ?, flag_name = ?, valid = ?, remark = ?, sort_no = ? WHERE id = ?
  15642. 2018-08-15 14:15:26.951 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.update [159] -| ==> Parameters: 6(Integer), 清排障视屏稽查(String), rule_type(String), 考核办法类型(String), 1(Integer), (String), 1(Integer), 119(Long)
  15643. 2018-08-15 14:15:26.962 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.update [159] -| <== Updates: 1
  15644. 2018-08-15 14:15:26.963 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  15645. 2018-08-15 14:15:26.963 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  15646. 2018-08-15 14:15:26.967 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 65
  15647. 2018-08-15 14:15:26.968 |-INFO [http-nio-8089-exec-13] com.xintong.visualinspection.util.CacheUtil [50] -| 加载CODE信息成功,数据数:22
  15648. 2018-08-15 14:15:26.982 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15649. 2018-08-15 14:15:26.982 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15650. 2018-08-15 14:15:26.984 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15651. 2018-08-15 14:15:26.984 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15652. 2018-08-15 14:15:26.984 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15653. 2018-08-15 14:15:26.985 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15654. 2018-08-15 14:15:26.986 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15655. 2018-08-15 14:15:26.987 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15656. 2018-08-15 14:15:26.987 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15657. 2018-08-15 14:15:26.987 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15658. 2018-08-15 14:15:26.988 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15659. 2018-08-15 14:15:26.988 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15660. 2018-08-15 14:15:26.993 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15661. 2018-08-15 14:15:26.994 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15662. 2018-08-15 14:15:26.994 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15663. 2018-08-15 14:15:26.994 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15664. 2018-08-15 14:15:26.995 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15665. 2018-08-15 14:15:26.995 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15666. 2018-08-15 14:15:26.995 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15667. 2018-08-15 14:15:26.996 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15668. 2018-08-15 14:15:26.997 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15669. 2018-08-15 14:15:26.998 |-INFO [http-nio-8089-exec-14] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15670. 2018-08-15 14:15:26.998 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15671. 2018-08-15 14:15:26.998 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15672. 2018-08-15 14:15:27.002 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15673. 2018-08-15 14:15:27.002 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_code WHERE valid != 0 AND flag_name LIKE CONCAT('%', ?, '%')
  15674. 2018-08-15 14:15:27.002 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 考核(String)
  15675. 2018-08-15 14:15:27.003 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| ==> Parameters: 考核(String)
  15676. 2018-08-15 14:15:27.003 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15677. 2018-08-15 14:15:27.004 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName_COUNT [159] -| <== Total: 1
  15678. 2018-08-15 14:15:27.004 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15679. 2018-08-15 14:15:27.005 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and flag_name like CONCAT('%',?,'%') limit ?,?
  15680. 2018-08-15 14:15:27.005 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 考核(String), 0(Integer), 10(Integer)
  15681. 2018-08-15 14:15:27.006 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| ==> Parameters: 考核(String), 0(Integer), 10(Integer)
  15682. 2018-08-15 14:15:27.008 |-DEBUG [http-nio-8089-exec-14] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15683. 2018-08-15 14:15:27.008 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.ConstantDao.getByName [159] -| <== Total: 10
  15684. 2018-08-15 14:15:31.189 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15685. 2018-08-15 14:15:31.189 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15686. 2018-08-15 14:15:31.191 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15687. 2018-08-15 14:15:31.191 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15688. 2018-08-15 14:15:31.191 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15689. 2018-08-15 14:15:31.191 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15690. 2018-08-15 14:15:31.194 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15691. 2018-08-15 14:15:31.194 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15692. 2018-08-15 14:15:31.194 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15693. 2018-08-15 14:15:31.194 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15694. 2018-08-15 14:15:31.194 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15695. 2018-08-15 14:15:31.195 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15696. 2018-08-15 14:15:31.202 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15697. 2018-08-15 14:15:31.202 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15698. 2018-08-15 14:15:31.202 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15699. 2018-08-15 14:15:31.202 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15700. 2018-08-15 14:15:31.203 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15701. 2018-08-15 14:15:31.203 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15702. 2018-08-15 14:15:31.204 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15703. 2018-08-15 14:15:31.205 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15704. 2018-08-15 14:15:31.208 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15705. 2018-08-15 14:15:31.208 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15706. 2018-08-15 14:15:31.208 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15707. 2018-08-15 14:15:31.209 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15708. 2018-08-15 14:15:31.212 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  15709. 2018-08-15 14:15:31.212 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  15710. 2018-08-15 14:15:31.213 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  15711. 2018-08-15 14:15:31.214 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  15712. 2018-08-15 14:15:31.215 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 43
  15713. 2018-08-15 14:15:31.215 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  15714. 2018-08-15 14:15:31.216 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  15715. 2018-08-15 14:15:31.216 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  15716. 2018-08-15 14:15:31.218 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  15717. 2018-08-15 14:15:34.092 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15718. 2018-08-15 14:15:34.094 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15719. 2018-08-15 14:15:34.094 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15720. 2018-08-15 14:15:34.096 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15721. 2018-08-15 14:15:34.097 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15722. 2018-08-15 14:15:34.097 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15723. 2018-08-15 14:15:34.103 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15724. 2018-08-15 14:15:34.104 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15725. 2018-08-15 14:15:34.104 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15726. 2018-08-15 14:15:34.106 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15727. 2018-08-15 14:15:34.108 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15728. 2018-08-15 14:15:34.109 |-INFO [http-nio-8089-exec-13] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15729. 2018-08-15 14:15:34.110 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByFlag [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0 and code_flag=?
  15730. 2018-08-15 14:15:34.110 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByFlag [159] -| ==> Parameters: rule_type(String)
  15731. 2018-08-15 14:15:34.112 |-DEBUG [http-nio-8089-exec-13] com.xintong.visualinspection.dao.master.ConstantDao.getByFlag [159] -| <== Total: 9
  15732. 2018-08-15 14:15:40.576 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15733. 2018-08-15 14:15:40.577 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15734. 2018-08-15 14:15:40.578 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15735. 2018-08-15 14:15:40.580 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15736. 2018-08-15 14:15:40.581 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15737. 2018-08-15 14:15:40.581 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15738. 2018-08-15 14:15:40.587 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15739. 2018-08-15 14:15:40.588 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15740. 2018-08-15 14:15:40.588 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15741. 2018-08-15 14:15:40.590 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15742. 2018-08-15 14:15:40.593 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15743. 2018-08-15 14:15:40.593 |-INFO [http-nio-8089-exec-21] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15744. 2018-08-15 14:15:40.597 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.updateRuleType [159] -| ==> Preparing: UPDATE check_rule SET rule_type = null WHERE rule_type = ?
  15745. 2018-08-15 14:15:40.597 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.updateRuleType [159] -| ==> Parameters: 6(String)
  15746. 2018-08-15 14:15:40.607 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.updateRuleType [159] -| <== Updates: 1
  15747. 2018-08-15 14:15:40.610 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.update [159] -| ==> Preparing: UPDATE check_rule SET name = ?, rule_type = ? WHERE id = ?
  15748. 2018-08-15 14:15:40.610 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.update [159] -| ==> Parameters: 清排障视屏考核办法(String), 6(String), 25(Long)
  15749. 2018-08-15 14:15:40.613 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.master.CheckRuleDao.update [159] -| <== Updates: 1
  15750. 2018-08-15 14:15:40.613 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  15751. 2018-08-15 14:15:40.614 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| ==> Parameters:
  15752. 2018-08-15 14:15:40.622 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getAll [159] -| <== Total: 386
  15753. 2018-08-15 14:15:40.622 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [88] -| 加载考核项信息成功,数据数:386
  15754. 2018-08-15 14:15:40.623 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15755. 2018-08-15 14:15:40.623 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 26(Long)
  15756. 2018-08-15 14:15:40.625 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 6
  15757. 2018-08-15 14:15:40.626 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=26,查询服务区考核项信息成功,数据数:7
  15758. 2018-08-15 14:15:40.627 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15759. 2018-08-15 14:15:40.627 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 27(Long)
  15760. 2018-08-15 14:15:40.628 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 3
  15761. 2018-08-15 14:15:40.629 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=27,查询服务区考核项信息成功,数据数:7
  15762. 2018-08-15 14:15:40.629 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15763. 2018-08-15 14:15:40.630 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 28(Long)
  15764. 2018-08-15 14:15:40.631 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 12
  15765. 2018-08-15 14:15:40.632 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=28,查询服务区考核项信息成功,数据数:7
  15766. 2018-08-15 14:15:40.632 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15767. 2018-08-15 14:15:40.633 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 29(Long)
  15768. 2018-08-15 14:15:40.634 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  15769. 2018-08-15 14:15:40.635 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=29,查询服务区考核项信息成功,数据数:7
  15770. 2018-08-15 14:15:40.636 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15771. 2018-08-15 14:15:40.636 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 30(Long)
  15772. 2018-08-15 14:15:40.637 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  15773. 2018-08-15 14:15:40.638 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=30,查询服务区考核项信息成功,数据数:7
  15774. 2018-08-15 14:15:40.639 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15775. 2018-08-15 14:15:40.640 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 31(Long)
  15776. 2018-08-15 14:15:40.641 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  15777. 2018-08-15 14:15:40.642 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=31,查询服务区考核项信息成功,数据数:7
  15778. 2018-08-15 14:15:40.642 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Preparing: select if(p.score is NULL,p.name,(select name from check_item where id = p.parent_id)) itemname from check_item p where p.id in (select item_id from check_rule_item where rule_id=?) GROUP BY itemname
  15779. 2018-08-15 14:15:40.642 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| ==> Parameters: 32(Long)
  15780. 2018-08-15 14:15:40.643 |-DEBUG [http-nio-8089-exec-21] com.xintong.visualinspection.dao.cluster.ItemDao.getCheckItemName [159] -| <== Total: 0
  15781. 2018-08-15 14:15:40.644 |-INFO [http-nio-8089-exec-21] com.xintong.visualinspection.util.CacheUtil [103] -| 加载ruleId=32,查询服务区考核项信息成功,数据数:7
  15782. 2018-08-15 14:15:40.652 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15783. 2018-08-15 14:15:40.653 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15784. 2018-08-15 14:15:40.654 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15785. 2018-08-15 14:15:40.655 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15786. 2018-08-15 14:15:40.656 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15787. 2018-08-15 14:15:40.656 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15788. 2018-08-15 14:15:40.662 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15789. 2018-08-15 14:15:40.663 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15790. 2018-08-15 14:15:40.663 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15791. 2018-08-15 14:15:40.665 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15792. 2018-08-15 14:15:40.666 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15793. 2018-08-15 14:15:40.667 |-INFO [http-nio-8089-exec-11] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15794. 2018-08-15 14:15:40.671 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Preparing: SELECT count(0) FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id
  15795. 2018-08-15 14:15:40.672 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| ==> Parameters:
  15796. 2018-08-15 14:15:40.673 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem_COUNT [159] -| <== Total: 1
  15797. 2018-08-15 14:15:40.674 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Preparing: SELECT o.*,(SELECT COUNT(1) FROM check_rule_item t WHERE t.rule_id =o.id) AS checked_item_num ,sj.name AS checked_position_name FROM check_rule o LEFT JOIN sys_job sj ON o.checked_position_id = sj.id limit ?,?
  15798. 2018-08-15 14:15:40.675 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| ==> Parameters: 0(Integer), 10(Integer)
  15799. 2018-08-15 14:15:40.677 |-DEBUG [http-nio-8089-exec-11] com.xintong.visualinspection.dao.master.CheckRuleDao.getAllAndCountItem [159] -| <== Total: 9
  15800. 2018-08-15 14:15:46.015 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15801. 2018-08-15 14:15:46.015 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15802. 2018-08-15 14:15:46.017 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15803. 2018-08-15 14:15:46.017 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  15804. 2018-08-15 14:15:46.017 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15805. 2018-08-15 14:15:46.018 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
  15806. 2018-08-15 14:15:46.021 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15807. 2018-08-15 14:15:46.021 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  15808. 2018-08-15 14:15:46.022 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15809. 2018-08-15 14:15:46.022 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  15810. 2018-08-15 14:15:46.022 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15811. 2018-08-15 14:15:46.023 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
  15812. 2018-08-15 14:15:46.029 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15813. 2018-08-15 14:15:46.030 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 229
  15814. 2018-08-15 14:15:46.030 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15815. 2018-08-15 14:15:46.030 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  15816. 2018-08-15 14:15:46.030 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15817. 2018-08-15 14:15:46.031 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
  15818. 2018-08-15 14:15:46.032 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15819. 2018-08-15 14:15:46.032 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 2
  15820. 2018-08-15 14:15:46.034 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15821. 2018-08-15 14:15:46.034 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [72] -| authenticated user wenhongquan, setting security context
  15822. 2018-08-15 14:15:46.035 |-INFO [http-nio-8089-exec-19] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15823. 2018-08-15 14:15:46.035 |-INFO [http-nio-8089-exec-16] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [55] -| checking authentication wenhongquan
  15824. 2018-08-15 14:15:46.035 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  15825. 2018-08-15 14:15:46.036 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Preparing: SELECT t.*,c.name AS i_name ,c.score ,c.id AS i_id ,c.parent_id FROM (SELECT a.*,b.* FROM check_rule a left join check_rule_item b on a.id=b.rule_id WHERE a.id = ?) t LEFT JOIN check_item c ON t.item_id = c.id
  15826. 2018-08-15 14:15:46.036 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  15827. 2018-08-15 14:15:46.036 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| ==> Parameters: 25(Long)
  15828. 2018-08-15 14:15:46.041 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckRuleDao.getOne [159] -| <== Total: 80
  15829. 2018-08-15 14:15:46.042 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item where status != -1 ORDER BY parent_id ASC , id ASC
  15830. 2018-08-15 14:15:46.042 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  15831. 2018-08-15 14:15:46.043 |-DEBUG [http-nio-8089-exec-19] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386
  15832. 2018-08-15 14:15:46.049 |-DEBUG [http-nio-8089-exec-16] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 386