123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367 |
- 2023-11-09 10:19:21.148 [main] INFO c.m.p.PlatformStartApplication - [logStarting,50] - Starting PlatformStartApplication on YuShuiMing with PID 14080 (D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes started by 31253 in D:\Work\workCode\manHourHousekeeper\manHourHousekeeper)
- 2023-11-09 10:19:21.151 [main] INFO c.m.p.PlatformStartApplication - [logStartupProfileInfo,648] - No active profile set, falling back to default profiles: default
- 2023-11-09 10:19:21.750 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:19:21.752 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:19:21.753 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:19:21.754 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:19:21.755 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:19:21.756 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:19:21.757 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:19:21.757 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:19:21.757 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface
- 2023-11-09 10:19:21.759 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'auditWorkflowTimeSettingMapper'.
- 2023-11-09 10:19:21.759 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:19:21.759 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyCustomerContactMapper'.
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyDingdingMapper'.
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyMapper'.
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyReportMapper'.
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companySigningMapper'.
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface
- 2023-11-09 10:19:21.760 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'contractDetailMapper'.
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'customerInfoMapper'.
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'departmentMapper'.
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'feishuInfoMapper'.
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationLogMapper'.
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationRecordMapper'.
- 2023-11-09 10:19:21.761 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'participationMapper'.
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'permissionMapper'.
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectAuditorMapper'.
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectCategoryMapper'.
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectMapper'.
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface
- 2023-11-09 10:19:21.762 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportFormMapper'.
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportMapper'.
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysFunctionMapper'.
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysModuleMapper'.
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleFunctionMapper'.
- 2023-11-09 10:19:21.763 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleModuleMapper'.
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'TSensitiveWordsMapper'.
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskCommentMapper'.
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskExecutorMapper'.
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskFileMapper'.
- 2023-11-09 10:19:21.764 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskGroupMapper'.
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskLogMapper'.
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskMapper'.
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskProgressMapper'.
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationMapper'.
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationShowMapper'.
- 2023-11-09 10:19:21.765 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeTypeMapper'.
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'tprogressPaticipatorsMapper'.
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userCorpwxTimeMapper'.
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userMapper'.
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userSalaryMapper'.
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:19:21.766 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'vcompanyCustomerContactMapper'.
- 2023-11-09 10:19:21.767 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface
- 2023-11-09 10:19:21.767 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'wxCorpInfoMapper'.
- 2023-11-09 10:19:21.770 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:19:21.770 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:19:21.770 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:19:21.771 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:19:21.772 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:19:21.773 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:19:21.774 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:19:21.775 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:19:21.775 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:19:21.775 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:19:21.775 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:19:21.775 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.776 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.777 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.778 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.779 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.780 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.780 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:19:21.780 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - No MyBatis mapper was found in '[com.management.platform.mapper]' package. Please check your configuration.
- 2023-11-09 10:19:22.737 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10018"]
- 2023-11-09 10:19:22.745 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 10:19:22.745 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 10:19:22.858 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 10:19:22.858 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 10:19:22.858 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 1667 ms
- 2023-11-09 10:19:23.159 [main] WARN c.z.h.HikariConfig - [validateNumerics,973] - HikariPool-1 - idleTimeout is close to or more than maxLifetime, disabling it.
- 2023-11-09 10:19:23.160 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
- 2023-11-09 10:19:26.308 [main] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,574] - HikariPool-1 - Exception during pool initialization.
- com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
- at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
- at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:836)
- at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:456)
- at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:246)
- at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199)
- at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136)
- at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
- at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198)
- at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467)
- at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541)
- at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
- at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:480)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:627)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:197)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfdaf6dc.CGLIB$sqlSessionFactory$2(<generated>)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfdaf6dc$$FastClassBySpringCGLIB$$4954bc73.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfdaf6dc.sqlSessionFactory(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:607)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1320)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1159)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1255)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1175)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1493)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1388)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:452)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:527)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:497)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:637)
- at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:180)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:322)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1404)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:847)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1204)
- at com.management.platform.PlatformStartApplication.main(PlatformStartApplication.java:23)
- Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
- at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
- at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
- at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
- at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
- at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91)
- at com.mysql.cj.NativeSession.connect(NativeSession.java:144)
- at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:956)
- at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:826)
- ... 69 common frames omitted
- Caused by: java.net.ConnectException: Connection refused: connect
- at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
- at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
- at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
- at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
- at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
- at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
- at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
- at java.net.Socket.connect(Socket.java:589)
- at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155)
- at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65)
- ... 72 common frames omitted
- 2023-11-09 10:19:26.310 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - [refresh,557] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'companyController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- 2023-11-09 10:19:26.313 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
- 2023-11-09 10:19:26.327 [main] ERROR o.s.b.SpringApplication - [reportFailure,823] - Application run failed
- org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'companyController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:325)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1404)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:847)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1204)
- at com.management.platform.PlatformStartApplication.main(PlatformStartApplication.java:23)
- Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1508)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1388)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:452)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:527)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:497)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:637)
- at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:180)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:322)
- ... 17 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:627)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:607)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1320)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1159)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1255)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1175)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1493)
- ... 31 common frames omitted
- Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622)
- ... 44 common frames omitted
- Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:483)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:627)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:197)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfdaf6dc.CGLIB$sqlSessionFactory$2(<generated>)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfdaf6dc$$FastClassBySpringCGLIB$$4954bc73.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$cfdaf6dc.sqlSessionFactory(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
- ... 45 common frames omitted
- 2023-11-09 10:24:09.669 [main] INFO c.m.p.PlatformStartApplication - [logStarting,50] - Starting PlatformStartApplication on YuShuiMing with PID 20092 (D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes started by 31253 in D:\Work\workCode\manHourHousekeeper\manHourHousekeeper)
- 2023-11-09 10:24:09.672 [main] INFO c.m.p.PlatformStartApplication - [logStartupProfileInfo,648] - No active profile set, falling back to default profiles: default
- 2023-11-09 10:24:10.368 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:24:10.368 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:24:10.368 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:24:10.369 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:24:10.370 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:24:10.371 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:24:10.372 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:24:10.373 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:24:10.374 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'auditWorkflowTimeSettingMapper'.
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyCustomerContactMapper'.
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyDingdingMapper'.
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface
- 2023-11-09 10:24:10.376 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyMapper'.
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyReportMapper'.
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companySigningMapper'.
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'contractDetailMapper'.
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'customerInfoMapper'.
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'departmentMapper'.
- 2023-11-09 10:24:10.377 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'feishuInfoMapper'.
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationLogMapper'.
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationRecordMapper'.
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'participationMapper'.
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'permissionMapper'.
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface
- 2023-11-09 10:24:10.378 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectAuditorMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectCategoryMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportFormMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysFunctionMapper'.
- 2023-11-09 10:24:10.379 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysModuleMapper'.
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleFunctionMapper'.
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleModuleMapper'.
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'TSensitiveWordsMapper'.
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskCommentMapper'.
- 2023-11-09 10:24:10.380 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskExecutorMapper'.
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskFileMapper'.
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskGroupMapper'.
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskLogMapper'.
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskMapper'.
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface
- 2023-11-09 10:24:10.381 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskProgressMapper'.
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationMapper'.
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationShowMapper'.
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeTypeMapper'.
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'tprogressPaticipatorsMapper'.
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface
- 2023-11-09 10:24:10.382 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userCorpwxTimeMapper'.
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userMapper'.
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userSalaryMapper'.
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'vcompanyCustomerContactMapper'.
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface
- 2023-11-09 10:24:10.383 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'wxCorpInfoMapper'.
- 2023-11-09 10:24:10.386 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:24:10.387 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:24:10.388 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:24:10.389 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:24:10.390 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:24:10.391 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:24:10.391 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:24:10.391 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:24:10.391 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:24:10.391 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.391 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.392 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.393 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.394 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.395 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.395 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.395 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.395 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:24:10.395 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - No MyBatis mapper was found in '[com.management.platform.mapper]' package. Please check your configuration.
- 2023-11-09 10:24:11.274 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10018"]
- 2023-11-09 10:24:11.281 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 10:24:11.281 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 10:24:11.451 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 10:24:11.452 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 10:24:11.452 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 1736 ms
- 2023-11-09 10:24:11.750 [main] WARN c.z.h.HikariConfig - [validateNumerics,973] - HikariPool-1 - idleTimeout is close to or more than maxLifetime, disabling it.
- 2023-11-09 10:24:11.751 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
- 2023-11-09 10:24:14.921 [main] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,574] - HikariPool-1 - Exception during pool initialization.
- com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
- at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
- at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:836)
- at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:456)
- at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:246)
- at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199)
- at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136)
- at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
- at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198)
- at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467)
- at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541)
- at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
- at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:480)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:627)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:197)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$994bf8e.CGLIB$sqlSessionFactory$2(<generated>)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$994bf8e$$FastClassBySpringCGLIB$$fce7c1c1.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$994bf8e.sqlSessionFactory(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:607)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1320)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1159)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1255)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1175)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1493)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1388)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:452)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:527)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:497)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:637)
- at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:180)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:322)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1404)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:847)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1204)
- at com.management.platform.PlatformStartApplication.main(PlatformStartApplication.java:23)
- Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
- at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
- at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
- at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
- at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
- at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91)
- at com.mysql.cj.NativeSession.connect(NativeSession.java:144)
- at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:956)
- at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:826)
- ... 69 common frames omitted
- Caused by: java.net.ConnectException: Connection refused: connect
- at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
- at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
- at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
- at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
- at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
- at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
- at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
- at java.net.Socket.connect(Socket.java:589)
- at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155)
- at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65)
- ... 72 common frames omitted
- 2023-11-09 10:24:14.923 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - [refresh,557] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'companyController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- 2023-11-09 10:24:14.926 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
- 2023-11-09 10:24:14.941 [main] ERROR o.s.b.SpringApplication - [reportFailure,823] - Application run failed
- org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'companyController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:325)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1404)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:847)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1204)
- at com.management.platform.PlatformStartApplication.main(PlatformStartApplication.java:23)
- Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1508)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1388)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:452)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:527)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:497)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:637)
- at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:180)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:322)
- ... 17 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:627)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:607)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1320)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1159)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1255)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1175)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1493)
- ... 31 common frames omitted
- Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622)
- ... 44 common frames omitted
- Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:483)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:627)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:197)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$994bf8e.CGLIB$sqlSessionFactory$2(<generated>)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$994bf8e$$FastClassBySpringCGLIB$$fce7c1c1.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$994bf8e.sqlSessionFactory(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
- ... 45 common frames omitted
- 2023-11-09 10:27:05.576 [main] INFO c.m.p.PlatformStartApplication - [logStarting,50] - Starting PlatformStartApplication on YuShuiMing with PID 6136 (D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes started by 31253 in D:\Work\workCode\manHourHousekeeper\manHourHousekeeper)
- 2023-11-09 10:27:05.580 [main] INFO c.m.p.PlatformStartApplication - [logStartupProfileInfo,648] - No active profile set, falling back to default profiles: default
- 2023-11-09 10:27:06.150 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:27:06.151 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:27:06.151 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:27:06.151 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:27:06.151 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:27:06.151 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:27:06.151 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:27:06.152 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:27:06.153 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:27:06.154 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:27:06.155 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:27:06.156 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:27:06.156 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:27:06.156 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:27:06.157 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'auditWorkflowTimeSettingMapper'.
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyCustomerContactMapper'.
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyDingdingMapper'.
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyMapper'.
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyReportMapper'.
- 2023-11-09 10:27:06.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companySigningMapper'.
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'contractDetailMapper'.
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'customerInfoMapper'.
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'departmentMapper'.
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'feishuInfoMapper'.
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface
- 2023-11-09 10:27:06.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationLogMapper'.
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationRecordMapper'.
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'participationMapper'.
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'permissionMapper'.
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectAuditorMapper'.
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectCategoryMapper'.
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface
- 2023-11-09 10:27:06.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectMapper'.
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportFormMapper'.
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportMapper'.
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysFunctionMapper'.
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysModuleMapper'.
- 2023-11-09 10:27:06.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleFunctionMapper'.
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleModuleMapper'.
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'TSensitiveWordsMapper'.
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskCommentMapper'.
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskExecutorMapper'.
- 2023-11-09 10:27:06.163 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskFileMapper'.
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskGroupMapper'.
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskLogMapper'.
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskMapper'.
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskProgressMapper'.
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationMapper'.
- 2023-11-09 10:27:06.164 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationShowMapper'.
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeTypeMapper'.
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'tprogressPaticipatorsMapper'.
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userCorpwxTimeMapper'.
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userMapper'.
- 2023-11-09 10:27:06.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface
- 2023-11-09 10:27:06.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userSalaryMapper'.
- 2023-11-09 10:27:06.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:27:06.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'vcompanyCustomerContactMapper'.
- 2023-11-09 10:27:06.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface
- 2023-11-09 10:27:06.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'wxCorpInfoMapper'.
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:27:06.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:27:06.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:27:06.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:27:06.173 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:27:06.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:27:06.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:27:06.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:27:06.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:27:06.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:27:06.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:27:06.174 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.175 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.176 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.177 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:06.178 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - No MyBatis mapper was found in '[com.management.platform.mapper]' package. Please check your configuration.
- 2023-11-09 10:27:07.111 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10018"]
- 2023-11-09 10:27:07.118 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 10:27:07.118 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 10:27:07.225 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 10:27:07.225 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 10:27:07.225 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 1605 ms
- 2023-11-09 10:27:07.524 [main] WARN c.z.h.HikariConfig - [validateNumerics,973] - HikariPool-1 - idleTimeout is close to or more than maxLifetime, disabling it.
- 2023-11-09 10:27:07.525 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
- 2023-11-09 10:27:10.692 [main] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,574] - HikariPool-1 - Exception during pool initialization.
- com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
- at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
- at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:836)
- at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:456)
- at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:246)
- at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199)
- at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136)
- at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
- at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198)
- at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467)
- at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541)
- at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
- at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:480)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:627)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:197)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f84e00d9.CGLIB$sqlSessionFactory$1(<generated>)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f84e00d9$$FastClassBySpringCGLIB$$add0badc.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f84e00d9.sqlSessionFactory(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:607)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1320)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1159)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1255)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1175)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1493)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1388)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:452)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:527)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:497)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:637)
- at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:180)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:322)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1404)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:847)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1204)
- at com.management.platform.PlatformStartApplication.main(PlatformStartApplication.java:23)
- Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
- at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
- at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
- at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
- at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
- at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
- at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91)
- at com.mysql.cj.NativeSession.connect(NativeSession.java:144)
- at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:956)
- at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:826)
- ... 69 common frames omitted
- Caused by: java.net.ConnectException: Connection refused: connect
- at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
- at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
- at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
- at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
- at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
- at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
- at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
- at java.net.Socket.connect(Socket.java:589)
- at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155)
- at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65)
- ... 72 common frames omitted
- 2023-11-09 10:27:10.695 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - [refresh,557] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'companyController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- 2023-11-09 10:27:10.697 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat]
- 2023-11-09 10:27:10.713 [main] ERROR o.s.b.SpringApplication - [reportFailure,823] - Application run failed
- org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'companyController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:325)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1404)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:847)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1204)
- at com.management.platform.PlatformStartApplication.main(PlatformStartApplication.java:23)
- Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'companyMapper' defined in file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1508)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1388)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:452)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:527)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:497)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:637)
- at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:180)
- at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
- at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:322)
- ... 17 common frames omitted
- Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:627)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:607)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1320)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1159)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:277)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1255)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1175)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1493)
- ... 31 common frames omitted
- Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622)
- ... 44 common frames omitted
- Caused by: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: GlobalConfigUtils setMetaData Fail ! Cause:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
- at com.baomidou.mybatisplus.core.toolkit.ExceptionUtils.mpe(ExceptionUtils.java:49)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:483)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:433)
- at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:627)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:197)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f84e00d9.CGLIB$sqlSessionFactory$1(<generated>)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f84e00d9$$FastClassBySpringCGLIB$$add0badc.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363)
- at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$f84e00d9.sqlSessionFactory(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
- ... 45 common frames omitted
- 2023-11-09 10:27:44.579 [main] INFO c.m.p.PlatformStartApplication - [logStarting,50] - Starting PlatformStartApplication on YuShuiMing with PID 11024 (D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes started by 31253 in D:\Work\workCode\manHourHousekeeper\manHourHousekeeper)
- 2023-11-09 10:27:44.582 [main] INFO c.m.p.PlatformStartApplication - [logStartupProfileInfo,648] - No active profile set, falling back to default profiles: default
- 2023-11-09 10:27:45.186 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:27:45.186 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:27:45.186 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:27:45.187 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:27:45.188 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:27:45.189 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:27:45.190 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:27:45.191 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:27:45.191 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:27:45.191 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:27:45.191 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:27:45.191 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:27:45.191 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:27:45.192 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface
- 2023-11-09 10:27:45.194 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'auditWorkflowTimeSettingMapper'.
- 2023-11-09 10:27:45.194 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:27:45.194 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyCustomerContactMapper'.
- 2023-11-09 10:27:45.194 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface
- 2023-11-09 10:27:45.194 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyDingdingMapper'.
- 2023-11-09 10:27:45.194 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyMapper'.
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyReportMapper'.
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companySigningMapper'.
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'contractDetailMapper'.
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'customerInfoMapper'.
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface
- 2023-11-09 10:27:45.195 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'departmentMapper'.
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'feishuInfoMapper'.
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationLogMapper'.
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationRecordMapper'.
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'participationMapper'.
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'permissionMapper'.
- 2023-11-09 10:27:45.196 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectAuditorMapper'.
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectCategoryMapper'.
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectMapper'.
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportFormMapper'.
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportMapper'.
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2023-11-09 10:27:45.197 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysFunctionMapper'.
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysModuleMapper'.
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleFunctionMapper'.
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleModuleMapper'.
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'TSensitiveWordsMapper'.
- 2023-11-09 10:27:45.198 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskCommentMapper'.
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskExecutorMapper'.
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskFileMapper'.
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskGroupMapper'.
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskLogMapper'.
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface
- 2023-11-09 10:27:45.199 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskMapper'.
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskProgressMapper'.
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationMapper'.
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationShowMapper'.
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeTypeMapper'.
- 2023-11-09 10:27:45.200 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'tprogressPaticipatorsMapper'.
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userCorpwxTimeMapper'.
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userMapper'.
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userSalaryMapper'.
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'vcompanyCustomerContactMapper'.
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface
- 2023-11-09 10:27:45.201 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'wxCorpInfoMapper'.
- 2023-11-09 10:27:45.205 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 10:27:45.205 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 10:27:45.205 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 10:27:45.206 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 10:27:45.207 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 10:27:45.208 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 10:27:45.209 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 10:27:45.210 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 10:27:45.210 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 10:27:45.210 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 10:27:45.210 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 10:27:45.210 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.210 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.210 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.211 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.212 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.213 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 10:27:45.214 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - No MyBatis mapper was found in '[com.management.platform.mapper]' package. Please check your configuration.
- 2023-11-09 10:27:46.170 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10018"]
- 2023-11-09 10:27:46.179 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 10:27:46.179 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 10:27:46.281 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 10:27:46.281 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 10:27:46.281 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 1654 ms
- 2023-11-09 10:27:46.576 [main] WARN c.z.h.HikariConfig - [validateNumerics,973] - HikariPool-1 - idleTimeout is close to or more than maxLifetime, disabling it.
- 2023-11-09 10:27:46.577 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
- 2023-11-09 10:27:47.784 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
- 2023-11-09 10:27:48.026 [main] WARN c.b.m.c.m.TableInfoHelper - [initTableFields,285] - Warn: Could not find @TableId in Class: com.management.platform.entity.CompanyReport.
- 2023-11-09 10:27:50.104 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CommonUploadController:
- { /common/downLoadLog}: downLoadLog()
- { /common/uploadFile}: uploadFile(MultipartFile)
- 2023-11-09 10:27:50.108 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyController:
- { /company/setExpDate}: setExpDate(Integer,String)
- { /company/addMembCount}: addMembCount(Integer,int)
- { /company/setPackageList}: setPackageList(Company)
- { /company/setMeal}: setMeal(Integer,Integer)
- { /company/dataMigration}: dataMigration(HttpServletRequest,Integer,Integer,String,String)
- { /company/getList}: getList(String,Boolean,Integer,Integer,Integer,Boolean)
- { /company/deleteCompany}: deleteCompany(Integer)
- { /company/addFeiShuInfo}: addFeiShuInfo(FeiShuInfoVO)
- { /company/syncDindDingMembs}: syncDingDingMembs(String)
- { /company/setTimeTypeSetting}: setTimeTypeSetting(TimeType)
- 2023-11-09 10:27:50.109 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyCustomerContactController:
- { /company-customer-contact/handle}: handle(Integer,String)
- { /company-customer-contact/getList}: getList(Integer,Integer)
- 2023-11-09 10:27:50.110 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyReportController:
- { /company-report/update}: update(Integer,String,String)
- { /company-report/list}: list(Integer)
- 2023-11-09 10:27:50.110 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanySigningController:
- { /company-signing/update}: update(CompanySigning)
- { /company-signing/getList}: getList(Integer)
- 2023-11-09 10:27:50.111 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.ContractDetailController:
- { /contract-detail/update}: update(ContractDetail,HttpServletResponse)
- { /contract-detail/detail}: detail(Integer)
- { /contract-detail/finalize}: contractFinalize(Integer)
- { /contract-detail/preview}: preview(HttpServletResponse,Integer)
- 2023-11-09 10:27:50.111 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.FeishuInfoController:
-
- 2023-11-09 10:27:50.111 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.OperationLogController:
- { /operation-log/list}: list(Integer,Integer,Integer)
- 2023-11-09 10:27:50.112 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.OperationRecordController:
- { /operation-record/getList}: getList(String,String,String,Integer,Integer,String)
- 2023-11-09 10:27:50.112 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.PermissionController:
- { /permission/getAuthority}: getAuthority(Integer,Integer,HttpServletRequest)
- { /permission/getRoleList}: getRoleList(Integer)
- {POST /permission/savePermission}: savePermission(Integer,String)
- { /permission/getFrontRoleList}: getFrontRoleList(Integer)
- 2023-11-09 10:27:50.113 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.ReportController:
-
- 2023-11-09 10:27:50.113 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.SysRoleController:
- { /role/genCorpDefaultRoles}: genCorpDefaultRoles(Integer,Integer)
- 2023-11-09 10:27:50.113 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.TimeTypeController:
- { /time-type/get}: get(Integer)
- 2023-11-09 10:27:50.114 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.UserController:
- { /user/getUserInfo}: getUserInfo(String)
- { /user/loginAdmin}: loginAdmin(String,String)
- { /user/getEmployeeList}: getEmployeeList(Integer,String,Integer,Integer,Integer,Integer)
- 2023-11-09 10:27:50.114 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.VcompanyCustomerContactController:
-
- 2023-11-09 10:27:50.114 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.WxCorpInfoController:
-
- 2023-11-09 10:27:50.116 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- o.s.b.a.w.s.e.BasicErrorController:
- { /error}: error(HttpServletRequest)
- { /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
- 2023-11-09 10:27:50.119 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - [handlerMethodsInitialized,351] - 35 mappings in 'requestMappingHandlerMapping'
- 2023-11-09 10:27:50.137 [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - [detectHandlers,86] - Detected 0 mappings in 'beanNameHandlerMapping'
- 2023-11-09 10:27:50.227 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - [initControllerAdviceCache,620] - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
- 2023-11-09 10:27:50.259 [main] DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - [initExceptionHandlerAdviceCache,303] - ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
- 2023-11-09 10:27:50.805 [main] DEBUG o.s.w.s.v.f.FreeMarkerConfigurer - [getTemplateLoaderForPath,347] - Template loader path [class path resource [templates/]] resolved to file path [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\templates]
- 2023-11-09 10:27:50.952 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 10:27:50.954 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10018"]
- 2023-11-09 10:27:51.260 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10019"]
- 2023-11-09 10:27:51.261 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 10:27:51.261 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 10:27:51.287 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 10:27:51.288 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 10:27:51.288 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 80 ms
- 2023-11-09 10:27:51.315 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- o.s.b.a.a.w.s.ManagementErrorEndpoint:
- { /error}: invoke(ServletWebRequest)
- 2023-11-09 10:27:51.316 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - [handlerMethodsInitialized,351] - 1 mappings in 'requestMappingHandlerMapping'
- 2023-11-09 10:27:51.317 [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - [detectHandlers,86] - Detected 0 mappings in 'beanNameHandlerMapping'
- 2023-11-09 10:27:51.330 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - [initControllerAdviceCache,620] - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
- 2023-11-09 10:27:51.334 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 10:27:51.334 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 10:27:51.334 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10019"]
- 2023-11-09 10:27:51.338 [main] INFO c.m.p.PlatformStartApplication - [logStarted,59] - Started PlatformStartApplication in 7.136 seconds (JVM running for 8.567)
- 2023-11-09 10:27:52.315 [RMI TCP Connection(1)-192.168.200.150] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:27:52.315 [RMI TCP Connection(1)-192.168.200.150] INFO o.s.w.s.DispatcherServlet - [initServletBean,525] - Initializing Servlet 'dispatcherServlet'
- 2023-11-09 10:27:52.316 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initMultipartResolver,523] - Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@5072e638
- 2023-11-09 10:27:52.318 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initLocaleResolver,557] - No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
- 2023-11-09 10:27:52.320 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initThemeResolver,582] - No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
- 2023-11-09 10:27:52.324 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initRequestToViewNameTranslator,725] - No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
- 2023-11-09 10:27:52.329 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initFlashMapManager,789] - No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
- 2023-11-09 10:27:52.329 [RMI TCP Connection(1)-192.168.200.150] DEBUG o.s.w.s.DispatcherServlet - [initServletBean,542] - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
- 2023-11-09 10:27:52.329 [RMI TCP Connection(1)-192.168.200.150] INFO o.s.w.s.DispatcherServlet - [initServletBean,547] - Completed initialization in 13 ms
- 2023-11-09 10:57:51.642 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:57:51.671 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 10:57:51.671 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 10:57:51.773 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 10:57:51.858 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:51.893 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7f0561d1] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:51.971 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1943533914 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:51.974 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 10:57:52.026 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 10:57:52.068 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 10:57:52.069 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7f0561d1]
- 2023-11-09 10:57:52.073 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.074 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@a5d0f8c] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.074 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1373515724 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.075 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 10:57:52.075 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 10:57:52.090 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 10:57:52.090 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@a5d0f8c]
- 2023-11-09 10:57:52.112 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.112 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4d08df58] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.112 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@990434809 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.113 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 10:57:52.113 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 10:57:52.130 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 10:57:52.131 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4d08df58]
- 2023-11-09 10:57:52.132 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.132 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2ce2c741] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.132 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1510409159 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.133 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 10:57:52.133 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 10:57:52.149 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 10:57:52.149 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2ce2c741]
- 2023-11-09 10:57:52.150 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.150 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@239d07df] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.151 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@436143138 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.151 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 10:57:52.152 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 10:57:52.171 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 10:57:52.172 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@239d07df]
- 2023-11-09 10:57:52.173 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.173 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@51b7ac28] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.174 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@814246952 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.175 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 10:57:52.175 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 10:57:52.190 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 10:57:52.190 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@51b7ac28]
- 2023-11-09 10:57:52.191 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.191 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@35c2e5fb] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.193 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1373031032 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.193 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 10:57:52.194 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 10:57:52.213 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 10:57:52.213 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@35c2e5fb]
- 2023-11-09 10:57:52.214 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.215 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@62eb56f8] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.216 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2123874615 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.217 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 10:57:52.217 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 10:57:52.232 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 10:57:52.232 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@62eb56f8]
- 2023-11-09 10:57:52.233 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.234 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@716f6752] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.236 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1233888017 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.237 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 10:57:52.238 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 10:57:52.265 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 10:57:52.266 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@716f6752]
- 2023-11-09 10:57:52.308 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:57:52.309 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@656d72de]
- 2023-11-09 10:57:52.380 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:57:52.381 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:57:52.735 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:57:52.735 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 10:57:52.736 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 10:57:52.741 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 10:57:52.742 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 10:57:52.744 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 10:57:52.749 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:57:52.749 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@54a670d] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:57:52.751 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@555389337 wrapping com.mysql.cj.jdbc.ConnectionImpl@43fb46ec] will not be managed by Spring
- 2023-11-09 10:57:52.853 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 10:57:52.854 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 10:57:53.717 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 10:57:53.717 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 10:57:55.244 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 10:57:55.245 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@54a670d]
- 2023-11-09 10:57:55.246 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:57:55.246 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2cff6a62]
- 2023-11-09 10:57:55.254 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:57:55.254 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:58:44.571 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-log/list", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:58:44.572 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationLogController.list(java.lang.Integer,java.lang.Integer,java.lang.Integer)
- 2023-11-09 10:58:44.573 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 10:58:44.575 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20, 0]
- 2023-11-09 10:58:44.575 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-log/list, 参数: [1, 20, 0]
- 2023-11-09 10:58:44.578 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:58:44.578 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7526c0bb] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:58:44.596 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2145299403 wrapping com.mysql.cj.jdbc.ConnectionImpl@3adc2a54] will not be managed by Spring
- 2023-11-09 10:58:44.598 [http-nio-10018-exec-3] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC ) TOTAL
- 2023-11-09 10:58:44.599 [http-nio-10018-exec-3] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 10:58:44.619 [http-nio-10018-exec-3] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC LIMIT ?,?
- 2023-11-09 10:58:44.619 [http-nio-10018-exec-3] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 10:58:44.637 [http-nio-10018-exec-3] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 10:58:44.637 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7526c0bb]
- 2023-11-09 10:58:44.638 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:58:44.638 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4ba319e6]
- 2023-11-09 10:58:44.640 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:58:44.640 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:59:01.742 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-record/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:01.743 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationRecordController.getList(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String)
- 2023-11-09 10:59:01.744 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 10:59:01.745 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-record/getList, 参数: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 10:59:01.749 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:01.749 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@68f8873a] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:01.767 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1644227658 wrapping com.mysql.cj.jdbc.ConnectionImpl@3adc2a54] will not be managed by Spring
- 2023-11-09 10:59:01.768 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company
- 2023-11-09 10:59:01.768 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters:
- 2023-11-09 10:59:02.500 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 4278
- 2023-11-09 10:59:02.501 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@68f8873a]
- 2023-11-09 10:59:02.505 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:02.505 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3f5573fa] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:02.506 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1324762638 wrapping com.mysql.cj.jdbc.ConnectionImpl@3adc2a54] will not be managed by Spring
- 2023-11-09 10:59:02.515 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC ) TOTAL
- 2023-11-09 10:59:02.515 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String)
- 2023-11-09 10:59:02.764 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC LIMIT ?,?
- 2023-11-09 10:59:02.765 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String), 0(Long), 20(Long)
- 2023-11-09 10:59:02.815 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 3
- 2023-11-09 10:59:02.816 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3f5573fa]
- 2023-11-09 10:59:02.817 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:59:02.817 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@24b17c89]
- 2023-11-09 10:59:02.819 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:59:02.819 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:59:17.618 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:17.619 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 10:59:17.619 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 10:59:17.622 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 10:59:17.623 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 10:59:17.627 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:17.627 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@73a28201] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:17.643 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@849315898 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:17.645 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 10:59:17.645 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 10:59:17.660 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 10:59:17.661 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 10:59:17.676 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 10:59:17.676 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@73a28201]
- 2023-11-09 10:59:17.678 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:17.678 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@56fec964] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:17.680 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@284507276 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:17.681 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 10:59:17.681 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 10:59:17.701 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 10:59:17.702 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@56fec964]
- 2023-11-09 10:59:17.703 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:17.703 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@65e19196] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:17.705 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1317232029 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:17.706 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 10:59:17.707 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 10:59:17.724 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 10:59:17.725 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@65e19196]
- 2023-11-09 10:59:17.725 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:17.726 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1fafe907] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:17.727 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1678705464 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:17.727 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 10:59:17.728 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 10:59:17.742 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 10:59:17.742 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1fafe907]
- 2023-11-09 10:59:17.744 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:17.744 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@32c22b76] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:17.745 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@875907855 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:17.746 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 10:59:17.746 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 10:59:17.760 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 10:59:17.761 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@32c22b76]
- 2023-11-09 10:59:17.762 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:59:17.762 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@31ab0f39]
- 2023-11-09 10:59:17.766 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:59:17.766 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:59:25.278 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:25.278 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 10:59:25.279 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 10:59:25.279 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 10:59:25.279 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 10:59:25.280 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:25.280 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e2a8135] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:25.297 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@30436539 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:25.298 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 10:59:25.298 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 10:59:25.314 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 10:59:25.314 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 10:59:25.328 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 10:59:25.329 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e2a8135]
- 2023-11-09 10:59:25.329 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:25.329 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@63c89e82] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:25.331 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1183189568 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:25.332 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 10:59:25.332 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 10:59:25.353 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 10:59:25.354 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@63c89e82]
- 2023-11-09 10:59:25.354 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:25.354 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3ca8cbb2] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:25.355 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1367447051 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:25.356 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 10:59:25.356 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 10:59:25.369 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 10:59:25.370 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3ca8cbb2]
- 2023-11-09 10:59:25.370 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:25.370 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6c14809e] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:25.371 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@379266037 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:25.372 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 10:59:25.372 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 10:59:25.386 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 10:59:25.387 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6c14809e]
- 2023-11-09 10:59:25.387 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:25.387 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@767a2d26] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:25.388 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1050825479 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:25.389 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 10:59:25.389 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 10:59:25.408 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 10:59:25.409 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@767a2d26]
- 2023-11-09 10:59:25.409 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:59:25.409 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@34b14e7d]
- 2023-11-09 10:59:25.410 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:59:25.410 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:59:34.154 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:34.155 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 10:59:34.155 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 10:59:34.156 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 10:59:34.156 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 10:59:34.156 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 10:59:34.157 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 10:59:34.157 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7bbd3930] was not registered for synchronization because synchronization is not active
- 2023-11-09 10:59:34.172 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1900368448 wrapping com.mysql.cj.jdbc.ConnectionImpl@64327e3f] will not be managed by Spring
- 2023-11-09 10:59:34.173 [http-nio-10018-exec-7] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 10:59:34.173 [http-nio-10018-exec-7] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 10:59:34.859 [http-nio-10018-exec-7] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 10:59:34.859 [http-nio-10018-exec-7] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 10:59:36.384 [http-nio-10018-exec-7] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 10:59:36.384 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7bbd3930]
- 2023-11-09 10:59:36.385 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 10:59:36.385 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5eb5d33b]
- 2023-11-09 10:59:36.386 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 10:59:36.386 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 10:59:38.120 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - GET "/common/downLoadLog", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:38.120 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public org.springframework.http.ResponseEntity<byte[]> com.management.platform.controller.CommonUploadController.downLoadLog() throws java.io.IOException
- 2023-11-09 10:59:38.121 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: []
- 2023-11-09 10:59:38.121 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/common/downLoadLog, 参数: []
- 2023-11-09 10:59:38.202 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [logThrowing,74] - ***************抛出异常***************
- 2023-11-09 10:59:38.203 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [logThrowing,75] - 请求类方法:downLoadLog
- 2023-11-09 10:59:38.203 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [logThrowing,76] - 异常内容:java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- 2023-11-09 10:59:38.203 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [logThrowing,77] - ***************抛出异常***************
- 2023-11-09 10:59:38.319 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [logResult,1098] - Failed to complete request
- java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
- at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
- at java.nio.file.Files.newByteChannel(Files.java:361)
- at java.nio.file.Files.newByteChannel(Files.java:407)
- at java.nio.file.Files.readAllBytes(Files.java:3152)
- at com.management.platform.controller.CommonUploadController.downLoadLog(CommonUploadController.java:98)
- at com.management.platform.controller.CommonUploadController$$FastClassBySpringCGLIB$$8a547e5d.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:55)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
- at com.management.platform.controller.CommonUploadController$$EnhancerBySpringCGLIB$$c713fa1b.downLoadLog(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:893)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:798)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:114)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:104)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:526)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1591)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Thread.java:745)
- 2023-11-09 10:59:38.321 [http-nio-10018-exec-8] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - [log,175] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
- java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
- at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
- at java.nio.file.Files.newByteChannel(Files.java:361)
- at java.nio.file.Files.newByteChannel(Files.java:407)
- at java.nio.file.Files.readAllBytes(Files.java:3152)
- at com.management.platform.controller.CommonUploadController.downLoadLog(CommonUploadController.java:98)
- at com.management.platform.controller.CommonUploadController$$FastClassBySpringCGLIB$$8a547e5d.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:55)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
- at com.management.platform.controller.CommonUploadController$$EnhancerBySpringCGLIB$$c713fa1b.downLoadLog(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:893)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:798)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:114)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:104)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:526)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1591)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Thread.java:745)
- 2023-11-09 10:59:38.324 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - "ERROR" dispatch for GET "/error", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:38.326 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [lookupHandlerMethod,401] - 2 matching mappings: [{ /error, produces [text/html]}, { /error}]
- 2023-11-09 10:59:38.326 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
- 2023-11-09 10:59:38.327 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [org.apache.catalina.core.ApplicationHttpRequest@20fa3af8, org.apache.catalina.connector.ResponseFacade@2378fc23]
- 2023-11-09 10:59:38.370 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [render,1366] - Rendering view [org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$StaticView@64f32e9e]
- 2023-11-09 10:59:38.374 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1127] - Exiting from "ERROR" dispatch, status 500, headers={}
- 2023-11-09 10:59:57.772 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - GET "/common/downLoadLog", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:57.773 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public org.springframework.http.ResponseEntity<byte[]> com.management.platform.controller.CommonUploadController.downLoadLog() throws java.io.IOException
- 2023-11-09 10:59:57.773 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: []
- 2023-11-09 10:59:57.773 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/common/downLoadLog, 参数: []
- 2023-11-09 10:59:57.774 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,74] - ***************抛出异常***************
- 2023-11-09 10:59:57.774 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,75] - 请求类方法:downLoadLog
- 2023-11-09 10:59:57.774 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,76] - 异常内容:java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- 2023-11-09 10:59:57.775 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,77] - ***************抛出异常***************
- 2023-11-09 10:59:57.775 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [logResult,1098] - Failed to complete request
- java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
- at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
- at java.nio.file.Files.newByteChannel(Files.java:361)
- at java.nio.file.Files.newByteChannel(Files.java:407)
- at java.nio.file.Files.readAllBytes(Files.java:3152)
- at com.management.platform.controller.CommonUploadController.downLoadLog(CommonUploadController.java:98)
- at com.management.platform.controller.CommonUploadController$$FastClassBySpringCGLIB$$8a547e5d.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:55)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
- at com.management.platform.controller.CommonUploadController$$EnhancerBySpringCGLIB$$c713fa1b.downLoadLog(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:893)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:798)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:114)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:104)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:526)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1591)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Thread.java:745)
- 2023-11-09 10:59:57.776 [http-nio-10018-exec-9] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - [log,175] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
- java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
- at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
- at java.nio.file.Files.newByteChannel(Files.java:361)
- at java.nio.file.Files.newByteChannel(Files.java:407)
- at java.nio.file.Files.readAllBytes(Files.java:3152)
- at com.management.platform.controller.CommonUploadController.downLoadLog(CommonUploadController.java:98)
- at com.management.platform.controller.CommonUploadController$$FastClassBySpringCGLIB$$8a547e5d.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:55)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
- at com.management.platform.controller.CommonUploadController$$EnhancerBySpringCGLIB$$c713fa1b.downLoadLog(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:893)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:798)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:114)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:104)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:526)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1591)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Thread.java:745)
- 2023-11-09 10:59:57.777 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - "ERROR" dispatch for GET "/error", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 10:59:57.778 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [lookupHandlerMethod,401] - 2 matching mappings: [{ /error, produces [text/html]}, { /error}]
- 2023-11-09 10:59:57.778 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
- 2023-11-09 10:59:57.779 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [org.apache.catalina.core.ApplicationHttpRequest@1dcbc418, org.apache.catalina.connector.ResponseFacade@2378fc23]
- 2023-11-09 10:59:57.781 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [render,1366] - Rendering view [org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$StaticView@64f32e9e]
- 2023-11-09 10:59:57.781 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1127] - Exiting from "ERROR" dispatch, status 500, headers={}
- 2023-11-09 11:02:50.078 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:02:50.078 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:02:50.079 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:02:50.079 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:02:50.079 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:02:50.080 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:02:50.080 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:02:50.081 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5aa27f3f] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:02:50.099 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1348080719 wrapping com.mysql.cj.jdbc.ConnectionImpl@15589020] will not be managed by Spring
- 2023-11-09 11:02:50.100 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:02:50.101 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:02:50.795 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:02:50.795 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:02:52.339 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:02:52.340 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5aa27f3f]
- 2023-11-09 11:02:52.340 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:02:52.340 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@7b421c24]
- 2023-11-09 11:02:52.341 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:02:52.341 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:12:21.427 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-log/list", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:12:21.427 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationLogController.list(java.lang.Integer,java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:12:21.428 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:12:21.428 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20, 0]
- 2023-11-09 11:12:21.429 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-log/list, 参数: [1, 20, 0]
- 2023-11-09 11:12:21.429 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:12:21.429 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@495f4c53] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:12:21.446 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1003397654 wrapping com.mysql.cj.jdbc.ConnectionImpl@3d79aed4] will not be managed by Spring
- 2023-11-09 11:12:21.447 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC ) TOTAL
- 2023-11-09 11:12:21.447 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:12:21.463 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:12:21.464 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:12:21.480 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:12:21.480 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@495f4c53]
- 2023-11-09 11:12:21.480 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:12:21.481 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@d4f8443]
- 2023-11-09 11:12:21.481 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:12:21.481 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:14:45.008 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:14:45.008 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 11:14:45.008 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:14:45.009 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 11:14:45.010 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.010 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@182ad477] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.027 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@72032723 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.027 [http-nio-10018-exec-2] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 11:14:45.028 [http-nio-10018-exec-2] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 11:14:45.058 [http-nio-10018-exec-2] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:14:45.058 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@182ad477]
- 2023-11-09 11:14:45.059 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.059 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@336847ed] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.060 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1852882410 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.061 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 11:14:45.061 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:14:45.076 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 11:14:45.076 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@336847ed]
- 2023-11-09 11:14:45.077 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.077 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@12dda490] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.077 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1677450761 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.078 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 11:14:45.078 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:14:45.094 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:14:45.095 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@12dda490]
- 2023-11-09 11:14:45.095 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.095 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5c3c4c53] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.096 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@591043168 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.096 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 11:14:45.097 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:14:45.111 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:14:45.112 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5c3c4c53]
- 2023-11-09 11:14:45.112 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.112 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6bf5b410] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.112 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1427448809 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.113 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 11:14:45.113 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:14:45.129 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:14:45.129 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6bf5b410]
- 2023-11-09 11:14:45.129 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.129 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1af6f713] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.130 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1711314383 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.131 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 11:14:45.131 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:14:45.146 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 11:14:45.146 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1af6f713]
- 2023-11-09 11:14:45.146 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.147 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@f52d013] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.147 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@399162068 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.148 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 11:14:45.148 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 11:14:45.165 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 11:14:45.165 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@f52d013]
- 2023-11-09 11:14:45.166 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.166 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@175c5ae7] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.166 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@236442199 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.167 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 11:14:45.167 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:14:45.182 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 11:14:45.182 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@175c5ae7]
- 2023-11-09 11:14:45.182 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.183 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@32b39c73] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.183 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@217439793 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.184 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 11:14:45.184 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 11:14:45.202 [http-nio-10018-exec-2] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 11:14:45.202 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@32b39c73]
- 2023-11-09 11:14:45.203 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:14:45.203 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@132672e7]
- 2023-11-09 11:14:45.208 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:14:45.208 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:14:45.500 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:14:45.501 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:14:45.501 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:14:45.501 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:14:45.502 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:14:45.502 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:14:45.502 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:14:45.502 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41fd083c] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:14:45.503 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1928029052 wrapping com.mysql.cj.jdbc.ConnectionImpl@4a8cc441] will not be managed by Spring
- 2023-11-09 11:14:45.505 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:14:45.506 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:14:46.201 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:14:46.202 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:14:47.737 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:14:47.737 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41fd083c]
- 2023-11-09 11:14:47.738 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:14:47.739 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@163daef]
- 2023-11-09 11:14:47.740 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:14:47.740 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:08.703 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-log/list", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:08.703 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationLogController.list(java.lang.Integer,java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:15:08.704 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:08.704 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20, 0]
- 2023-11-09 11:15:08.705 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-log/list, 参数: [1, 20, 0]
- 2023-11-09 11:15:08.705 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:08.705 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2c64751b] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:08.722 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1648670387 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:08.723 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC ) TOTAL
- 2023-11-09 11:15:08.723 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:15:08.737 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:15:08.737 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:15:08.752 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:15:08.753 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2c64751b]
- 2023-11-09 11:15:08.753 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:08.753 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2fd67dc4]
- 2023-11-09 11:15:08.754 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:08.754 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:13.190 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-record/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:13.191 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationRecordController.getList(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String)
- 2023-11-09 11:15:13.191 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 11:15:13.192 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-record/getList, 参数: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 11:15:13.192 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:13.192 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@607aea81] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:13.207 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@425370501 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:13.208 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company
- 2023-11-09 11:15:13.208 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters:
- 2023-11-09 11:15:13.575 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 4278
- 2023-11-09 11:15:13.575 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@607aea81]
- 2023-11-09 11:15:13.575 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:13.576 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2546a655] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:13.576 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2027662524 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:13.578 [http-nio-10018-exec-5] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC ) TOTAL
- 2023-11-09 11:15:13.578 [http-nio-10018-exec-5] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String)
- 2023-11-09 11:15:13.627 [http-nio-10018-exec-5] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC LIMIT ?,?
- 2023-11-09 11:15:13.628 [http-nio-10018-exec-5] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String), 0(Long), 20(Long)
- 2023-11-09 11:15:13.677 [http-nio-10018-exec-5] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 3
- 2023-11-09 11:15:13.678 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2546a655]
- 2023-11-09 11:15:13.679 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:13.679 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4dc095b1]
- 2023-11-09 11:15:13.680 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:13.681 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:16.360 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-record/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:16.360 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationRecordController.getList(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String)
- 2023-11-09 11:15:16.361 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 11:15:16.361 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-record/getList, 参数: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 11:15:16.361 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:16.361 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@50d4e2f5] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:16.377 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1316277653 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:16.378 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company
- 2023-11-09 11:15:16.379 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters:
- 2023-11-09 11:15:16.623 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 4278
- 2023-11-09 11:15:16.624 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@50d4e2f5]
- 2023-11-09 11:15:16.624 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:16.625 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@73c373e] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:16.626 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@237951403 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:16.627 [http-nio-10018-exec-6] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC ) TOTAL
- 2023-11-09 11:15:16.628 [http-nio-10018-exec-6] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String)
- 2023-11-09 11:15:16.673 [http-nio-10018-exec-6] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC LIMIT ?,?
- 2023-11-09 11:15:16.674 [http-nio-10018-exec-6] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String), 0(Long), 20(Long)
- 2023-11-09 11:15:16.721 [http-nio-10018-exec-6] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 3
- 2023-11-09 11:15:16.722 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@73c373e]
- 2023-11-09 11:15:16.722 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:16.723 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@3504cde0]
- 2023-11-09 11:15:16.723 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:16.723 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:20.462 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:20.463 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:15:20.463 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:20.464 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:15:20.464 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:15:20.465 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:20.465 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@50260592] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:20.480 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@169715913 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:20.481 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:15:20.481 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:15:20.496 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:15:20.496 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:15:20.512 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:15:20.512 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@50260592]
- 2023-11-09 11:15:20.513 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:20.513 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e532ac9] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:20.514 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@703563818 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:20.514 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:20.514 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:15:20.534 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:15:20.535 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e532ac9]
- 2023-11-09 11:15:20.535 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:20.535 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@64fa1511] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:20.536 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1884584074 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:20.536 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:20.536 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:15:20.552 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:15:20.553 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@64fa1511]
- 2023-11-09 11:15:20.553 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:20.553 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@75b43837] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:20.555 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1104345357 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:20.555 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:20.556 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:15:20.571 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:15:20.572 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@75b43837]
- 2023-11-09 11:15:20.572 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:20.573 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1df1ac84] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:20.574 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1229998733 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:20.575 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:15:20.576 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:15:20.592 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:15:20.592 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1df1ac84]
- 2023-11-09 11:15:20.593 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:20.593 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@759e7bc]
- 2023-11-09 11:15:20.595 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:20.595 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:23.252 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:23.253 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:15:23.253 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:23.253 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, true, 1, 20, 0, false]
- 2023-11-09 11:15:23.253 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, true, 1, 20, 0, false]
- 2023-11-09 11:15:23.254 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:23.254 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@45457c39] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:23.268 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@978609048 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:23.272 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE set_meal = ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:15:23.272 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:15:23.288 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE set_meal = ? ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:15:23.288 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 1(Integer), 0(Long), 20(Long)
- 2023-11-09 11:15:23.305 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:15:23.305 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@45457c39]
- 2023-11-09 11:15:23.306 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:23.306 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2554c169] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:23.307 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1469885107 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:23.307 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:23.308 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:15:23.327 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 17
- 2023-11-09 11:15:23.328 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2554c169]
- 2023-11-09 11:15:23.328 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:23.328 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@42ae1da8] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:23.329 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1884683900 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:23.329 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:23.330 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:15:23.343 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:15:23.344 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@42ae1da8]
- 2023-11-09 11:15:23.344 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:23.345 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3a43b3a4] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:23.345 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@145930777 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:23.346 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:23.346 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:15:23.360 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:15:23.361 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3a43b3a4]
- 2023-11-09 11:15:23.361 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:23.361 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5316845e] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:23.362 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1953485579 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:23.362 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:15:23.363 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer), 1(Integer)
- 2023-11-09 11:15:23.380 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:15:23.380 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5316845e]
- 2023-11-09 11:15:23.381 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:23.381 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@66cfebd9]
- 2023-11-09 11:15:23.381 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:23.382 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:24.236 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:24.236 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:15:24.236 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:24.237 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 1, false]
- 2023-11-09 11:15:24.237 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 1, false]
- 2023-11-09 11:15:24.238 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:24.238 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@69eb8c01] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:24.254 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1835900944 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:24.257 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:15:24.625 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime)
- 2023-11-09 11:15:24.641 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC LIMIT ?,?
- 2023-11-09 11:15:24.641 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime), 0(Long), 20(Long)
- 2023-11-09 11:15:24.659 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:15:24.660 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@69eb8c01]
- 2023-11-09 11:15:24.660 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:24.660 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@19a595b0] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:24.662 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1708603895 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:24.663 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:24.663 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:15:24.680 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 19
- 2023-11-09 11:15:24.681 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@19a595b0]
- 2023-11-09 11:15:24.681 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:24.681 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@507b1ef7] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:24.683 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@205491598 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:24.683 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:24.684 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:15:24.698 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:15:24.698 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@507b1ef7]
- 2023-11-09 11:15:24.698 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:24.698 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@ba1a4c] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:24.700 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@146677770 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:24.700 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:15:24.701 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:15:24.715 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:15:24.715 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@ba1a4c]
- 2023-11-09 11:15:24.716 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:24.716 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1e9f8a50] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:24.718 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1319607221 wrapping com.mysql.cj.jdbc.ConnectionImpl@217a9dc5] will not be managed by Spring
- 2023-11-09 11:15:24.719 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:15:24.719 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer), 1(Integer)
- 2023-11-09 11:15:24.736 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:15:24.736 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1e9f8a50]
- 2023-11-09 11:15:24.737 [http-nio-10018-exec-9] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:24.737 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2392d376]
- 2023-11-09 11:15:24.738 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:24.738 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:39.607 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:39.608 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 11:15:39.608 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:39.609 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1241]
- 2023-11-09 11:15:39.609 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [1241]
- 2023-11-09 11:15:39.612 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:39.612 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@62cb3985] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:39.626 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1899624121 wrapping com.mysql.cj.jdbc.ConnectionImpl@1af16786] will not be managed by Spring
- 2023-11-09 11:15:39.626 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 11:15:39.627 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 1241(Integer)
- 2023-11-09 11:15:39.642 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:15:39.642 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@62cb3985]
- 2023-11-09 11:15:39.642 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:39.643 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4187d6d1]
- 2023-11-09 11:15:39.643 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:39.643 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:49.602 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:49.603 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 11:15:49.603 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:49.603 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1241]
- 2023-11-09 11:15:49.604 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [1241]
- 2023-11-09 11:15:49.604 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:49.604 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@398b45a6] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:49.618 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1895844414 wrapping com.mysql.cj.jdbc.ConnectionImpl@1af16786] will not be managed by Spring
- 2023-11-09 11:15:49.619 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 11:15:49.619 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 1241(Integer)
- 2023-11-09 11:15:49.633 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:15:49.634 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@398b45a6]
- 2023-11-09 11:15:49.634 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:49.635 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@63596611]
- 2023-11-09 11:15:49.636 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:49.636 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:53.930 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-report/list", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:53.931 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyReportController.list(java.lang.Integer)
- 2023-11-09 11:15:53.931 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:53.932 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1241]
- 2023-11-09 11:15:53.932 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/permission/getRoleList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:15:53.933 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-report/list, 参数: [1241]
- 2023-11-09 11:15:53.933 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.PermissionController.getRoleList(java.lang.Integer)
- 2023-11-09 11:15:53.933 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:15:53.933 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1241]
- 2023-11-09 11:15:53.934 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/permission/getRoleList, 参数: [1241]
- 2023-11-09 11:15:53.943 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:53.943 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1ad59c44] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:53.957 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1200260712 wrapping com.mysql.cj.jdbc.ConnectionImpl@1af16786] will not be managed by Spring
- 2023-11-09 11:15:53.958 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT company_id,report_form_id FROM company_report WHERE company_id = ?
- 2023-11-09 11:15:53.958 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 1241(Integer)
- 2023-11-09 11:15:53.978 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:15:53.978 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1ad59c44]
- 2023-11-09 11:15:53.979 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-report/list, 参数: []
- 2023-11-09 11:15:54.130 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:54.130 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3790082c] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:15:54.147 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1068508667 wrapping com.mysql.cj.jdbc.ConnectionImpl@8569b49] will not be managed by Spring
- 2023-11-09 11:15:54.148 [http-nio-10018-exec-2] DEBUG c.m.p.m.R.selectList - [debug,143] - ==> Preparing: SELECT id,report_form_name FROM report_form
- 2023-11-09 11:15:54.148 [http-nio-10018-exec-2] DEBUG c.m.p.m.R.selectList - [debug,143] - ==> Parameters:
- 2023-11-09 11:15:54.151 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/permission/getRoleList, 参数: [1241]
- 2023-11-09 11:15:54.156 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:15:54.156 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Registering transaction synchronization for SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a9805d6]
- 2023-11-09 11:15:54.158 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1874922452 wrapping com.mysql.cj.jdbc.ConnectionImpl@1af16786] will be managed by Spring
- 2023-11-09 11:15:54.159 [http-nio-10018-exec-3] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,company_id,rolename,role_describe,parent_role,is_default FROM sys_role WHERE company_id = ?
- 2023-11-09 11:15:54.159 [http-nio-10018-exec-3] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1241(Integer)
- 2023-11-09 11:15:54.164 [http-nio-10018-exec-2] DEBUG c.m.p.m.R.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:15:54.165 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3790082c]
- 2023-11-09 11:15:54.166 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:54.167 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@51ad68dd]
- 2023-11-09 11:15:54.168 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:54.169 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:15:54.181 [http-nio-10018-exec-3] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 7
- 2023-11-09 11:15:54.182 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Releasing transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a9805d6]
- 2023-11-09 11:15:54.183 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Transaction synchronization committing SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a9805d6]
- 2023-11-09 11:15:54.183 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Transaction synchronization deregistering SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a9805d6]
- 2023-11-09 11:15:54.184 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Transaction synchronization closing SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a9805d6]
- 2023-11-09 11:15:54.224 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:15:54.224 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2e98c367]
- 2023-11-09 11:15:54.226 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:15:54.226 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:02.063 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:02.063 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:16:02.063 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:02.063 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:16:02.064 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:16:02.064 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:02.064 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5a37494e] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:02.081 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1448754155 wrapping com.mysql.cj.jdbc.ConnectionImpl@8569b49] will not be managed by Spring
- 2023-11-09 11:16:02.081 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:16:02.082 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:16:02.099 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:16:02.099 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:16:02.114 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:16:02.114 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5a37494e]
- 2023-11-09 11:16:02.115 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:02.115 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@47f7cb1d] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:02.116 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1969913203 wrapping com.mysql.cj.jdbc.ConnectionImpl@8569b49] will not be managed by Spring
- 2023-11-09 11:16:02.116 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:02.117 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:16:02.134 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:16:02.134 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@47f7cb1d]
- 2023-11-09 11:16:02.135 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:02.135 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@65b413a1] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:02.135 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@484606761 wrapping com.mysql.cj.jdbc.ConnectionImpl@8569b49] will not be managed by Spring
- 2023-11-09 11:16:02.136 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:02.136 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:16:02.151 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:16:02.151 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@65b413a1]
- 2023-11-09 11:16:02.151 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:02.152 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2a5b0072] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:02.152 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1865885571 wrapping com.mysql.cj.jdbc.ConnectionImpl@8569b49] will not be managed by Spring
- 2023-11-09 11:16:02.153 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:02.153 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:16:02.167 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:16:02.167 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2a5b0072]
- 2023-11-09 11:16:02.167 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:02.168 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@72b58ea0] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:02.168 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@10442772 wrapping com.mysql.cj.jdbc.ConnectionImpl@8569b49] will not be managed by Spring
- 2023-11-09 11:16:02.169 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:16:02.169 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:16:02.184 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:16:02.184 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@72b58ea0]
- 2023-11-09 11:16:02.185 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:02.185 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@1195c4d6]
- 2023-11-09 11:16:02.185 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:02.186 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:12.814 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-signing/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:12.814 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanySigningController.getList(java.lang.Integer)
- 2023-11-09 11:16:12.814 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:12.815 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 11:16:12.815 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-signing/getList, 参数: [4370]
- 2023-11-09 11:16:12.817 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-signing/getList, 参数: [4370]
- 2023-11-09 11:16:12.821 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.822 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@68db7ef9] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.839 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@767355215 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.839 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 11:16:12.839 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 11:16:12.855 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:16:12.856 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@68db7ef9]
- 2023-11-09 11:16:12.856 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.857 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@398421c] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.858 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1235494321 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.858 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT company_id,version,contract_unit_price,contract_discount,billing_amount FROM company_signing WHERE company_id = ?
- 2023-11-09 11:16:12.859 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 11:16:12.876 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 0
- 2023-11-09 11:16:12.877 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@398421c]
- 2023-11-09 11:16:12.877 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:12.878 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@6426e80]
- 2023-11-09 11:16:12.879 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:12.879 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:12.891 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:12.892 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:16:12.892 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:12.893 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:16:12.894 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:16:12.894 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.894 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4d1fb96a] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.895 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1593706258 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.896 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:16:12.896 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:16:12.914 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:16:12.915 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:16:12.931 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:16:12.931 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4d1fb96a]
- 2023-11-09 11:16:12.932 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.932 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@12c174c4] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.933 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1017722649 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.933 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:12.934 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:16:12.952 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:16:12.953 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@12c174c4]
- 2023-11-09 11:16:12.953 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.953 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a87c442] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.954 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1937373826 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.954 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:12.955 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:16:12.972 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:16:12.973 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6a87c442]
- 2023-11-09 11:16:12.973 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.973 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@72ad6eb4] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.974 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@643563895 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.974 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:12.975 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:16:12.991 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:16:12.992 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@72ad6eb4]
- 2023-11-09 11:16:12.993 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:12.993 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@74ee5ed4] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:12.994 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1840207411 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:12.995 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:16:12.995 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:16:13.012 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:16:13.013 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@74ee5ed4]
- 2023-11-09 11:16:13.013 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:13.013 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5b151919]
- 2023-11-09 11:16:13.014 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:13.014 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:15.684 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/detail", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:15.685 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 11:16:15.685 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:15.685 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 11:16:15.685 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 11:16:15.689 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 11:16:15.693 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:15.694 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@17dcee5f] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:15.709 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@632757410 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:15.710 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:16:15.710 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 11:16:15.728 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:16:15.728 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@17dcee5f]
- 2023-11-09 11:16:15.729 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:15.729 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@1d45ce55]
- 2023-11-09 11:16:15.730 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:15.731 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:25.638 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/detail", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:25.638 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 11:16:25.638 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:25.639 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 11:16:25.639 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 11:16:25.639 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 11:16:25.639 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:25.640 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@19cb72a] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:25.656 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1693552829 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:25.656 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:16:25.656 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 11:16:25.673 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:16:25.674 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@19cb72a]
- 2023-11-09 11:16:25.674 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:25.674 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@19b8f3ab]
- 2023-11-09 11:16:25.675 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:25.675 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:30.034 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/preview", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:30.034 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public void com.management.platform.controller.ContractDetailController.preview(javax.servlet.http.HttpServletResponse,java.lang.Integer)
- 2023-11-09 11:16:30.034 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:30.035 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [org.apache.catalina.connector.ResponseFacade@41bd005e, 4370]
- 2023-11-09 11:16:30.035 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/preview, 参数: [org.apache.catalina.connector.ResponseFacade@41bd005e, 4370]
- 2023-11-09 11:16:30.036 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:30.036 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@33b541ef] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:30.051 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@859617747 wrapping com.mysql.cj.jdbc.ConnectionImpl@64189c54] will not be managed by Spring
- 2023-11-09 11:16:30.052 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:16:30.052 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 11:16:30.068 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:16:30.068 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@33b541ef]
- 2023-11-09 11:16:30.069 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:30.069 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 11:16:49.922 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:49.922 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:16:49.922 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:49.923 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, true, 1, 20, 0, false]
- 2023-11-09 11:16:49.923 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, true, 1, 20, 0, false]
- 2023-11-09 11:16:49.923 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:49.923 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7fb56c66] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:49.940 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@620505538 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:49.941 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE set_meal = ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:16:49.941 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:16:49.956 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE set_meal = ? ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:16:49.956 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 1(Integer), 0(Long), 20(Long)
- 2023-11-09 11:16:49.972 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:16:49.973 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7fb56c66]
- 2023-11-09 11:16:49.973 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:49.973 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6b450ef5] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:49.974 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@573109645 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:49.974 [http-nio-10018-exec-10] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:49.975 [http-nio-10018-exec-10] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:16:49.992 [http-nio-10018-exec-10] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 17
- 2023-11-09 11:16:49.992 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6b450ef5]
- 2023-11-09 11:16:49.993 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:49.993 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@11038f8c] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:49.993 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1391593983 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:49.994 [http-nio-10018-exec-10] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:49.994 [http-nio-10018-exec-10] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:16:50.008 [http-nio-10018-exec-10] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:16:50.008 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@11038f8c]
- 2023-11-09 11:16:50.009 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:50.009 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@73a924f0] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:50.009 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2119940838 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:50.010 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:16:50.010 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:16:50.024 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:16:50.024 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@73a924f0]
- 2023-11-09 11:16:50.025 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:50.025 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@134d3a84] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:50.025 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@704189113 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:50.026 [http-nio-10018-exec-10] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:16:50.026 [http-nio-10018-exec-10] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer), 1(Integer)
- 2023-11-09 11:16:50.041 [http-nio-10018-exec-10] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:16:50.041 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@134d3a84]
- 2023-11-09 11:16:50.041 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:50.042 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@11208c72]
- 2023-11-09 11:16:50.042 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:50.042 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:51.383 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/detail", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:51.383 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 11:16:51.383 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:51.383 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [3918]
- 2023-11-09 11:16:51.383 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [3918]
- 2023-11-09 11:16:51.384 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [3918]
- 2023-11-09 11:16:51.384 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:51.384 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@29c86942] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:51.399 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@402424774 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:51.400 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:16:51.400 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 3918(Integer)
- 2023-11-09 11:16:51.415 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:16:51.415 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@29c86942]
- 2023-11-09 11:16:51.416 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:16:51.416 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@734fdf20]
- 2023-11-09 11:16:51.416 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:51.416 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:16:52.744 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/preview", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:16:52.744 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public void com.management.platform.controller.ContractDetailController.preview(javax.servlet.http.HttpServletResponse,java.lang.Integer)
- 2023-11-09 11:16:52.745 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:16:52.745 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [org.apache.catalina.connector.ResponseFacade@41bd005e, 3918]
- 2023-11-09 11:16:52.745 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/preview, 参数: [org.apache.catalina.connector.ResponseFacade@41bd005e, 3918]
- 2023-11-09 11:16:52.745 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:16:52.746 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@71fca400] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:16:52.761 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@558170229 wrapping com.mysql.cj.jdbc.ConnectionImpl@5bb252d2] will not be managed by Spring
- 2023-11-09 11:16:52.761 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:16:52.762 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 3918(Integer)
- 2023-11-09 11:16:52.777 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:16:52.778 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@71fca400]
- 2023-11-09 11:16:52.778 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:16:52.778 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 11:17:17.497 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/detail", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:17:17.498 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 11:17:17.498 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:17:17.498 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [3918]
- 2023-11-09 11:17:17.498 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [3918]
- 2023-11-09 11:17:17.499 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [3918]
- 2023-11-09 11:17:17.499 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:17.499 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2b4458b1] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:17.516 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1309798917 wrapping com.mysql.cj.jdbc.ConnectionImpl@26fa935b] will not be managed by Spring
- 2023-11-09 11:17:17.516 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:17:17.517 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 3918(Integer)
- 2023-11-09 11:17:17.533 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:17:17.533 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2b4458b1]
- 2023-11-09 11:17:17.533 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:17:17.534 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5e5b8ef0]
- 2023-11-09 11:17:17.534 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:17:17.535 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:17:27.592 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - GET "/contract-detail/detail", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:17:27.593 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 11:17:27.593 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [null]
- 2023-11-09 11:17:27.593 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [null]
- 2023-11-09 11:17:27.594 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [null]
- 2023-11-09 11:17:27.594 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:27.594 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4f0b88ca] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:27.611 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1892459389 wrapping com.mysql.cj.jdbc.ConnectionImpl@26fa935b] will not be managed by Spring
- 2023-11-09 11:17:27.611 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 11:17:27.612 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: null
- 2023-11-09 11:17:27.628 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 11:17:27.629 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4f0b88ca]
- 2023-11-09 11:17:27.630 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json]
- 2023-11-09 11:17:27.630 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5c9ee62c]
- 2023-11-09 11:17:27.631 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:17:27.631 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:17:51.723 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:17:51.723 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:17:51.723 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:17:51.724 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 1, false]
- 2023-11-09 11:17:51.724 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 1, false]
- 2023-11-09 11:17:51.724 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:51.724 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@470b54f6] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:52.079 [http-nio-10018-exec-5] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@36344836 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:17:52.095 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@331312732 wrapping com.mysql.cj.jdbc.ConnectionImpl@75ee1e5] will not be managed by Spring
- 2023-11-09 11:17:52.096 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:17:52.096 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime)
- 2023-11-09 11:17:52.110 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC LIMIT ?,?
- 2023-11-09 11:17:52.111 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime), 0(Long), 20(Long)
- 2023-11-09 11:17:52.132 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:17:52.132 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@470b54f6]
- 2023-11-09 11:17:52.133 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:52.133 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@599f9644] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:52.134 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@700323163 wrapping com.mysql.cj.jdbc.ConnectionImpl@75ee1e5] will not be managed by Spring
- 2023-11-09 11:17:52.134 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:17:52.134 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:17:52.154 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 19
- 2023-11-09 11:17:52.154 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@599f9644]
- 2023-11-09 11:17:52.155 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:52.155 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1c99cb02] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:52.155 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@965821283 wrapping com.mysql.cj.jdbc.ConnectionImpl@75ee1e5] will not be managed by Spring
- 2023-11-09 11:17:52.156 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:17:52.156 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:17:52.170 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:17:52.171 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1c99cb02]
- 2023-11-09 11:17:52.171 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:52.171 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@52f7a86f] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:52.172 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@6600936 wrapping com.mysql.cj.jdbc.ConnectionImpl@75ee1e5] will not be managed by Spring
- 2023-11-09 11:17:52.172 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:17:52.172 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:17:52.186 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:17:52.187 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@52f7a86f]
- 2023-11-09 11:17:52.187 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:17:52.187 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@376b68d5] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:17:52.188 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1479543431 wrapping com.mysql.cj.jdbc.ConnectionImpl@75ee1e5] will not be managed by Spring
- 2023-11-09 11:17:52.188 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:17:52.189 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer), 1(Integer)
- 2023-11-09 11:17:52.206 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:17:52.207 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@376b68d5]
- 2023-11-09 11:17:52.207 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:17:52.208 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@25fd4f72]
- 2023-11-09 11:17:52.210 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:17:52.210 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:33:34.151 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:33:34.152 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:33:34.152 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:33:34.153 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:33:34.153 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:33:34.154 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:34.154 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1c805e16] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:34.170 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1076340479 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:34.172 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:33:34.173 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:33:34.189 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:33:34.190 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:33:34.205 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:33:34.206 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1c805e16]
- 2023-11-09 11:33:34.206 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:34.207 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6bdf2eb3] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:34.207 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@343605451 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:34.208 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:33:34.208 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:33:34.226 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:33:34.226 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6bdf2eb3]
- 2023-11-09 11:33:34.227 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:34.227 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@493c541] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:34.227 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@380361174 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:34.228 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:33:34.228 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:33:34.242 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:33:34.242 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@493c541]
- 2023-11-09 11:33:34.243 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:34.243 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4a277399] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:34.244 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1342443089 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:34.244 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:33:34.245 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:33:34.257 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:33:34.258 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4a277399]
- 2023-11-09 11:33:34.258 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:34.258 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@154a1b05] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:34.259 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1686112654 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:34.259 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:33:34.260 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:33:34.274 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:33:34.275 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@154a1b05]
- 2023-11-09 11:33:34.275 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:33:34.275 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4438e1cf]
- 2023-11-09 11:33:34.277 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:33:34.277 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:33:43.982 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:33:43.982 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:33:43.982 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:33:43.983 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:33:43.983 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:33:43.983 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:43.984 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3096089] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:43.999 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1429555357 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:44.000 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:33:44.001 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:33:44.015 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:33:44.016 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:33:44.032 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:33:44.033 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3096089]
- 2023-11-09 11:33:44.033 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:44.033 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5f515ec6] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:44.035 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@551519249 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:44.035 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:33:44.036 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:33:44.053 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:33:44.054 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5f515ec6]
- 2023-11-09 11:33:44.054 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:44.054 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41ce1b87] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:44.055 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@347920918 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:44.056 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:33:44.056 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:33:44.073 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:33:44.074 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41ce1b87]
- 2023-11-09 11:33:44.074 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:44.075 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@50607310] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:44.076 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@692217921 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:44.077 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:33:44.078 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:33:44.092 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:33:44.093 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@50607310]
- 2023-11-09 11:33:44.093 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:33:44.093 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@61b4841d] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:33:44.094 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@849314760 wrapping com.mysql.cj.jdbc.ConnectionImpl@1edc20fb] will not be managed by Spring
- 2023-11-09 11:33:44.095 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:33:44.096 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:33:44.110 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:33:44.111 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@61b4841d]
- 2023-11-09 11:33:44.112 [http-nio-10018-exec-9] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:33:44.112 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5c7ef2b]
- 2023-11-09 11:33:44.113 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:33:44.113 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:35:02.993 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:35:02.993 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:35:02.993 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:35:02.994 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 0, false]
- 2023-11-09 11:35:02.994 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 0, false]
- 2023-11-09 11:35:02.995 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:35:02.995 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@257b665a] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:35:03.353 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@239514778 wrapping com.mysql.cj.jdbc.ConnectionImpl@59207095] will not be managed by Spring
- 2023-11-09 11:35:03.355 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:35:03.356 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String)
- 2023-11-09 11:35:03.373 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@257b665a]
- 2023-11-09 11:35:03.374 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:35:03.374 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@39ec1005]
- 2023-11-09 11:35:03.375 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:35:03.376 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:35:18.137 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:35:18.138 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:35:18.138 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:35:18.139 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, true, 1, 20, 0, false]
- 2023-11-09 11:35:18.139 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, true, 1, 20, 0, false]
- 2023-11-09 11:35:18.140 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:35:18.140 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@24bb0164] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:35:18.155 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@154198043 wrapping com.mysql.cj.jdbc.ConnectionImpl@48b88c2] will not be managed by Spring
- 2023-11-09 11:35:18.156 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? AND set_meal = ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:35:18.157 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String), 1(Integer)
- 2023-11-09 11:35:18.171 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@24bb0164]
- 2023-11-09 11:35:18.172 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:35:18.172 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@73727b76]
- 2023-11-09 11:35:18.173 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:35:18.173 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:35:26.975 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:35:26.976 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:35:26.976 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:35:26.976 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 1, false]
- 2023-11-09 11:35:26.976 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 1, false]
- 2023-11-09 11:35:26.977 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:35:26.977 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@10b4e658] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:35:26.991 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@965851627 wrapping com.mysql.cj.jdbc.ConnectionImpl@48b88c2] will not be managed by Spring
- 2023-11-09 11:35:26.992 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? AND expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:35:26.992 [http-nio-10018-exec-2] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String), 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime)
- 2023-11-09 11:35:27.008 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@10b4e658]
- 2023-11-09 11:35:27.008 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:35:27.008 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@6ecf8ced]
- 2023-11-09 11:35:27.009 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:35:27.009 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:35:54.316 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:35:54.316 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:35:54.316 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:35:54.317 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 1, true]
- 2023-11-09 11:35:54.317 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 1, true]
- 2023-11-09 11:35:54.317 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:35:54.317 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1f9bdee4] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:35:54.321 [http-nio-10018-exec-3] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@6d89f607 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:35:54.324 [http-nio-10018-exec-3] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@56db78dd (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:35:54.342 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@896337211 wrapping com.mysql.cj.jdbc.ConnectionImpl@4b634b13] will not be managed by Spring
- 2023-11-09 11:35:54.343 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? AND expiration_date BETWEEN ? AND ? AND set_meal = ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:35:54.344 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String), 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime), 1(Integer)
- 2023-11-09 11:35:54.362 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1f9bdee4]
- 2023-11-09 11:35:54.363 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:35:54.363 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@66a5a1f0]
- 2023-11-09 11:35:54.363 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:35:54.363 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:36:08.089 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:36:08.089 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:36:08.089 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:36:08.090 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 1, false]
- 2023-11-09 11:36:08.090 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 1, false]
- 2023-11-09 11:36:08.091 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:36:08.091 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@d807448] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:36:08.109 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1792936165 wrapping com.mysql.cj.jdbc.ConnectionImpl@4b634b13] will not be managed by Spring
- 2023-11-09 11:36:08.110 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? AND expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:36:08.110 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String), 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime)
- 2023-11-09 11:36:08.128 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@d807448]
- 2023-11-09 11:36:08.129 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:36:08.129 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@6be45dd6]
- 2023-11-09 11:36:08.129 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:36:08.130 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:36:09.539 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:36:09.539 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:36:09.539 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:36:09.539 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 0, false]
- 2023-11-09 11:36:09.539 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 0, false]
- 2023-11-09 11:36:09.540 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:36:09.540 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2e41dd7a] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:36:09.556 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1540234951 wrapping com.mysql.cj.jdbc.ConnectionImpl@4b634b13] will not be managed by Spring
- 2023-11-09 11:36:09.557 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:36:09.558 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String)
- 2023-11-09 11:36:09.576 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2e41dd7a]
- 2023-11-09 11:36:09.577 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:36:09.577 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@3758890b]
- 2023-11-09 11:36:09.577 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:36:09.577 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:36:12.544 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:36:12.544 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:36:12.544 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:36:12.544 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 1, false]
- 2023-11-09 11:36:12.545 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 1, false]
- 2023-11-09 11:36:12.545 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:36:12.545 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5d8be451] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:36:12.562 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@340318192 wrapping com.mysql.cj.jdbc.ConnectionImpl@4b634b13] will not be managed by Spring
- 2023-11-09 11:36:12.563 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? AND expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:36:12.563 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String), 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime)
- 2023-11-09 11:36:12.582 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5d8be451]
- 2023-11-09 11:36:12.582 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:36:12.582 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@3e6ca113]
- 2023-11-09 11:36:12.583 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:36:12.583 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:36:17.625 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:36:17.626 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:36:17.626 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:36:17.626 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [吊袜带, false, 1, 20, 0, false]
- 2023-11-09 11:36:17.627 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [吊袜带, false, 1, 20, 0, false]
- 2023-11-09 11:36:17.627 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:36:17.627 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5f448c74] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:36:17.630 [http-nio-10018-exec-7] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@428bc932 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:36:17.632 [http-nio-10018-exec-7] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@747b84cf (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:36:17.650 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1017370820 wrapping com.mysql.cj.jdbc.ConnectionImpl@207d443b] will not be managed by Spring
- 2023-11-09 11:36:17.651 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE company_name LIKE ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:36:17.651 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: %吊袜带%(String)
- 2023-11-09 11:36:17.669 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5f448c74]
- 2023-11-09 11:36:17.670 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:36:17.670 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@31159726]
- 2023-11-09 11:36:17.670 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:36:17.670 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:37:34.090 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:37:34.090 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:37:34.091 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:37:34.092 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:37:34.092 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:37:34.092 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:37:34.092 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:37:34.092 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@16f487e] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:37:34.108 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1179411560 wrapping com.mysql.cj.jdbc.ConnectionImpl@45f9c3f7] will not be managed by Spring
- 2023-11-09 11:37:34.109 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:37:34.109 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:37:34.871 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:37:34.871 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:37:36.360 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:37:36.361 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@16f487e]
- 2023-11-09 11:37:36.361 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:37:36.361 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4114e8e5]
- 2023-11-09 11:37:36.362 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:37:36.362 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:38:27.161 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - GET "/common/downLoadLog", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:27.161 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public org.springframework.http.ResponseEntity<byte[]> com.management.platform.controller.CommonUploadController.downLoadLog() throws java.io.IOException
- 2023-11-09 11:38:27.162 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: []
- 2023-11-09 11:38:27.162 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/common/downLoadLog, 参数: []
- 2023-11-09 11:38:27.162 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,74] - ***************抛出异常***************
- 2023-11-09 11:38:27.163 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,75] - 请求类方法:downLoadLog
- 2023-11-09 11:38:27.163 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,76] - 异常内容:java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- 2023-11-09 11:38:27.163 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [logThrowing,77] - ***************抛出异常***************
- 2023-11-09 11:38:27.163 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [logResult,1098] - Failed to complete request
- java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
- at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
- at java.nio.file.Files.newByteChannel(Files.java:361)
- at java.nio.file.Files.newByteChannel(Files.java:407)
- at java.nio.file.Files.readAllBytes(Files.java:3152)
- at com.management.platform.controller.CommonUploadController.downLoadLog(CommonUploadController.java:98)
- at com.management.platform.controller.CommonUploadController$$FastClassBySpringCGLIB$$8a547e5d.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:55)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
- at com.management.platform.controller.CommonUploadController$$EnhancerBySpringCGLIB$$c713fa1b.downLoadLog(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:893)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:798)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:114)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:104)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:526)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1591)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Thread.java:745)
- 2023-11-09 11:38:27.164 [http-nio-10018-exec-9] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - [log,175] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
- java.nio.file.NoSuchFileException: C:\upload\wt_print.log
- at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
- at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
- at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
- at java.nio.file.Files.newByteChannel(Files.java:361)
- at java.nio.file.Files.newByteChannel(Files.java:407)
- at java.nio.file.Files.readAllBytes(Files.java:3152)
- at com.management.platform.controller.CommonUploadController.downLoadLog(CommonUploadController.java:98)
- at com.management.platform.controller.CommonUploadController$$FastClassBySpringCGLIB$$8a547e5d.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:750)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:55)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:62)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
- at com.management.platform.controller.CommonUploadController$$EnhancerBySpringCGLIB$$c713fa1b.downLoadLog(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:893)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:798)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:114)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:104)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:526)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1591)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
- at java.lang.Thread.run(Thread.java:745)
- 2023-11-09 11:38:27.165 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - "ERROR" dispatch for GET "/error", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:27.165 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [lookupHandlerMethod,401] - 2 matching mappings: [{ /error, produces [text/html]}, { /error}]
- 2023-11-09 11:38:27.166 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
- 2023-11-09 11:38:27.166 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [org.apache.catalina.core.ApplicationHttpRequest@409607e2, org.apache.catalina.connector.ResponseFacade@41bd005e]
- 2023-11-09 11:38:27.170 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [render,1366] - Rendering view [org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$StaticView@64f32e9e]
- 2023-11-09 11:38:27.170 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1127] - Exiting from "ERROR" dispatch, status 500, headers={}
- 2023-11-09 11:38:38.978 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:38.978 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 11:38:38.978 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:38:38.979 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 11:38:38.979 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:38.979 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5e45c94] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:38.981 [http-nio-10018-exec-10] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2c6ece0 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:38:38.984 [http-nio-10018-exec-10] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2b1085db (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:38:38.985 [http-nio-10018-exec-10] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@c377cd1 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:38:39.178 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@958607451 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.179 [http-nio-10018-exec-10] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 11:38:39.179 [http-nio-10018-exec-10] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 11:38:39.210 [http-nio-10018-exec-10] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:38:39.210 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5e45c94]
- 2023-11-09 11:38:39.210 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.211 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d506343] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.211 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1565603162 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.212 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 11:38:39.212 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:38:39.226 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 11:38:39.227 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d506343]
- 2023-11-09 11:38:39.227 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.227 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@791da918] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.227 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@120166147 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.228 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 11:38:39.228 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:38:39.244 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:38:39.244 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@791da918]
- 2023-11-09 11:38:39.244 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.245 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7b25ad2] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.245 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@326329941 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.245 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 11:38:39.245 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:38:39.259 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:38:39.259 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7b25ad2]
- 2023-11-09 11:38:39.259 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.260 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3f027cba] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.260 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@720622914 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.260 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 11:38:39.260 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 11:38:39.275 [http-nio-10018-exec-10] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 11:38:39.276 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3f027cba]
- 2023-11-09 11:38:39.276 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.276 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@31d575b5] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.276 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@488519833 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.277 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 11:38:39.277 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:38:39.291 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 11:38:39.291 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@31d575b5]
- 2023-11-09 11:38:39.291 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.291 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@59c51363] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.292 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1126677811 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.292 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 11:38:39.293 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 11:38:39.307 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 11:38:39.308 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@59c51363]
- 2023-11-09 11:38:39.308 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.308 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1beb8b2e] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.309 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1791282491 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.309 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 11:38:39.310 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:38:39.324 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 11:38:39.324 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1beb8b2e]
- 2023-11-09 11:38:39.324 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.325 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@373f2eaa] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.325 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1883926936 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.326 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 11:38:39.326 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 11:38:39.345 [http-nio-10018-exec-10] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 11:38:39.345 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@373f2eaa]
- 2023-11-09 11:38:39.346 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:38:39.346 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@9b16cdc]
- 2023-11-09 11:38:39.347 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:38:39.347 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:38:39.633 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:39.633 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:38:39.634 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:38:39.634 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:38:39.634 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:38:39.634 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:38:39.634 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:39.636 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2be72042] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:39.636 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1797784449 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:39.636 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:38:39.637 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:38:40.346 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:38:40.346 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:38:41.887 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:38:41.887 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2be72042]
- 2023-11-09 11:38:41.887 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:38:41.887 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@7a302c2]
- 2023-11-09 11:38:41.888 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:38:41.888 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:38:45.250 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-log/list", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:45.251 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationLogController.list(java.lang.Integer,java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:38:45.251 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:38:45.252 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20, 0]
- 2023-11-09 11:38:45.252 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-log/list, 参数: [1, 20, 0]
- 2023-11-09 11:38:45.252 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:45.252 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2cda7fa0] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:45.266 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@811320012 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:45.267 [http-nio-10018-exec-2] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC ) TOTAL
- 2023-11-09 11:38:45.267 [http-nio-10018-exec-2] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:38:45.282 [http-nio-10018-exec-2] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:38:45.283 [http-nio-10018-exec-2] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:38:45.297 [http-nio-10018-exec-2] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:38:45.298 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2cda7fa0]
- 2023-11-09 11:38:45.298 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:38:45.299 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@433e8b96]
- 2023-11-09 11:38:45.299 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:38:45.300 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:38:46.581 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:46.581 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:38:46.581 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:38:46.582 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:38:46.582 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:38:46.582 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:38:46.582 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:46.582 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3b3c34c2] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:46.596 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@839156546 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:46.597 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:38:46.597 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:38:47.288 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:38:47.288 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:38:48.830 [http-nio-10018-exec-3] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:38:48.831 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3b3c34c2]
- 2023-11-09 11:38:48.831 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:38:48.831 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@7f74c5eb]
- 2023-11-09 11:38:48.832 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:38:48.832 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:38:50.587 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-record/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:50.587 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationRecordController.getList(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String)
- 2023-11-09 11:38:50.588 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 11:38:50.588 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-record/getList, 参数: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 11:38:50.588 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:50.589 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7be5c847] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:50.603 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1186024862 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:50.604 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company
- 2023-11-09 11:38:50.604 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters:
- 2023-11-09 11:38:50.924 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 4278
- 2023-11-09 11:38:50.925 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7be5c847]
- 2023-11-09 11:38:50.925 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:50.925 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5a00e42a] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:50.926 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@147054602 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:50.927 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC ) TOTAL
- 2023-11-09 11:38:50.927 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String)
- 2023-11-09 11:38:50.975 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC LIMIT ?,?
- 2023-11-09 11:38:50.975 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String), 0(Long), 20(Long)
- 2023-11-09 11:38:51.025 [http-nio-10018-exec-4] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 3
- 2023-11-09 11:38:51.025 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5a00e42a]
- 2023-11-09 11:38:51.026 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:38:51.026 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@3d54ca9]
- 2023-11-09 11:38:51.027 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:38:51.027 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:38:54.892 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:38:54.893 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:38:54.893 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:38:54.893 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:38:54.894 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:38:54.894 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:54.894 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2d096f55] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:54.908 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@11161292 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:54.909 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:38:54.909 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:38:54.924 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:38:54.924 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:38:54.940 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:38:54.940 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2d096f55]
- 2023-11-09 11:38:54.941 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:54.941 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4033519a] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:54.942 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@314420094 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:54.942 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:38:54.942 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:38:54.959 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:38:54.959 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4033519a]
- 2023-11-09 11:38:54.959 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:54.959 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@59348c06] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:54.961 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@55683387 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:54.961 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:38:54.962 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:38:54.978 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:38:54.978 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@59348c06]
- 2023-11-09 11:38:54.978 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:54.979 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4933a2a7] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:54.979 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@874140475 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:54.980 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:38:54.981 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:38:54.994 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:38:54.995 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4933a2a7]
- 2023-11-09 11:38:54.995 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:38:54.995 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6db7463] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:38:54.996 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1386862725 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:38:54.997 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:38:54.997 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:38:55.012 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:38:55.012 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6db7463]
- 2023-11-09 11:38:55.013 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:38:55.013 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@6ffc8ba7]
- 2023-11-09 11:38:55.014 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:38:55.014 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:39:05.940 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:39:05.940 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:39:05.940 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:39:05.941 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:39:05.941 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:39:05.941 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:05.941 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6c491679] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:05.954 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@812693574 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:05.955 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:39:05.955 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:39:05.970 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:39:05.971 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:39:05.984 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:39:05.985 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6c491679]
- 2023-11-09 11:39:05.985 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:05.985 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6d8889af] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:05.986 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1485811408 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:05.986 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:05.987 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:39:06.004 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:39:06.004 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6d8889af]
- 2023-11-09 11:39:06.004 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:06.004 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@d4a654f] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:06.006 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@606486712 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:06.007 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:06.008 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:39:06.022 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:39:06.022 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@d4a654f]
- 2023-11-09 11:39:06.022 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:06.023 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@31974caf] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:06.023 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1864968143 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:06.024 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:06.024 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:39:06.037 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:39:06.037 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@31974caf]
- 2023-11-09 11:39:06.037 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:06.038 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2cad6170] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:06.038 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@659862142 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:06.039 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:39:06.039 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:39:06.053 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:39:06.053 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2cad6170]
- 2023-11-09 11:39:06.054 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:39:06.054 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@1cacb323]
- 2023-11-09 11:39:06.054 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:39:06.055 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:39:08.799 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:39:08.799 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:39:08.799 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:39:08.800 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, true, 1, 20, 0, false]
- 2023-11-09 11:39:08.800 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, true, 1, 20, 0, false]
- 2023-11-09 11:39:08.800 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:08.800 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@13520c38] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:08.814 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@378211347 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:08.815 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE set_meal = ? ORDER BY id DESC ) TOTAL
- 2023-11-09 11:39:08.816 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 11:39:08.831 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE set_meal = ? ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:39:08.831 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 1(Integer), 0(Long), 20(Long)
- 2023-11-09 11:39:08.849 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:39:08.849 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@13520c38]
- 2023-11-09 11:39:08.849 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:08.849 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@77462f52] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:08.850 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@962813501 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:08.850 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:08.851 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:39:08.868 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 17
- 2023-11-09 11:39:08.868 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@77462f52]
- 2023-11-09 11:39:08.868 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:08.868 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d23e721] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:08.869 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2069459816 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:08.869 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:08.870 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:39:08.883 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:39:08.884 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d23e721]
- 2023-11-09 11:39:08.884 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:08.884 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7842e576] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:08.885 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1526341552 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:08.885 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:08.886 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer)
- 2023-11-09 11:39:08.899 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:39:08.899 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7842e576]
- 2023-11-09 11:39:08.899 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:08.900 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@703ecc75] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:08.900 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@523824721 wrapping com.mysql.cj.jdbc.ConnectionImpl@65a73012] will not be managed by Spring
- 2023-11-09 11:39:08.901 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:39:08.901 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 3918(Integer), 3917(Integer), 3858(Integer), 3799(Integer), 3511(Integer), 3385(Integer), 3344(Integer), 3088(Integer), 3065(Integer), 3051(Integer), 2994(Integer), 2427(Integer), 2387(Integer), 2028(Integer), 1394(Integer), 1368(Integer), 1356(Integer), 1336(Integer), 1314(Integer), 1267(Integer), 1(Integer)
- 2023-11-09 11:39:08.915 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:39:08.916 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@703ecc75]
- 2023-11-09 11:39:08.916 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:39:08.916 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@383d87de]
- 2023-11-09 11:39:08.917 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:39:08.917 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:39:09.469 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:39:09.470 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:39:09.470 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:39:09.470 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 1, false]
- 2023-11-09 11:39:09.470 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 1, false]
- 2023-11-09 11:39:09.470 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:09.471 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4af97d4b] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:09.472 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@115808677 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:09.472 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC ) TOTAL
- 2023-11-09 11:39:09.473 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime)
- 2023-11-09 11:39:09.494 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE expiration_date BETWEEN ? AND ? ORDER BY expiration_date ASC , id DESC LIMIT ?,?
- 2023-11-09 11:39:09.494 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 2023-11-09T00:00(LocalDateTime), 2024-02-09T00:00(LocalDateTime), 0(Long), 20(Long)
- 2023-11-09 11:39:09.516 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:39:09.516 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4af97d4b]
- 2023-11-09 11:39:09.517 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:09.517 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e623de3] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:09.518 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1428675434 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:09.518 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:09.519 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:39:09.541 [http-nio-10018-exec-8] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 19
- 2023-11-09 11:39:09.542 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e623de3]
- 2023-11-09 11:39:09.542 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:09.542 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@456729a6] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:09.543 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@439720396 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:09.543 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:09.544 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:39:09.562 [http-nio-10018-exec-8] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:39:09.562 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@456729a6]
- 2023-11-09 11:39:09.562 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:09.562 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6e4b1166] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:09.563 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@312295184 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:09.563 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:09.564 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer)
- 2023-11-09 11:39:09.582 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 1
- 2023-11-09 11:39:09.582 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6e4b1166]
- 2023-11-09 11:39:09.583 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:09.583 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@427fd732] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:09.583 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1946762810 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:09.584 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:39:09.584 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 1241(Integer), 1242(Integer), 1245(Integer), 1248(Integer), 1249(Integer), 1282(Integer), 1283(Integer), 1298(Integer), 1256(Integer), 585(Integer), 1314(Integer), 481(Integer), 424(Integer), 317(Integer), 1356(Integer), 1336(Integer), 541(Integer), 469(Integer), 2028(Integer), 1394(Integer), 1(Integer)
- 2023-11-09 11:39:09.606 [http-nio-10018-exec-8] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 20
- 2023-11-09 11:39:09.606 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@427fd732]
- 2023-11-09 11:39:09.606 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:39:09.607 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2a995f1f]
- 2023-11-09 11:39:09.608 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:39:09.608 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:39:12.538 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:39:12.538 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 11:39:12.538 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:39:12.539 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 11:39:12.539 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 11:39:12.539 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:12.539 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@e594dfb] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:12.557 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@334658829 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:12.558 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 11:39:12.558 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:39:12.577 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:39:12.577 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:39:12.596 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:39:12.596 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@e594dfb]
- 2023-11-09 11:39:12.597 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:12.597 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3db898c0] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:12.598 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1025675375 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:12.598 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:12.598 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:39:12.621 [http-nio-10018-exec-9] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 11:39:12.621 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3db898c0]
- 2023-11-09 11:39:12.621 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:12.621 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6c79eab0] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:12.622 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@368972135 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:12.623 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:12.623 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:39:12.641 [http-nio-10018-exec-9] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 11:39:12.642 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6c79eab0]
- 2023-11-09 11:39:12.642 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:12.642 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7a85c94c] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:12.643 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1502249158 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:12.643 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 11:39:12.644 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 11:39:12.662 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 11:39:12.662 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7a85c94c]
- 2023-11-09 11:39:12.662 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:12.662 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@323046c7] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:12.663 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1722496612 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:12.663 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 11:39:12.663 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 11:39:12.681 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 11:39:12.682 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@323046c7]
- 2023-11-09 11:39:12.682 [http-nio-10018-exec-9] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:39:12.682 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@1e7b304]
- 2023-11-09 11:39:12.683 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:39:12.683 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:39:13.809 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:39:13.809 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:39:13.809 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:39:13.810 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:39:13.810 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:39:13.810 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:39:13.810 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:39:13.810 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@47b5593e] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:39:13.828 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@111412203 wrapping com.mysql.cj.jdbc.ConnectionImpl@175181e4] will not be managed by Spring
- 2023-11-09 11:39:13.829 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:39:13.830 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:39:14.532 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:39:14.533 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:39:16.068 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:39:16.069 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@47b5593e]
- 2023-11-09 11:39:16.069 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:39:16.069 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@ce2c985]
- 2023-11-09 11:39:16.070 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:39:16.070 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 11:40:35.978 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 11:40:35.979 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 11:40:35.979 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 11:40:35.979 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 11:40:35.980 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:40:35.980 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 11:40:35.980 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 11:40:35.980 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2cbc3dbc] was not registered for synchronization because synchronization is not active
- 2023-11-09 11:40:35.982 [http-nio-10018-exec-1] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@34f1e4a6 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:40:35.986 [http-nio-10018-exec-1] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1814ac00 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:40:35.987 [http-nio-10018-exec-1] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@55883363 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 11:40:36.213 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1860647328 wrapping com.mysql.cj.jdbc.ConnectionImpl@19f76078] will not be managed by Spring
- 2023-11-09 11:40:36.214 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 11:40:36.214 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 11:40:36.965 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 11:40:36.966 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 11:40:38.500 [http-nio-10018-exec-1] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 11:40:38.500 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2cbc3dbc]
- 2023-11-09 11:40:38.500 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 11:40:38.501 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@674482bb]
- 2023-11-09 11:40:38.501 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 11:40:38.501 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 13:26:24.322 [Thread-18] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
- 2023-11-09 13:26:24.326 [Thread-18] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
- 2023-11-09 13:49:35.248 [main] INFO c.m.p.PlatformStartApplication - [logStarting,50] - Starting PlatformStartApplication on YuShuiMing with PID 20376 (D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes started by 31253 in D:\Work\workCode\manHourHousekeeper\manHourHousekeeper)
- 2023-11-09 13:49:35.270 [main] INFO c.m.p.PlatformStartApplication - [logStartupProfileInfo,648] - No active profile set, falling back to default profiles: default
- 2023-11-09 13:49:36.513 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 13:49:36.515 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 13:49:36.515 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 13:49:36.515 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 13:49:36.516 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 13:49:36.516 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 13:49:36.516 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 13:49:36.516 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 13:49:36.517 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 13:49:36.518 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 13:49:36.518 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 13:49:36.518 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 13:49:36.518 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 13:49:36.518 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 13:49:36.519 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 13:49:36.520 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 13:49:36.520 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 13:49:36.520 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 13:49:36.520 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 13:49:36.521 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 13:49:36.522 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 13:49:36.522 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 13:49:36.523 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface
- 2023-11-09 13:49:36.525 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'auditWorkflowTimeSettingMapper'.
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyCustomerContactMapper'.
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyDingdingMapper'.
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyMapper'.
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface
- 2023-11-09 13:49:36.526 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyReportMapper'.
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companySigningMapper'.
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'contractDetailMapper'.
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'customerInfoMapper'.
- 2023-11-09 13:49:36.527 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'departmentMapper'.
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'feishuInfoMapper'.
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationLogMapper'.
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface
- 2023-11-09 13:49:36.528 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationRecordMapper'.
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'participationMapper'.
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'permissionMapper'.
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectAuditorMapper'.
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface
- 2023-11-09 13:49:36.529 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectCategoryMapper'.
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectMapper'.
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportFormMapper'.
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportMapper'.
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2023-11-09 13:49:36.530 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysFunctionMapper'.
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysModuleMapper'.
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleFunctionMapper'.
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleModuleMapper'.
- 2023-11-09 13:49:36.531 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'TSensitiveWordsMapper'.
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskCommentMapper'.
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskExecutorMapper'.
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskFileMapper'.
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskGroupMapper'.
- 2023-11-09 13:49:36.532 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskLogMapper'.
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskMapper'.
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskProgressMapper'.
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationMapper'.
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationShowMapper'.
- 2023-11-09 13:49:36.533 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeTypeMapper'.
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'tprogressPaticipatorsMapper'.
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userCorpwxTimeMapper'.
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userMapper'.
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userSalaryMapper'.
- 2023-11-09 13:49:36.534 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface
- 2023-11-09 13:49:36.535 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'vcompanyCustomerContactMapper'.
- 2023-11-09 13:49:36.535 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface
- 2023-11-09 13:49:36.535 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'wxCorpInfoMapper'.
- 2023-11-09 13:49:36.540 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 13:49:36.541 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 13:49:36.541 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 13:49:36.541 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 13:49:36.541 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 13:49:36.541 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 13:49:36.541 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 13:49:36.542 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 13:49:36.543 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 13:49:36.543 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 13:49:36.543 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 13:49:36.544 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 13:49:36.544 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 13:49:36.544 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 13:49:36.545 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 13:49:36.545 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 13:49:36.545 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 13:49:36.545 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 13:49:36.545 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 13:49:36.546 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 13:49:36.546 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 13:49:36.546 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 13:49:36.546 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 13:49:36.546 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 13:49:36.547 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 13:49:36.548 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.548 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.548 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.548 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.548 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.548 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.549 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.550 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.552 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.552 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.552 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.552 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.552 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.553 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.553 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.553 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.553 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.553 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.553 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.554 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 13:49:36.555 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - No MyBatis mapper was found in '[com.management.platform.mapper]' package. Please check your configuration.
- 2023-11-09 13:49:37.826 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10018"]
- 2023-11-09 13:49:37.835 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 13:49:37.835 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 13:49:38.059 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 13:49:38.059 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 13:49:38.059 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 2709 ms
- 2023-11-09 13:49:38.403 [main] WARN c.z.h.HikariConfig - [validateNumerics,973] - HikariPool-1 - idleTimeout is close to or more than maxLifetime, disabling it.
- 2023-11-09 13:49:38.404 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
- 2023-11-09 13:49:39.628 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
- 2023-11-09 13:49:40.017 [main] WARN c.b.m.c.m.TableInfoHelper - [initTableFields,285] - Warn: Could not find @TableId in Class: com.management.platform.entity.CompanyReport.
- 2023-11-09 13:49:42.336 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CommonUploadController:
- { /common/downLoadLog}: downLoadLog()
- { /common/uploadFile}: uploadFile(MultipartFile)
- 2023-11-09 13:49:42.341 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyController:
- { /company/setTimeTypeSetting}: setTimeTypeSetting(TimeType)
- { /company/syncDindDingMembs}: syncDingDingMembs(String)
- { /company/setMeal}: setMeal(Integer,Integer)
- { /company/dataMigration}: dataMigration(HttpServletRequest,Integer,Integer,String,String)
- { /company/addMembCount}: addMembCount(Integer,int)
- { /company/setPackageList}: setPackageList(Company)
- { /company/getList}: getList(String,Boolean,Integer,Integer,Integer,Boolean)
- { /company/setExpDate}: setExpDate(Integer,String)
- { /company/deleteCompany}: deleteCompany(Integer)
- { /company/addFeiShuInfo}: addFeiShuInfo(FeiShuInfoVO)
- 2023-11-09 13:49:42.342 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyCustomerContactController:
- { /company-customer-contact/handle}: handle(Integer,String)
- { /company-customer-contact/getList}: getList(Integer,Integer)
- 2023-11-09 13:49:42.343 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyReportController:
- { /company-report/update}: update(Integer,String,String)
- { /company-report/list}: list(Integer)
- 2023-11-09 13:49:42.344 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanySigningController:
- { /company-signing/update}: update(CompanySigning)
- { /company-signing/getList}: getList(Integer)
- 2023-11-09 13:49:42.344 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.ContractDetailController:
- { /contract-detail/update}: update(ContractDetail,HttpServletResponse)
- { /contract-detail/detail}: detail(Integer)
- { /contract-detail/finalize}: contractFinalize(Integer)
- { /contract-detail/preview}: preview(HttpServletResponse,Integer)
- 2023-11-09 13:49:42.345 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.FeishuInfoController:
-
- 2023-11-09 13:49:42.345 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.OperationLogController:
- { /operation-log/list}: list(Integer,Integer,Integer)
- 2023-11-09 13:49:42.345 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.OperationRecordController:
- { /operation-record/getList}: getList(String,String,String,Integer,Integer,String)
- 2023-11-09 13:49:42.346 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.PermissionController:
- { /permission/getAuthority}: getAuthority(Integer,Integer,HttpServletRequest)
- {POST /permission/savePermission}: savePermission(Integer,String)
- { /permission/getFrontRoleList}: getFrontRoleList(Integer)
- { /permission/getRoleList}: getRoleList(Integer)
- 2023-11-09 13:49:42.346 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.ReportController:
-
- 2023-11-09 13:49:42.347 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.SysRoleController:
- { /role/genCorpDefaultRoles}: genCorpDefaultRoles(Integer,Integer)
- 2023-11-09 13:49:42.347 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.TimeTypeController:
- { /time-type/get}: get(Integer)
- 2023-11-09 13:49:42.347 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.UserController:
- { /user/getUserInfo}: getUserInfo(String)
- { /user/loginAdmin}: loginAdmin(String,String)
- { /user/getEmployeeList}: getEmployeeList(Integer,String,Integer,Integer,Integer,Integer)
- 2023-11-09 13:49:42.348 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.VcompanyCustomerContactController:
-
- 2023-11-09 13:49:42.348 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.WxCorpInfoController:
-
- 2023-11-09 13:49:42.350 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- o.s.b.a.w.s.e.BasicErrorController:
- { /error}: error(HttpServletRequest)
- { /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
- 2023-11-09 13:49:42.353 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - [handlerMethodsInitialized,351] - 35 mappings in 'requestMappingHandlerMapping'
- 2023-11-09 13:49:42.369 [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - [detectHandlers,86] - Detected 0 mappings in 'beanNameHandlerMapping'
- 2023-11-09 13:49:42.449 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - [initControllerAdviceCache,620] - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
- 2023-11-09 13:49:42.485 [main] DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - [initExceptionHandlerAdviceCache,303] - ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
- 2023-11-09 13:49:43.105 [main] DEBUG o.s.w.s.v.f.FreeMarkerConfigurer - [getTemplateLoaderForPath,347] - Template loader path [class path resource [templates/]] resolved to file path [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\templates]
- 2023-11-09 13:49:43.257 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 13:49:43.258 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10018"]
- 2023-11-09 13:49:43.612 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10019"]
- 2023-11-09 13:49:43.613 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 13:49:43.613 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 13:49:43.639 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 13:49:43.639 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 13:49:43.639 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 105 ms
- 2023-11-09 13:49:43.669 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- o.s.b.a.a.w.s.ManagementErrorEndpoint:
- { /error}: invoke(ServletWebRequest)
- 2023-11-09 13:49:43.669 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - [handlerMethodsInitialized,351] - 1 mappings in 'requestMappingHandlerMapping'
- 2023-11-09 13:49:43.672 [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - [detectHandlers,86] - Detected 0 mappings in 'beanNameHandlerMapping'
- 2023-11-09 13:49:43.685 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - [initControllerAdviceCache,620] - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
- 2023-11-09 13:49:43.689 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 13:49:43.690 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 13:49:43.690 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10019"]
- 2023-11-09 13:49:43.694 [main] INFO c.m.p.PlatformStartApplication - [logStarted,59] - Started PlatformStartApplication in 8.905 seconds (JVM running for 10.692)
- 2023-11-09 13:49:44.076 [RMI TCP Connection(1)-192.168.200.150] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2023-11-09 13:49:44.076 [RMI TCP Connection(1)-192.168.200.150] INFO o.s.w.s.DispatcherServlet - [initServletBean,525] - Initializing Servlet 'dispatcherServlet'
- 2023-11-09 13:49:44.076 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initMultipartResolver,523] - Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@78b9155e
- 2023-11-09 13:49:44.078 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initLocaleResolver,557] - No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
- 2023-11-09 13:49:44.081 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initThemeResolver,582] - No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
- 2023-11-09 13:49:44.084 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initRequestToViewNameTranslator,725] - No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
- 2023-11-09 13:49:44.088 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initFlashMapManager,789] - No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
- 2023-11-09 13:49:44.088 [RMI TCP Connection(1)-192.168.200.150] DEBUG o.s.w.s.DispatcherServlet - [initServletBean,542] - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
- 2023-11-09 13:49:44.088 [RMI TCP Connection(1)-192.168.200.150] INFO o.s.w.s.DispatcherServlet - [initServletBean,547] - Completed initialization in 12 ms
- 2023-11-09 13:59:07.431 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 13:59:07.434 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 13:59:07.435 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 13:59:07.509 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 13:59:07.528 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.534 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7657e059] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.596 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@298608144 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.599 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 13:59:07.707 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 13:59:07.744 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 13:59:07.745 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7657e059]
- 2023-11-09 13:59:07.746 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.747 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5728ec20] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.748 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@262040394 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.748 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 13:59:07.749 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 13:59:07.766 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 13:59:07.767 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5728ec20]
- 2023-11-09 13:59:07.817 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.818 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5f6b1596] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.818 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1636891628 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.818 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 13:59:07.819 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 13:59:07.837 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 13:59:07.838 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5f6b1596]
- 2023-11-09 13:59:07.838 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.838 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@44de439e] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.838 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@86464026 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.839 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 13:59:07.839 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 13:59:07.855 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 13:59:07.856 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@44de439e]
- 2023-11-09 13:59:07.856 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.856 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@24748bc7] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.856 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@302050916 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.857 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 13:59:07.857 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 13:59:07.875 [http-nio-10018-exec-1] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 13:59:07.875 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@24748bc7]
- 2023-11-09 13:59:07.879 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.879 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@b0eece2] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.880 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@510152745 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.880 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 13:59:07.881 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 13:59:07.897 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 13:59:07.898 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@b0eece2]
- 2023-11-09 13:59:07.898 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.899 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@311d1999] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.901 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2084035210 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.901 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 13:59:07.902 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 13:59:07.920 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 13:59:07.921 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@311d1999]
- 2023-11-09 13:59:07.922 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.922 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2b42cceb] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.923 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1003030204 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.923 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 13:59:07.924 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 13:59:07.939 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 13:59:07.939 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2b42cceb]
- 2023-11-09 13:59:07.940 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:07.941 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4b457bfa] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:07.942 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1994245101 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:07.942 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 13:59:07.943 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 13:59:07.968 [http-nio-10018-exec-1] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 13:59:07.969 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4b457bfa]
- 2023-11-09 13:59:08.000 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 13:59:08.001 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@3eb37cdd]
- 2023-11-09 13:59:08.054 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 13:59:08.054 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 13:59:08.339 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 13:59:08.339 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 13:59:08.340 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 13:59:08.344 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 13:59:08.344 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 13:59:08.346 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 13:59:08.351 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 13:59:08.352 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@77ce6bca] was not registered for synchronization because synchronization is not active
- 2023-11-09 13:59:08.353 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@453368942 wrapping com.mysql.cj.jdbc.ConnectionImpl@31788d68] will not be managed by Spring
- 2023-11-09 13:59:08.377 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 13:59:08.378 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 13:59:09.084 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 13:59:09.084 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 13:59:10.615 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 13:59:10.616 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@77ce6bca]
- 2023-11-09 13:59:10.616 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 13:59:10.617 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@45e7255f]
- 2023-11-09 13:59:10.625 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 13:59:10.625 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:00:48.379 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:00:48.379 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:00:48.379 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:00:48.379 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:00:49.918 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:00:49.919 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:00:49.919 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:00:49.919 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:01:13.246 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:01:13.247 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:01:13.247 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:01:13.247 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:01:20.717 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:01:20.718 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:01:20.718 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:01:20.718 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:02:19.272 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:19.272 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:02:19.273 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:02:19.273 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 14:02:19.273 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.274 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41fb97f1] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.291 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1258552449 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.291 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 14:02:19.291 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 14:02:19.321 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 14:02:19.321 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41fb97f1]
- 2023-11-09 14:02:19.321 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.321 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3fc583ff] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.323 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1811322738 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.324 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 14:02:19.324 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:19.340 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 14:02:19.340 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3fc583ff]
- 2023-11-09 14:02:19.340 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.341 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3c2935dd] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.341 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@803242972 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.342 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:02:19.342 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:19.358 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:19.358 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3c2935dd]
- 2023-11-09 14:02:19.358 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.358 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1f12c909] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.360 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@877090644 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.360 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 14:02:19.360 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:19.375 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:19.376 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1f12c909]
- 2023-11-09 14:02:19.376 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.376 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3ccd8b58] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.377 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@891180873 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.377 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:02:19.378 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:19.397 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:19.397 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3ccd8b58]
- 2023-11-09 14:02:19.398 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.398 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@ca9030a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.399 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@328879894 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.399 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 14:02:19.400 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:02:19.418 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:02:19.419 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@ca9030a]
- 2023-11-09 14:02:19.420 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.420 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@dfe9ade] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.421 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@907264064 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.422 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 14:02:19.422 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:02:19.438 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 14:02:19.439 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@dfe9ade]
- 2023-11-09 14:02:19.439 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.439 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@30460f3b] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.440 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1234656135 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.440 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 14:02:19.440 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:02:19.458 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:02:19.458 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@30460f3b]
- 2023-11-09 14:02:19.458 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.459 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2e78f048] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.459 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@266160670 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.460 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 14:02:19.460 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:02:19.479 [http-nio-10018-exec-7] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 14:02:19.480 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2e78f048]
- 2023-11-09 14:02:19.480 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:02:19.480 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@3dd8174a]
- 2023-11-09 14:02:19.486 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:02:19.486 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:02:19.773 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:19.773 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 14:02:19.773 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:02:19.773 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 14:02:19.774 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:02:19.774 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:02:19.774 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:19.774 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@36f57cd0] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:19.775 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@942834814 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:19.776 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 14:02:19.776 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:02:20.463 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:02:20.463 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:02:21.983 [http-nio-10018-exec-8] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:02:21.983 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@36f57cd0]
- 2023-11-09 14:02:21.984 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:02:21.984 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@48bc17d2]
- 2023-11-09 14:02:21.985 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:02:21.985 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:02:32.763 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:32.763 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:02:32.764 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:02:32.764 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 14:02:32.765 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.765 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d8e5749] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.782 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@930495545 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.782 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 14:02:32.782 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 14:02:32.812 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 14:02:32.812 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d8e5749]
- 2023-11-09 14:02:32.814 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.814 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d0f91ab] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.815 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1582895490 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.816 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 14:02:32.816 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:32.834 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 14:02:32.834 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d0f91ab]
- 2023-11-09 14:02:32.835 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.835 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@58803a3] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.835 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@83998943 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.836 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:02:32.836 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:32.852 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:32.852 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@58803a3]
- 2023-11-09 14:02:32.854 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.854 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2c4016cf] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.854 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1762696703 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.854 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 14:02:32.855 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:32.870 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:32.870 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2c4016cf]
- 2023-11-09 14:02:32.871 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.871 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@61fa3209] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.871 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1293985431 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.871 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:02:32.872 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:32.890 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:32.890 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@61fa3209]
- 2023-11-09 14:02:32.891 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.891 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@394e43ea] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.892 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@160711856 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.892 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 14:02:32.893 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:02:32.909 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:02:32.909 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@394e43ea]
- 2023-11-09 14:02:32.909 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.910 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@706625e6] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.912 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@283511576 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.912 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 14:02:32.912 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:02:32.929 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 14:02:32.930 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@706625e6]
- 2023-11-09 14:02:32.931 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.931 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@52ddf081] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.932 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@707742653 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.932 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 14:02:32.934 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:02:32.952 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:02:32.953 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@52ddf081]
- 2023-11-09 14:02:32.953 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:32.953 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@29503671] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:32.954 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@706413596 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:32.954 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 14:02:32.955 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:02:32.979 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 14:02:32.979 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@29503671]
- 2023-11-09 14:02:32.980 [http-nio-10018-exec-9] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:02:32.980 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4a91a2fd]
- 2023-11-09 14:02:32.982 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:02:32.982 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:02:33.249 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:33.249 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 14:02:33.250 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:02:33.250 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 14:02:33.250 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:02:33.250 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:02:33.251 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:33.251 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@495bdff6] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:33.252 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1201416365 wrapping com.mysql.cj.jdbc.ConnectionImpl@e016b85] will not be managed by Spring
- 2023-11-09 14:02:33.253 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 14:02:33.253 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:02:33.942 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:02:33.942 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:02:35.464 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:02:35.465 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@495bdff6]
- 2023-11-09 14:02:35.465 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:02:35.465 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@69b4e7eb]
- 2023-11-09 14:02:35.466 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:02:35.466 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:02:40.667 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:40.667 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:02:40.668 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:02:40.668 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:02:52.502 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:52.502 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:02:52.502 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:02:52.502 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:02:53.492 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:53.492 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:02:53.492 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=192.168.200.150
- 2023-11-09 14:02:53.493 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={}
- 2023-11-09 14:02:59.258 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:59.258 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:02:59.258 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:02:59.259 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 14:02:59.259 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.259 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4b584d76] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.267 [http-nio-10018-exec-4] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3f06a620 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:02:59.269 [http-nio-10018-exec-4] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4abb0b69 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:02:59.286 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1100004655 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.288 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 14:02:59.289 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 14:02:59.319 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 14:02:59.320 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4b584d76]
- 2023-11-09 14:02:59.320 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.321 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@622e0a6d] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.322 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@638823106 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.322 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 14:02:59.322 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:59.346 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 14:02:59.346 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@622e0a6d]
- 2023-11-09 14:02:59.347 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.347 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@21ad0593] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.347 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@859967145 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.348 [http-nio-10018-exec-4] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:02:59.348 [http-nio-10018-exec-4] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:59.365 [http-nio-10018-exec-4] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:59.365 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@21ad0593]
- 2023-11-09 14:02:59.365 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.365 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6dd554fd] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.365 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@614286665 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.366 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 14:02:59.366 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:59.387 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:59.387 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6dd554fd]
- 2023-11-09 14:02:59.388 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.388 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@68e78e42] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.389 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1638654641 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.390 [http-nio-10018-exec-4] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:02:59.390 [http-nio-10018-exec-4] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:02:59.406 [http-nio-10018-exec-4] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:02:59.407 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@68e78e42]
- 2023-11-09 14:02:59.407 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.407 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@462b70d7] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.408 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2016128201 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.408 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 14:02:59.409 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:02:59.424 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:02:59.425 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@462b70d7]
- 2023-11-09 14:02:59.425 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.425 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@24c712e5] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.426 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@964125538 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.426 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 14:02:59.427 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:02:59.444 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 14:02:59.445 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@24c712e5]
- 2023-11-09 14:02:59.445 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.445 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1822e6b0] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.446 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@82743147 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.446 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 14:02:59.446 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:02:59.460 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:02:59.461 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1822e6b0]
- 2023-11-09 14:02:59.461 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.461 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@64163183] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.462 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1796099287 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.462 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 14:02:59.462 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:02:59.483 [http-nio-10018-exec-4] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 14:02:59.483 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@64163183]
- 2023-11-09 14:02:59.484 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:02:59.484 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@196e2f38]
- 2023-11-09 14:02:59.484 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:02:59.484 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:02:59.781 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:02:59.782 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 14:02:59.782 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:02:59.782 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 14:02:59.782 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:02:59.783 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:02:59.783 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:02:59.783 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@e80ef6c] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:02:59.784 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@180320868 wrapping com.mysql.cj.jdbc.ConnectionImpl@52fd6d00] will not be managed by Spring
- 2023-11-09 14:02:59.785 [http-nio-10018-exec-5] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 14:02:59.786 [http-nio-10018-exec-5] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:03:00.494 [http-nio-10018-exec-5] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:03:00.494 [http-nio-10018-exec-5] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:03:01.959 [http-nio-10018-exec-5] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:03:01.959 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@e80ef6c]
- 2023-11-09 14:03:01.960 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:03:01.960 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@f25d1f6]
- 2023-11-09 14:03:01.961 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:03:01.961 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:10:43.204 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:10:43.204 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:10:43.205 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:10:43.207 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:10:43.207 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:10:43.209 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:10:43.210 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@740f907a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:10:43.228 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@892508737 wrapping com.mysql.cj.jdbc.ConnectionImpl@cc9375d] will not be managed by Spring
- 2023-11-09 14:10:43.230 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:10:43.230 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:10:43.248 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:10:43.248 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:10:43.272 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:10:43.272 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@740f907a]
- 2023-11-09 14:10:43.274 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:10:43.274 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7714271b] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:10:43.275 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2104940662 wrapping com.mysql.cj.jdbc.ConnectionImpl@cc9375d] will not be managed by Spring
- 2023-11-09 14:10:43.275 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:10:43.276 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:10:43.298 [http-nio-10018-exec-6] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:10:43.299 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7714271b]
- 2023-11-09 14:10:43.299 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:10:43.299 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7e98c493] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:10:43.300 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2039693869 wrapping com.mysql.cj.jdbc.ConnectionImpl@cc9375d] will not be managed by Spring
- 2023-11-09 14:10:43.301 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:10:43.301 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:10:43.315 [http-nio-10018-exec-6] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:10:43.316 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7e98c493]
- 2023-11-09 14:10:43.316 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:10:43.316 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@a24bded] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:10:43.317 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@849370214 wrapping com.mysql.cj.jdbc.ConnectionImpl@cc9375d] will not be managed by Spring
- 2023-11-09 14:10:43.317 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:10:43.318 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:10:43.344 [http-nio-10018-exec-6] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:10:43.345 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@a24bded]
- 2023-11-09 14:10:43.346 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:10:43.346 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41fe07a0] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:10:43.350 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1796824561 wrapping com.mysql.cj.jdbc.ConnectionImpl@cc9375d] will not be managed by Spring
- 2023-11-09 14:10:43.350 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:10:43.351 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:10:43.366 [http-nio-10018-exec-6] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:10:43.366 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@41fe07a0]
- 2023-11-09 14:10:43.367 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:10:43.367 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@4ea92865]
- 2023-11-09 14:10:43.370 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:10:43.370 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:10:45.638 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:10:45.639 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:10:45.639 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:10:45.639 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:10:45.639 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [4370]
- 2023-11-09 14:10:45.641 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:10:45.641 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@25fb4c11] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:10:45.663 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@627428121 wrapping com.mysql.cj.jdbc.ConnectionImpl@cc9375d] will not be managed by Spring
- 2023-11-09 14:10:45.664 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:10:45.664 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:10:45.685 [http-nio-10018-exec-7] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:10:45.685 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@25fb4c11]
- 2023-11-09 14:10:45.685 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:10:45.685 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@b5f7b3e]
- 2023-11-09 14:10:45.686 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:10:45.686 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:12:17.784 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:12:17.784 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:12:17.785 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:12:17.785 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4364]
- 2023-11-09 14:12:17.785 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [4364]
- 2023-11-09 14:12:17.786 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:12:17.786 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1cd8b972] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:12:17.792 [http-nio-10018-exec-8] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1920710a (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:12:17.801 [http-nio-10018-exec-8] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5e96b4ca (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:12:17.819 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@493751443 wrapping com.mysql.cj.jdbc.ConnectionImpl@a3f2699] will not be managed by Spring
- 2023-11-09 14:12:17.820 [http-nio-10018-exec-8] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:12:17.821 [http-nio-10018-exec-8] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 4364(Integer)
- 2023-11-09 14:12:17.841 [http-nio-10018-exec-8] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:12:17.841 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1cd8b972]
- 2023-11-09 14:12:17.843 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:12:17.843 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2710412]
- 2023-11-09 14:12:17.845 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:12:17.845 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:17:25.951 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/user/loginAdmin", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:17:25.951 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.UserController.loginAdmin(java.lang.String,java.lang.String)
- 2023-11-09 14:17:25.951 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:17:25.952 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [18851768659, 000000]
- 2023-11-09 14:17:25.952 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:25.952 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@625af660] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:25.954 [http-nio-10018-exec-9] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@101325d3 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:17:26.006 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1442914193 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.007 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT id,name,phone,password,portrait_url,create_time,role,company_id,department_id,department_cascade,cost,month_cost,salary_type,manage_dept_id,color,is_active,wx_openid,role_id,role_name,cost_apply_date,dingding_userid,dingding_unionid,corpwx_userid,inactive_date,is_ops FROM user WHERE phone = ?
- 2023-11-09 14:17:26.007 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 18851768659(String)
- 2023-11-09 14:17:26.039 [http-nio-10018-exec-9] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 1
- 2023-11-09 14:17:26.040 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@625af660]
- 2023-11-09 14:17:26.040 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.040 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@167ce52c] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.041 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1222610405 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.042 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id = ?
- 2023-11-09 14:17:26.042 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectOne - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:17:26.055 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectOne - [debug,143] - <== Total: 1
- 2023-11-09 14:17:26.056 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@167ce52c]
- 2023-11-09 14:17:26.056 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.058 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6f091353] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.058 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@514706971 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.058 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:17:26.058 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:17:26.075 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:17:26.075 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6f091353]
- 2023-11-09 14:17:26.075 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.075 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@160845e2] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.075 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@834424827 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.076 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company WHERE id=?
- 2023-11-09 14:17:26.076 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:17:26.090 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:17:26.091 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@160845e2]
- 2023-11-09 14:17:26.091 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.091 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2518cfc5] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.092 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1911273937 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.092 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:17:26.092 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 7(Integer)
- 2023-11-09 14:17:26.108 [http-nio-10018-exec-9] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:17:26.108 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2518cfc5]
- 2023-11-09 14:17:26.109 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.109 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6fb17a94] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.110 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@204797504 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.110 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,module_id FROM sys_role_module WHERE role_id = ?
- 2023-11-09 14:17:26.111 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:17:26.123 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:17:26.124 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6fb17a94]
- 2023-11-09 14:17:26.124 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.124 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5d27e342] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.125 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@967202728 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.126 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,path,parent_id,icon,orderitem,is_menu,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,report_workflow,package_finance,need_dept_audit FROM sys_module WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? OR report_workflow = ? ORDER BY orderitem ASC
- 2023-11-09 14:17:26.126 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:17:26.141 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 18
- 2023-11-09 14:17:26.141 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5d27e342]
- 2023-11-09 14:17:26.141 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.142 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5de0c58e] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.142 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1069482115 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.143 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT role_id,function_id FROM sys_role_function WHERE role_id = ?
- 2023-11-09 14:17:26.144 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer)
- 2023-11-09 14:17:26.158 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 8
- 2023-11-09 14:17:26.159 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5de0c58e]
- 2023-11-09 14:17:26.159 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.159 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7f6ef704] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.160 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@620331474 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.160 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Preparing: SELECT id,name,icon,code,module_id,seq,use_state,package_time,package_project,package_oa,package_expense,package_customer,package_engineering,package_contract,package_etimecard,package_finance,sync_corpwx_time,finance_audit,remarks,report_form_id FROM sys_function WHERE package_time = ? OR package_project = ? OR package_oa = ? OR package_expense = ? OR package_contract = ? OR package_finance = ? ORDER BY seq ASC
- 2023-11-09 14:17:26.161 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - ==> Parameters: 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer), 1(Integer)
- 2023-11-09 14:17:26.179 [http-nio-10018-exec-9] DEBUG c.m.p.m.S.selectList - [debug,143] - <== Total: 108
- 2023-11-09 14:17:26.179 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7f6ef704]
- 2023-11-09 14:17:26.180 [http-nio-10018-exec-9] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:17:26.180 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2f38183e]
- 2023-11-09 14:17:26.181 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:17:26.181 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:17:26.475 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:17:26.476 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 14:17:26.476 [http-nio-10018-exec-10] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:17:26.476 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 14:17:26.477 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:17:26.477 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:17:26.477 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:26.477 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@668eddd9] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:26.479 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1616162034 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:26.480 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 14:17:26.481 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:17:27.175 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:17:27.175 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:17:28.647 [http-nio-10018-exec-10] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:17:28.647 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@668eddd9]
- 2023-11-09 14:17:28.649 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:17:28.649 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@62c0c7fe]
- 2023-11-09 14:17:28.650 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:17:28.650 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:17:29.427 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:17:29.428 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:17:29.428 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:17:29.428 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:17:29.429 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:17:29.429 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:29.429 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3b4e0210] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:29.444 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@327392257 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:29.445 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:17:29.445 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:17:29.460 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:17:29.460 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:17:29.477 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:17:29.478 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3b4e0210]
- 2023-11-09 14:17:29.478 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:29.478 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3dbacc51] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:29.479 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@844512371 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:29.480 [http-nio-10018-exec-1] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:17:29.480 [http-nio-10018-exec-1] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:17:29.496 [http-nio-10018-exec-1] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:17:29.496 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3dbacc51]
- 2023-11-09 14:17:29.496 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:29.496 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@573b7faf] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:29.498 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1007221085 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:29.499 [http-nio-10018-exec-1] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:17:29.499 [http-nio-10018-exec-1] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:17:29.514 [http-nio-10018-exec-1] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:17:29.514 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@573b7faf]
- 2023-11-09 14:17:29.514 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:29.514 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@392c02d8] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:29.515 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@904315989 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:29.516 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:17:29.516 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:17:29.529 [http-nio-10018-exec-1] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:17:29.529 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@392c02d8]
- 2023-11-09 14:17:29.530 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:29.530 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@65169d2] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:29.531 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1597145346 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:29.531 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:17:29.531 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:17:29.545 [http-nio-10018-exec-1] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:17:29.546 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@65169d2]
- 2023-11-09 14:17:29.546 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:17:29.546 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@59e4325c]
- 2023-11-09 14:17:29.547 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:17:29.547 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:17:31.830 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:17:31.830 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:17:31.830 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:17:31.831 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:17:31.831 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [4370]
- 2023-11-09 14:17:31.831 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:17:31.831 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6f7aa1c2] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:17:31.865 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@525130730 wrapping com.mysql.cj.jdbc.ConnectionImpl@5fb5953f] will not be managed by Spring
- 2023-11-09 14:17:31.865 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:17:31.865 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:17:31.880 [http-nio-10018-exec-2] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:17:31.880 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6f7aa1c2]
- 2023-11-09 14:17:31.881 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:17:31.881 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@25ed9904]
- 2023-11-09 14:17:31.881 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:17:31.881 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:18:07.025 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:18:07.026 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:18:07.026 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:18:07.027 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:18:07.028 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [4370]
- 2023-11-09 14:18:07.028 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:18:07.028 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@42639f95] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:18:07.030 [http-nio-10018-exec-3] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4ca469a9 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:18:07.046 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1398332035 wrapping com.mysql.cj.jdbc.ConnectionImpl@3c5e0860] will not be managed by Spring
- 2023-11-09 14:18:07.048 [http-nio-10018-exec-3] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:18:07.049 [http-nio-10018-exec-3] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:18:07.065 [http-nio-10018-exec-3] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:18:07.065 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@42639f95]
- 2023-11-09 14:18:07.066 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:18:07.066 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@6db69cdd]
- 2023-11-09 14:18:07.067 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:18:07.067 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:19:52.708 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:19:52.708 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:19:52.708 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:19:52.710 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:19:52.710 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:19:52.711 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:52.711 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7e9fdae0] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:52.714 [http-nio-10018-exec-4] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3e836eeb (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:19:52.732 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2087595182 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:52.734 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:19:52.734 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:19:52.753 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:19:52.753 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:19:52.771 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:19:52.771 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7e9fdae0]
- 2023-11-09 14:19:52.773 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:52.773 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@615b30b2] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:52.774 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@5297746 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:52.775 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:19:52.776 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:19:52.799 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:19:52.799 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@615b30b2]
- 2023-11-09 14:19:52.799 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:52.799 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@38866758] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:52.800 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1966970043 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:52.801 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:19:52.801 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:19:52.821 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:19:52.821 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@38866758]
- 2023-11-09 14:19:52.821 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:52.821 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@768f66f6] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:52.822 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2109240280 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:52.822 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:19:52.822 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:19:52.840 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:19:52.841 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@768f66f6]
- 2023-11-09 14:19:52.841 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:52.841 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3c15bfdf] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:52.842 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@832624253 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:52.843 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:19:52.843 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:19:52.862 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:19:52.863 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3c15bfdf]
- 2023-11-09 14:19:52.863 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:19:52.863 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@266cc135]
- 2023-11-09 14:19:52.864 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:19:52.864 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:19:55.276 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:19:55.276 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:19:55.277 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:19:55.277 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:19:55.278 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:19:55.278 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:55.278 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2f921a18] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:55.297 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@900339287 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:55.298 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:19:55.298 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:19:55.318 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:19:55.318 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:19:55.336 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:19:55.337 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2f921a18]
- 2023-11-09 14:19:55.338 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:55.338 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@781e82ca] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:55.339 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@493042480 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:55.340 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:19:55.340 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:19:55.361 [http-nio-10018-exec-5] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:19:55.361 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@781e82ca]
- 2023-11-09 14:19:55.361 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:55.361 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e1fbd80] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:55.363 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1117482587 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:55.363 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:19:55.363 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:19:55.381 [http-nio-10018-exec-5] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:19:55.381 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4e1fbd80]
- 2023-11-09 14:19:55.382 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:55.382 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5c3001bc] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:55.382 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1869632519 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:55.382 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:19:55.383 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:19:55.400 [http-nio-10018-exec-5] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:19:55.400 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5c3001bc]
- 2023-11-09 14:19:55.401 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:19:55.401 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1bf4fe38] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:19:55.402 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1200959771 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:19:55.402 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:19:55.403 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:19:55.420 [http-nio-10018-exec-5] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:19:55.420 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1bf4fe38]
- 2023-11-09 14:19:55.421 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:19:55.421 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5c6e06f5]
- 2023-11-09 14:19:55.421 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:19:55.422 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:02.895 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:02.896 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:20:02.896 [http-nio-10018-exec-6] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:02.897 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:20:02.897 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [4370]
- 2023-11-09 14:20:02.897 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:02.897 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6b5d1051] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:02.916 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1127134409 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:20:02.917 [http-nio-10018-exec-6] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:20:02.917 [http-nio-10018-exec-6] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:20:02.941 [http-nio-10018-exec-6] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:20:02.942 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6b5d1051]
- 2023-11-09 14:20:02.942 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:02.942 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@5ea22e70]
- 2023-11-09 14:20:02.943 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:02.943 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:05.777 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:05.778 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:20:05.778 [http-nio-10018-exec-7] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:05.779 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:20:05.779 [http-nio-10018-exec-7] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:20:05.779 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:05.779 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@445c6458] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:05.798 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1647274258 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:20:05.800 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:20:05.801 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:20:05.820 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:20:05.821 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:20:05.841 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:20:05.841 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@445c6458]
- 2023-11-09 14:20:05.841 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:05.842 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@28e1c036] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:05.843 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@832527297 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:20:05.843 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:05.843 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:05.863 [http-nio-10018-exec-7] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:20:05.863 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@28e1c036]
- 2023-11-09 14:20:05.864 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:05.864 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@58eabcae] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:05.864 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2116823029 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:20:05.865 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:05.865 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:05.882 [http-nio-10018-exec-7] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:20:05.882 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@58eabcae]
- 2023-11-09 14:20:05.882 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:05.882 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1888d485] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:05.883 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@361366774 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:20:05.883 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:05.884 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:05.901 [http-nio-10018-exec-7] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:20:05.901 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1888d485]
- 2023-11-09 14:20:05.901 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:05.901 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@e71c2e5] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:05.903 [http-nio-10018-exec-7] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1350767442 wrapping com.mysql.cj.jdbc.ConnectionImpl@593fe1fe] will not be managed by Spring
- 2023-11-09 14:20:05.904 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:20:05.905 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:20:05.923 [http-nio-10018-exec-7] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:20:05.923 [http-nio-10018-exec-7] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@e71c2e5]
- 2023-11-09 14:20:05.924 [http-nio-10018-exec-7] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:05.924 [http-nio-10018-exec-7] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2b82a7e2]
- 2023-11-09 14:20:05.924 [http-nio-10018-exec-7] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:05.924 [http-nio-10018-exec-7] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:11.164 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/detail", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:11.166 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 14:20:11.166 [http-nio-10018-exec-8] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:11.166 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:20:11.167 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 14:20:11.169 [http-nio-10018-exec-8] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 14:20:11.174 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:11.175 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6f969a5b] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:11.176 [http-nio-10018-exec-8] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1c6e62de (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:20:11.193 [http-nio-10018-exec-8] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1342711564 wrapping com.mysql.cj.jdbc.ConnectionImpl@b173b14] will not be managed by Spring
- 2023-11-09 14:20:11.193 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 14:20:11.193 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:20:11.208 [http-nio-10018-exec-8] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 14:20:11.208 [http-nio-10018-exec-8] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6f969a5b]
- 2023-11-09 14:20:11.209 [http-nio-10018-exec-8] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:11.209 [http-nio-10018-exec-8] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@21582803]
- 2023-11-09 14:20:11.210 [http-nio-10018-exec-8] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:11.210 [http-nio-10018-exec-8] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:13.506 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/contract-detail/detail", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:13.507 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.ContractDetailController.detail(java.lang.Integer)
- 2023-11-09 14:20:13.507 [http-nio-10018-exec-9] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:13.507 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:20:13.508 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 14:20:13.508 [http-nio-10018-exec-9] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/contract-detail/detail, 参数: [4370]
- 2023-11-09 14:20:13.508 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:13.508 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@27e61c0a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:13.522 [http-nio-10018-exec-9] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@92324490 wrapping com.mysql.cj.jdbc.ConnectionImpl@b173b14] will not be managed by Spring
- 2023-11-09 14:20:13.523 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Preparing: SELECT company_id,secondParty,secondPartyAddr,secondPartyContacts,secondPartyTel,softwareName,serviceDate,startDate,serviceChargeOfYear,customDevelopmentCosts,standardUnitPrice,firstOpenNum,secondPartyAccount,secondPartyBankOfDeposit,secondPartyBillingName,secondPartyTIN,invoiceType,finalize FROM contract_detail WHERE company_id=?
- 2023-11-09 14:20:13.524 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:20:13.539 [http-nio-10018-exec-9] DEBUG c.m.p.m.C.selectById - [debug,143] - <== Total: 0
- 2023-11-09 14:20:13.540 [http-nio-10018-exec-9] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@27e61c0a]
- 2023-11-09 14:20:13.540 [http-nio-10018-exec-9] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:13.540 [http-nio-10018-exec-9] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@7d8784f8]
- 2023-11-09 14:20:13.541 [http-nio-10018-exec-9] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:13.542 [http-nio-10018-exec-9] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:23.865 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-record/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:23.868 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationRecordController.getList(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String)
- 2023-11-09 14:20:23.871 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 14:20:23.871 [http-nio-10018-exec-10] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-record/getList, 参数: [, 2023-11-02, 2023-11-09, 1, 20, ]
- 2023-11-09 14:20:23.873 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:23.873 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@27b6d468] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:23.888 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1074462274 wrapping com.mysql.cj.jdbc.ConnectionImpl@24112e8a] will not be managed by Spring
- 2023-11-09 14:20:23.889 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company
- 2023-11-09 14:20:23.889 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters:
- 2023-11-09 14:20:24.305 [http-nio-10018-exec-10] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 4278
- 2023-11-09 14:20:24.305 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@27b6d468]
- 2023-11-09 14:20:24.316 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:24.317 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1e4e4eaf] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:24.317 [http-nio-10018-exec-10] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@660066398 wrapping com.mysql.cj.jdbc.ConnectionImpl@24112e8a] will not be managed by Spring
- 2023-11-09 14:20:24.342 [http-nio-10018-exec-10] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC ) TOTAL
- 2023-11-09 14:20:24.342 [http-nio-10018-exec-10] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String)
- 2023-11-09 14:20:24.388 [http-nio-10018-exec-10] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,company_id,module_name,project_name,operator_name,operation_time,content FROM operation_record WHERE operation_time >= ? AND operation_time <= ? ORDER BY operation_time DESC LIMIT ?,?
- 2023-11-09 14:20:24.389 [http-nio-10018-exec-10] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 2023-11-02 00:00:00(String), 2023-11-09 23:59:59(String), 0(Long), 20(Long)
- 2023-11-09 14:20:24.437 [http-nio-10018-exec-10] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 3
- 2023-11-09 14:20:24.437 [http-nio-10018-exec-10] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1e4e4eaf]
- 2023-11-09 14:20:24.438 [http-nio-10018-exec-10] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:24.438 [http-nio-10018-exec-10] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@39ea738c]
- 2023-11-09 14:20:24.440 [http-nio-10018-exec-10] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:24.440 [http-nio-10018-exec-10] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:29.328 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/operation-log/list", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:29.328 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.OperationLogController.list(java.lang.Integer,java.lang.Integer,java.lang.Integer)
- 2023-11-09 14:20:29.328 [http-nio-10018-exec-1] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:29.329 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20, 0]
- 2023-11-09 14:20:29.329 [http-nio-10018-exec-1] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/operation-log/list, 参数: [1, 20, 0]
- 2023-11-09 14:20:29.332 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:29.332 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d878485] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:29.347 [http-nio-10018-exec-1] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@2064350863 wrapping com.mysql.cj.jdbc.ConnectionImpl@24112e8a] will not be managed by Spring
- 2023-11-09 14:20:29.348 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC ) TOTAL
- 2023-11-09 14:20:29.349 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:20:29.363 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Preparing: SELECT id,operator_id,operator_name,indate,operation_content FROM operation_log ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:20:29.363 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:20:29.378 [http-nio-10018-exec-1] DEBUG c.m.p.m.O.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:20:29.379 [http-nio-10018-exec-1] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3d878485]
- 2023-11-09 14:20:29.379 [http-nio-10018-exec-1] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:29.379 [http-nio-10018-exec-1] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@695f9b8f]
- 2023-11-09 14:20:29.380 [http-nio-10018-exec-1] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:29.381 [http-nio-10018-exec-1] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:33.100 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company-customer-contact/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:33.100 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyCustomerContactController.getList(java.lang.Integer,java.lang.Integer)
- 2023-11-09 14:20:33.101 [http-nio-10018-exec-2] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:33.101 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [1, 20]
- 2023-11-09 14:20:33.101 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:20:33.102 [http-nio-10018-exec-2] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company-customer-contact/getList, 参数: [1, 20]
- 2023-11-09 14:20:33.102 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:33.103 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3a0df6a0] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:33.120 [http-nio-10018-exec-2] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1186818344 wrapping com.mysql.cj.jdbc.ConnectionImpl@24112e8a] will not be managed by Spring
- 2023-11-09 14:20:33.123 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC ) TOTAL
- 2023-11-09 14:20:33.123 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:20:33.812 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,reg_from,name,phone,contacted,feedback,indate,c_time,wx_corpid,dingding_corpid FROM vcompany_customer_contact ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:20:33.812 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:20:35.347 [http-nio-10018-exec-2] DEBUG c.m.p.m.V.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:20:35.348 [http-nio-10018-exec-2] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@3a0df6a0]
- 2023-11-09 14:20:35.348 [http-nio-10018-exec-2] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:35.349 [http-nio-10018-exec-2] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@26eb7bc0]
- 2023-11-09 14:20:35.350 [http-nio-10018-exec-2] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:35.350 [http-nio-10018-exec-2] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:45.686 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:45.686 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:20:45.686 [http-nio-10018-exec-3] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:45.687 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:20:45.687 [http-nio-10018-exec-3] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:20:45.687 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:45.688 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@782fdf2a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:45.691 [http-nio-10018-exec-3] WARN c.z.h.pool.PoolBase - [isConnectionAlive,176] - HikariPool-1 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@34fec547 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
- 2023-11-09 14:20:45.709 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1864941896 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:45.710 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:20:45.711 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:20:45.727 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:20:45.727 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:20:45.742 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:20:45.742 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@782fdf2a]
- 2023-11-09 14:20:45.743 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:45.743 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1439c06b] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:45.743 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1316325814 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:45.744 [http-nio-10018-exec-3] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:45.744 [http-nio-10018-exec-3] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:45.764 [http-nio-10018-exec-3] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:20:45.764 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1439c06b]
- 2023-11-09 14:20:45.764 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:45.764 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@67136333] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:45.766 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@88698462 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:45.766 [http-nio-10018-exec-3] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:45.767 [http-nio-10018-exec-3] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:45.780 [http-nio-10018-exec-3] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:20:45.780 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@67136333]
- 2023-11-09 14:20:45.780 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:45.780 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@491ce69d] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:45.781 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@904535670 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:45.781 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:45.781 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:45.796 [http-nio-10018-exec-3] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:20:45.796 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@491ce69d]
- 2023-11-09 14:20:45.796 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:45.796 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@691af8bf] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:45.797 [http-nio-10018-exec-3] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1201455887 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:45.797 [http-nio-10018-exec-3] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:20:45.798 [http-nio-10018-exec-3] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:20:45.812 [http-nio-10018-exec-3] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:20:45.812 [http-nio-10018-exec-3] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@691af8bf]
- 2023-11-09 14:20:45.812 [http-nio-10018-exec-3] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:45.812 [http-nio-10018-exec-3] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@24916a96]
- 2023-11-09 14:20:45.813 [http-nio-10018-exec-3] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:45.813 [http-nio-10018-exec-3] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:48.711 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/company/getList", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:48.711 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.CompanyController.getList(java.lang.String,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Boolean)
- 2023-11-09 14:20:48.711 [http-nio-10018-exec-4] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:48.712 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [, false, 1, 20, 0, false]
- 2023-11-09 14:20:48.712 [http-nio-10018-exec-4] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/company/getList, 参数: [, false, 1, 20, 0, false]
- 2023-11-09 14:20:48.712 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:48.712 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@37166960] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:48.726 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1299089072 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:48.728 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT COUNT(1) FROM ( SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC ) TOTAL
- 2023-11-09 14:20:48.728 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters:
- 2023-11-09 14:20:48.743 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Preparing: SELECT id,company_name,staff_count_max,expiration_date,set_meal,package_worktime,package_project,package_contract,package_oa,package_etimecard,package_expense,package_customer,package_engineering,package_simple,package_finance,package_provider,is_international,create_date FROM company ORDER BY id DESC LIMIT ?,?
- 2023-11-09 14:20:48.743 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - ==> Parameters: 0(Long), 20(Long)
- 2023-11-09 14:20:48.757 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectPage - [debug,143] - <== Total: 20
- 2023-11-09 14:20:48.757 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@37166960]
- 2023-11-09 14:20:48.758 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:48.759 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@22c6179a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:48.759 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1942407432 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:48.760 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,corp_full_name,corp_scale,corp_industry,corp_sub_industry,location,access_token,expire_time,permanent_code,auth_username,company_id,agentid FROM wx_corp_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:48.760 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:48.778 [http-nio-10018-exec-4] DEBUG c.m.p.m.W.selectList - [debug,143] - <== Total: 6
- 2023-11-09 14:20:48.779 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@22c6179a]
- 2023-11-09 14:20:48.779 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:48.779 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5628a601] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:48.780 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1145045401 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:48.780 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,access_token,expire_time,company_id,agentid,app_id,app_secret FROM feishu_info WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:48.780 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:48.797 [http-nio-10018-exec-4] DEBUG c.m.p.m.F.selectList - [debug,143] - <== Total: 2
- 2023-11-09 14:20:48.797 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5628a601]
- 2023-11-09 14:20:48.797 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:48.797 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1084b42a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:48.798 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@51318933 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:48.798 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Preparing: SELECT corpid,corp_name,auth_user_id,indate,company_id,access_token,expire_time,agent_id FROM company_dingding WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
- 2023-11-09 14:20:48.798 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer)
- 2023-11-09 14:20:48.814 [http-nio-10018-exec-4] DEBUG c.m.p.m.C.selectList - [debug,143] - <== Total: 0
- 2023-11-09 14:20:48.814 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1084b42a]
- 2023-11-09 14:20:48.814 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:48.815 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1e216c5a] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:48.815 [http-nio-10018-exec-4] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@733064784 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:48.816 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Preparing: SELECT company_id, count(1) as department_id FROM user WHERE company_id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) AND is_active = ? GROUP BY company_id
- 2023-11-09 14:20:48.816 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - ==> Parameters: 4370(Integer), 4365(Integer), 4364(Integer), 4363(Integer), 4362(Integer), 4361(Integer), 4360(Integer), 4359(Integer), 4358(Integer), 4347(Integer), 4346(Integer), 4344(Integer), 4334(Integer), 4332(Integer), 4331(Integer), 4330(Integer), 4329(Integer), 4328(Integer), 4327(Integer), 4326(Integer), 1(Integer)
- 2023-11-09 14:20:48.830 [http-nio-10018-exec-4] DEBUG c.m.p.m.U.selectList - [debug,143] - <== Total: 10
- 2023-11-09 14:20:48.830 [http-nio-10018-exec-4] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1e216c5a]
- 2023-11-09 14:20:48.831 [http-nio-10018-exec-4] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:48.831 [http-nio-10018-exec-4] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@2b900d12]
- 2023-11-09 14:20:48.832 [http-nio-10018-exec-4] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:48.832 [http-nio-10018-exec-4] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:54.750 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - POST "/time-type/get", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:54.751 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:20:54.751 [http-nio-10018-exec-5] INFO c.m.p.c.RefererInterceptor - [preHandle,63] - host=192.168.2.103, refer host=localhost
- 2023-11-09 14:20:54.751 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [4370]
- 2023-11-09 14:20:54.751 [http-nio-10018-exec-5] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [4370]
- 2023-11-09 14:20:54.751 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:54.752 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6057367e] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:54.766 [http-nio-10018-exec-5] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1615744581 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:54.767 [http-nio-10018-exec-5] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:20:54.767 [http-nio-10018-exec-5] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: 4370(Integer)
- 2023-11-09 14:20:54.790 [http-nio-10018-exec-5] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 1
- 2023-11-09 14:20:54.791 [http-nio-10018-exec-5] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6057367e]
- 2023-11-09 14:20:54.791 [http-nio-10018-exec-5] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json', given [application/json, text/plain, */*] and supported [application/json, application/*+json]
- 2023-11-09 14:20:54.791 [http-nio-10018-exec-5] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@52d4c7cb]
- 2023-11-09 14:20:54.792 [http-nio-10018-exec-5] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:54.792 [http-nio-10018-exec-5] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:20:59.857 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [traceDebug,88] - GET "/time-type/get", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:20:59.857 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [getHandler,418] - Mapped to public com.management.platform.util.HttpRespMsg com.management.platform.controller.TimeTypeController.get(java.lang.Integer)
- 2023-11-09 14:20:59.857 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.ServletInvocableHandlerMethod - [invokeForRequest,136] - Arguments: [null]
- 2023-11-09 14:20:59.858 [http-nio-10018-exec-6] INFO c.m.p.a.AopLogConfiguration - [methodBefore,44] - 请求方法:http://192.168.2.103:10018/time-type/get, 参数: [null]
- 2023-11-09 14:20:59.858 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Creating a new SqlSession
- 2023-11-09 14:20:59.858 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4fcb7c78] was not registered for synchronization because synchronization is not active
- 2023-11-09 14:20:59.874 [http-nio-10018-exec-6] DEBUG o.m.s.t.SpringManagedTransaction - [debug,49] - JDBC Connection [HikariProxyConnection@1463104094 wrapping com.mysql.cj.jdbc.ConnectionImpl@2dbef517] will not be managed by Spring
- 2023-11-09 14:20:59.874 [http-nio-10018-exec-6] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Preparing: SELECT company_id,allday,am,pm,month_days,hour_cost_input_type,type,pay_overtime,alert_time,multi_worktime,fix_monthcost,fill_months,custom_degree_active,custom_degree_name,custom_degree_status,alert_msg,sync_corpwx_time,need_dept_audit,report_workflow,custom_data_active,custom_data_name,custom_data_status,custom_data_max_status,custom_data_max_value,finance_audit,overtime_ratio,sync_dingding,is_cro,only_importreport,show_dd_cardtime,show_corpwx_cardtime,custom_text_active,custom_text_name,custom_text_status,lock_worktime,fill_overtime,show_fillaudit_time,is_secret_salary,alert_non_workday,alert_type,work_content_state,fill_ahead,timeliness,main_project_state,report_audit_type,project_level_state,need_evaluate,output_value_status,user_custom_static,include_weekends,chose_from_album,project_with_dept,finance_jobnum_enabled,report_approve_msgpush,report_auto_approve,report_auto_approve_days,max_report_time,sync_fanwei,audit_level,stage_has_evtime,not_allowed_no_attendance,wx_leave,push_report_data,push_report_url,restart_task_need_reason,sub_pro_must_fill,work_overtime_need_check,project_man_day,project_custom,wait_check_alert_time,easy_expense FROM time_type WHERE company_id=?
- 2023-11-09 14:20:59.875 [http-nio-10018-exec-6] DEBUG c.m.p.m.T.selectById - [debug,143] - ==> Parameters: null
- 2023-11-09 14:20:59.889 [http-nio-10018-exec-6] DEBUG c.m.p.m.T.selectById - [debug,143] - <== Total: 0
- 2023-11-09 14:20:59.890 [http-nio-10018-exec-6] DEBUG o.m.s.SqlSessionUtils - [debug,49] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@4fcb7c78]
- 2023-11-09 14:20:59.891 [http-nio-10018-exec-6] DEBUG o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [writeWithMessageConverters,269] - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json]
- 2023-11-09 14:20:59.891 [http-nio-10018-exec-6] TRACE o.s.w.s.m.m.a.RequestResponseBodyMethodProcessor - [traceDebug,88] - Writing [com.management.platform.util.HttpRespMsg@c17c0a7]
- 2023-11-09 14:20:59.892 [http-nio-10018-exec-6] TRACE o.s.w.s.DispatcherServlet - [processDispatchResult,1125] - No view rendering, null ModelAndView returned.
- 2023-11-09 14:20:59.892 [http-nio-10018-exec-6] DEBUG o.s.w.s.DispatcherServlet - [logResult,1131] - Completed 200 OK, headers={masked}
- 2023-11-09 14:31:05.110 [Thread-21] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
- 2023-11-09 14:31:05.115 [Thread-21] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
- 2023-11-09 14:31:23.159 [main] INFO c.m.p.PlatformStartApplication - [logStarting,50] - Starting PlatformStartApplication on YuShuiMing with PID 4472 (D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes started by 31253 in D:\Work\workCode\manHourHousekeeper\manHourHousekeeper)
- 2023-11-09 14:31:23.164 [main] INFO c.m.p.PlatformStartApplication - [logStartupProfileInfo,648] - No active profile set, falling back to default profiles: default
- 2023-11-09 14:31:24.157 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 14:31:24.157 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 14:31:24.158 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 14:31:24.159 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 14:31:24.160 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 14:31:24.161 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 14:31:24.162 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 14:31:24.165 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface
- 2023-11-09 14:31:24.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'auditWorkflowTimeSettingMapper'.
- 2023-11-09 14:31:24.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface
- 2023-11-09 14:31:24.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyCustomerContactMapper'.
- 2023-11-09 14:31:24.166 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyDingdingMapper'.
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyMapper'.
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companyReportMapper'.
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'companySigningMapper'.
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'contractDetailMapper'.
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface
- 2023-11-09 14:31:24.167 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'customerInfoMapper'.
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'departmentMapper'.
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'feishuInfoMapper'.
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationLogMapper'.
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'operationRecordMapper'.
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'participationMapper'.
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface
- 2023-11-09 14:31:24.168 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'permissionMapper'.
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectAuditorMapper'.
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectCategoryMapper'.
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'projectMapper'.
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportFormMapper'.
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'reportMapper'.
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface
- 2023-11-09 14:31:24.169 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysFunctionMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysModuleMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleFunctionMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'sysRoleModuleMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'TSensitiveWordsMapper'.
- 2023-11-09 14:31:24.170 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskCommentMapper'.
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskExecutorMapper'.
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskFileMapper'.
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskGroupMapper'.
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskLogMapper'.
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskMapper'.
- 2023-11-09 14:31:24.171 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'taskProgressMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeCalculationShowMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'timeTypeMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'tprogressPaticipatorsMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userCorpwxTimeMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userMapper'.
- 2023-11-09 14:31:24.172 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface
- 2023-11-09 14:31:24.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'userSalaryMapper'.
- 2023-11-09 14:31:24.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface
- 2023-11-09 14:31:24.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'vcompanyCustomerContactMapper'.
- 2023-11-09 14:31:24.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Creating MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface
- 2023-11-09 14:31:24.174 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [debug,49] - Enabling autowire by type for MapperFactoryBean with name 'wxCorpInfoMapper'.
- 2023-11-09 14:31:24.177 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\AuditWorkflowTimeSettingMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyCustomerContactMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyDingdingMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanyReportMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CompanySigningMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ContractDetailMapper.class]
- 2023-11-09 14:31:24.178 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\CustomerInfoMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\DepartmentMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\FeishuInfoMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationLogMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\OperationRecordMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ParticipationMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\PermissionMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectAuditorMapper.class]
- 2023-11-09 14:31:24.179 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectCategoryMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ProjectMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportFormMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\ReportMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysConfigMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysFunctionMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysModuleMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleFunctionMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\SysRoleModuleMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TSensitiveWordsMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskCommentMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskExecutorMapper.class]
- 2023-11-09 14:31:24.180 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskFileMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskGroupMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskLogMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TaskProgressMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeCalculationShowMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TimeTypeMapper.class]
- 2023-11-09 14:31:24.181 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\TprogressPaticipatorsMapper.class]
- 2023-11-09 14:31:24.182 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserCorpwxTimeMapper.class]
- 2023-11-09 14:31:24.182 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserMapper.class]
- 2023-11-09 14:31:24.182 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\UserSalaryMapper.class]
- 2023-11-09 14:31:24.182 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\VcompanyCustomerContactMapper.class]
- 2023-11-09 14:31:24.182 [main] DEBUG o.m.s.m.ClassPathMapperScanner - [scanCandidateComponents,437] - Identified candidate component class: file [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\com\management\platform\mapper\WxCorpInfoMapper.class]
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'auditWorkflowTimeSettingMapper' and 'com.management.platform.mapper.AuditWorkflowTimeSettingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyCustomerContactMapper' and 'com.management.platform.mapper.CompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyDingdingMapper' and 'com.management.platform.mapper.CompanyDingdingMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyMapper' and 'com.management.platform.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companyReportMapper' and 'com.management.platform.mapper.CompanyReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'companySigningMapper' and 'com.management.platform.mapper.CompanySigningMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'contractDetailMapper' and 'com.management.platform.mapper.ContractDetailMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.183 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'customerInfoMapper' and 'com.management.platform.mapper.CustomerInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'departmentMapper' and 'com.management.platform.mapper.DepartmentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'feishuInfoMapper' and 'com.management.platform.mapper.FeishuInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationLogMapper' and 'com.management.platform.mapper.OperationLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'operationRecordMapper' and 'com.management.platform.mapper.OperationRecordMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'participationMapper' and 'com.management.platform.mapper.ParticipationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'permissionMapper' and 'com.management.platform.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectAuditorMapper' and 'com.management.platform.mapper.ProjectAuditorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectCategoryMapper' and 'com.management.platform.mapper.ProjectCategoryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'projectMapper' and 'com.management.platform.mapper.ProjectMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.184 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportFormMapper' and 'com.management.platform.mapper.ReportFormMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'reportMapper' and 'com.management.platform.mapper.ReportMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysConfigMapper' and 'com.management.platform.mapper.SysConfigMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysFunctionMapper' and 'com.management.platform.mapper.SysFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysModuleMapper' and 'com.management.platform.mapper.SysModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleFunctionMapper' and 'com.management.platform.mapper.SysRoleFunctionMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleMapper' and 'com.management.platform.mapper.SysRoleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'sysRoleModuleMapper' and 'com.management.platform.mapper.SysRoleModuleMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'TSensitiveWordsMapper' and 'com.management.platform.mapper.TSensitiveWordsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskCommentMapper' and 'com.management.platform.mapper.TaskCommentMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskExecutorMapper' and 'com.management.platform.mapper.TaskExecutorMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.185 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskFileMapper' and 'com.management.platform.mapper.TaskFileMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskGroupMapper' and 'com.management.platform.mapper.TaskGroupMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskLogMapper' and 'com.management.platform.mapper.TaskLogMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskMapper' and 'com.management.platform.mapper.TaskMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'taskProgressMapper' and 'com.management.platform.mapper.TaskProgressMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationMapper' and 'com.management.platform.mapper.TimeCalculationMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeCalculationShowMapper' and 'com.management.platform.mapper.TimeCalculationShowMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'timeTypeMapper' and 'com.management.platform.mapper.TimeTypeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.186 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'tprogressPaticipatorsMapper' and 'com.management.platform.mapper.TprogressPaticipatorsMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.187 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userCorpwxTimeMapper' and 'com.management.platform.mapper.UserCorpwxTimeMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.187 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userMapper' and 'com.management.platform.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.187 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'userSalaryMapper' and 'com.management.platform.mapper.UserSalaryMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.187 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'vcompanyCustomerContactMapper' and 'com.management.platform.mapper.VcompanyCustomerContactMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.187 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - Skipping MapperFactoryBean with name 'wxCorpInfoMapper' and 'com.management.platform.mapper.WxCorpInfoMapper' mapperInterface. Bean already defined with the same name!
- 2023-11-09 14:31:24.187 [main] WARN o.m.s.m.ClassPathMapperScanner - [warn,44] - No MyBatis mapper was found in '[com.management.platform.mapper]' package. Please check your configuration.
- 2023-11-09 14:31:25.331 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10018"]
- 2023-11-09 14:31:25.341 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 14:31:25.341 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 14:31:25.513 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 14:31:25.513 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 14:31:25.513 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 2256 ms
- 2023-11-09 14:31:25.869 [main] WARN c.z.h.HikariConfig - [validateNumerics,973] - HikariPool-1 - idleTimeout is close to or more than maxLifetime, disabling it.
- 2023-11-09 14:31:25.869 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
- 2023-11-09 14:31:26.877 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
- 2023-11-09 14:31:27.273 [main] WARN c.b.m.c.m.TableInfoHelper - [initTableFields,285] - Warn: Could not find @TableId in Class: com.management.platform.entity.CompanyReport.
- 2023-11-09 14:31:29.489 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CommonUploadController:
- { /common/downLoadLog}: downLoadLog()
- { /common/uploadFile}: uploadFile(MultipartFile)
- 2023-11-09 14:31:29.492 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyController:
- { /company/syncDindDingMembs}: syncDingDingMembs(String)
- { /company/setTimeTypeSetting}: setTimeTypeSetting(TimeType)
- { /company/getList}: getList(String,Boolean,Integer,Integer,Integer,Boolean)
- { /company/setMeal}: setMeal(Integer,Integer)
- { /company/setExpDate}: setExpDate(Integer,String)
- { /company/deleteCompany}: deleteCompany(Integer)
- { /company/addMembCount}: addMembCount(Integer,int)
- { /company/addFeiShuInfo}: addFeiShuInfo(FeiShuInfoVO)
- { /company/setPackageList}: setPackageList(Company)
- { /company/dataMigration}: dataMigration(HttpServletRequest,Integer,Integer,String,String)
- 2023-11-09 14:31:29.493 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyCustomerContactController:
- { /company-customer-contact/handle}: handle(Integer,String)
- { /company-customer-contact/getList}: getList(Integer,Integer)
- 2023-11-09 14:31:29.494 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanyReportController:
- { /company-report/update}: update(Integer,String,String)
- { /company-report/list}: list(Integer)
- 2023-11-09 14:31:29.495 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.CompanySigningController:
- { /company-signing/update}: update(CompanySigning)
- { /company-signing/getList}: getList(Integer)
- 2023-11-09 14:31:29.495 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.ContractDetailController:
- { /contract-detail/update}: update(ContractDetail,HttpServletResponse)
- { /contract-detail/detail}: detail(Integer)
- { /contract-detail/finalize}: contractFinalize(Integer)
- { /contract-detail/preview}: preview(HttpServletResponse,Integer)
- 2023-11-09 14:31:29.496 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.FeishuInfoController:
-
- 2023-11-09 14:31:29.496 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.OperationLogController:
- { /operation-log/list}: list(Integer,Integer,Integer)
- 2023-11-09 14:31:29.496 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.OperationRecordController:
- { /operation-record/getList}: getList(String,String,String,Integer,Integer,String)
- 2023-11-09 14:31:29.497 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.PermissionController:
- { /permission/getAuthority}: getAuthority(Integer,Integer,HttpServletRequest)
- { /permission/getFrontRoleList}: getFrontRoleList(Integer)
- { /permission/getRoleList}: getRoleList(Integer)
- {POST /permission/savePermission}: savePermission(Integer,String)
- 2023-11-09 14:31:29.498 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.ReportController:
-
- 2023-11-09 14:31:29.498 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.SysRoleController:
- { /role/genCorpDefaultRoles}: genCorpDefaultRoles(Integer,Integer)
- 2023-11-09 14:31:29.498 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.TimeTypeController:
- { /time-type/get}: get(Integer)
- 2023-11-09 14:31:29.499 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.UserController:
- { /user/getUserInfo}: getUserInfo(String)
- { /user/loginAdmin}: loginAdmin(String,String)
- { /user/getEmployeeList}: getEmployeeList(Integer,String,Integer,Integer,Integer,Integer)
- 2023-11-09 14:31:29.499 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.VcompanyCustomerContactController:
-
- 2023-11-09 14:31:29.499 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- c.m.p.c.WxCorpInfoController:
-
- 2023-11-09 14:31:29.502 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- o.s.b.a.w.s.e.BasicErrorController:
- { /error}: error(HttpServletRequest)
- { /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
- 2023-11-09 14:31:29.505 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - [handlerMethodsInitialized,351] - 35 mappings in 'requestMappingHandlerMapping'
- 2023-11-09 14:31:29.523 [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - [detectHandlers,86] - Detected 0 mappings in 'beanNameHandlerMapping'
- 2023-11-09 14:31:29.601 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - [initControllerAdviceCache,620] - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
- 2023-11-09 14:31:29.627 [main] DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - [initExceptionHandlerAdviceCache,303] - ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
- 2023-11-09 14:31:30.235 [main] DEBUG o.s.w.s.v.f.FreeMarkerConfigurer - [getTemplateLoaderForPath,347] - Template loader path [class path resource [templates/]] resolved to file path [D:\Work\workCode\manHourHousekeeper\manHourHousekeeper\fhKeeper\formulahousekeeper\ops-platform\target\classes\templates]
- 2023-11-09 14:31:30.422 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 14:31:30.423 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10018"]
- 2023-11-09 14:31:30.736 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10019"]
- 2023-11-09 14:31:30.736 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
- 2023-11-09 14:31:30.736 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.29]
- 2023-11-09 14:31:30.772 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
- 2023-11-09 14:31:30.772 [main] DEBUG o.s.w.c.ContextLoader - [prepareWebApplicationContext,278] - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2023-11-09 14:31:30.772 [main] INFO o.s.w.c.ContextLoader - [prepareWebApplicationContext,284] - Root WebApplicationContext: initialization completed in 103 ms
- 2023-11-09 14:31:30.802 [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - [detectHandlerMethods,279] -
- o.s.b.a.a.w.s.ManagementErrorEndpoint:
- { /error}: invoke(ServletWebRequest)
- 2023-11-09 14:31:30.803 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - [handlerMethodsInitialized,351] - 1 mappings in 'requestMappingHandlerMapping'
- 2023-11-09 14:31:30.804 [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - [detectHandlers,86] - Detected 0 mappings in 'beanNameHandlerMapping'
- 2023-11-09 14:31:30.819 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - [initControllerAdviceCache,620] - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
- 2023-11-09 14:31:30.824 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 14:31:30.825 [main] TRACE o.s.w.s.r.ResourceUrlProvider - [detectResourceHandlers,155] - No resource handling mappings found
- 2023-11-09 14:31:30.825 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10019"]
- 2023-11-09 14:31:30.829 [main] INFO c.m.p.PlatformStartApplication - [logStarted,59] - Started PlatformStartApplication in 8.069 seconds (JVM running for 9.996)
- 2023-11-09 14:31:31.777 [RMI TCP Connection(1)-192.168.200.150] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2023-11-09 14:31:31.778 [RMI TCP Connection(1)-192.168.200.150] INFO o.s.w.s.DispatcherServlet - [initServletBean,525] - Initializing Servlet 'dispatcherServlet'
- 2023-11-09 14:31:31.778 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initMultipartResolver,523] - Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@da5d5e1
- 2023-11-09 14:31:31.781 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initLocaleResolver,557] - No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
- 2023-11-09 14:31:31.784 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initThemeResolver,582] - No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
- 2023-11-09 14:31:31.789 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initRequestToViewNameTranslator,725] - No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
- 2023-11-09 14:31:31.795 [RMI TCP Connection(1)-192.168.200.150] TRACE o.s.w.s.DispatcherServlet - [initFlashMapManager,789] - No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
- 2023-11-09 14:31:31.796 [RMI TCP Connection(1)-192.168.200.150] DEBUG o.s.w.s.DispatcherServlet - [initServletBean,542] - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
- 2023-11-09 14:31:31.796 [RMI TCP Connection(1)-192.168.200.150] INFO o.s.w.s.DispatcherServlet - [initServletBean,547] - Completed initialization in 18 ms
- 2023-11-09 14:36:20.723 [Thread-19] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
- 2023-11-09 14:36:20.725 [Thread-19] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
|